diff --git a/crates/hyfetch/src/presets.rs b/crates/hyfetch/src/presets.rs index f911c1fa..6e20ad7d 100644 --- a/crates/hyfetch/src/presets.rs +++ b/crates/hyfetch/src/presets.rs @@ -234,6 +234,8 @@ pub enum Preset { Fluidfluxa, Fluidfluxb, + Transbian, + Autism, Cenelian, @@ -725,6 +727,10 @@ impl Preset { "#c6d1d2", "#f47b9d", "#f09f9b", "#e3f09e", "#75eeea", "#52d2ed", "#c6d1d2" ]), + Self::Transbian => ColorProfile::from_hex_colors(vec![ + "#03A3E6", "#F8B4CD","#FAFBF9", "#FA9C57", "#A80864" + ]), + Self::Autism => ColorProfile::from_hex_colors(vec![ "#c94a49", "#de7554", "#dbb667", "#6fa35d", "#2e7574", "#232828" ]), diff --git a/hyfetch/presets.py b/hyfetch/presets.py index 0790f7b0..574be95a 100644 --- a/hyfetch/presets.py +++ b/hyfetch/presets.py @@ -1092,6 +1092,15 @@ def unique_colors(self) -> ColorProfile: "#52d2ed", "#c6d1d2" ]), + + # Adding Transbian Pride Flag - ObsoleteDev + 'transbian': ColorProfile([ + "#03A3E6", + "#F8B4CD", + "#FAFBF9", + "#FA9C57", + "#A80864" + ]), 'Autism': ColorProfile([ "#c94a49",