diff --git a/crates/hyfetch/src/presets.rs b/crates/hyfetch/src/presets.rs index f06fed06..f911c1fa 100644 --- a/crates/hyfetch/src/presets.rs +++ b/crates/hyfetch/src/presets.rs @@ -234,6 +234,8 @@ pub enum Preset { Fluidfluxa, Fluidfluxb, + Autism, + Cenelian, Transneutral, @@ -723,6 +725,10 @@ impl Preset { "#c6d1d2", "#f47b9d", "#f09f9b", "#e3f09e", "#75eeea", "#52d2ed", "#c6d1d2" ]), + Self::Autism => ColorProfile::from_hex_colors(vec![ + "#c94a49", "#de7554", "#dbb667", "#6fa35d", "#2e7574", "#232828" + ]), + Self::Cenelian => ColorProfile::from_hex_colors(vec![ "#ffe7b6", "#93554a", "#52203a", "#7e4a93", "#99afd6" ]), diff --git a/hyfetch/presets.py b/hyfetch/presets.py index 0eb31421..0790f7b0 100644 --- a/hyfetch/presets.py +++ b/hyfetch/presets.py @@ -1093,6 +1093,15 @@ PRESETS: dict[str, ColorProfile] = { "#c6d1d2" ]), + 'Autism': ColorProfile([ + "#c94a49", + "#de7554", + "#dbb667", + "#6fa35d", + "#2e7574", + "#232828" + ]), + 'Cenelian': ColorProfile([ "#ffe7b6", "#93554a",