From a93d17705b597d64e2de01677e7179a4f233fd17 Mon Sep 17 00:00:00 2001 From: cybfuyu Date: Fri, 20 Jan 2023 22:16:55 +0000 Subject: [PATCH] add gendervoid flag colors --- hyfetch/presets.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/hyfetch/presets.py b/hyfetch/presets.py index 2f08fd6b..2d23458b 100644 --- a/hyfetch/presets.py +++ b/hyfetch/presets.py @@ -592,4 +592,29 @@ PRESETS: dict[str, ColorProfile] = { "#613a03", "#2f3fb9" ]), + + # gendervoid and related flags sourced from: https://gender.fandom.com/wiki/Gendervoid + 'gendervoid' : ColorProfile([ + "#081149", + "#4B484B", + "#000000", + "#4B484B", + "#081149" + ]), + + 'voidgirl' : ColorProfile([ + "#180827", + "#7A5A8B", + "#E09BED", + "#7A5A8B", + "#180827" + ]), + + 'voidboy' : ColorProfile([ + "#0B130C", + "#547655", + "#66B969", + "#547655", + "#0B130C" + ]) }