Skip to content

Commit 4861dd5

Browse files
committed
[+] Nullflux flag #397
1 parent 5614b72 commit 4861dd5

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

crates/hyfetch/src/presets.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ pub enum Preset {
113113

114114
Genderflux,
115115

116+
Nullflux,
117+
116118
Hypergender, Hyperboy, Hypergirl, Hyperandrogyne, Hyperneutrois,
117119

118120
Finsexual,
@@ -442,6 +444,10 @@ impl Preset {
442444
"f47694", "f2a2b9", "cecece", "7ce0f7", "3ecdf9", "fff48d",
443445
]),
444446

447+
Self::Nullflux => ColorProfile::from_hex_colors(vec![
448+
"#0B0C0E", "#A28DB9", "#E1D4EF", "#F0E6DD", "#665858",
449+
]),
450+
445451
Self::Hypergender => ColorProfile::from_hex_colors(vec![
446452
"#EFEFEF", "#FFFFFF", "#FBFF75", "#000000", "#FBFF75", "#FFFFFF", "#EFEFEF",
447453
]),

hyfetch/presets.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,11 @@ def unique_colors(self) -> ColorProfile:
554554
"fff48d",
555555
]),
556556

557+
# https://lgbtqia.wiki/wiki/Gendernull
558+
'nullflux': ColorProfile([
559+
'#0B0C0E', '#A28DB9', '#E1D4EF', '#F0E6DD', '#665858',
560+
]),
561+
557562
'hypergender': ColorProfile([
558563
"#EFEFEF", "#FFFFFF", "#FBFF75", "#000000", "#FBFF75", "#FFFFFF", "#EFEFEF",
559564
]),

0 commit comments

Comments
 (0)