From 28a181d97b00f32ec23a99c7abec358591af0848 Mon Sep 17 00:00:00 2001 From: ObsoleteDev <91698052+obsoletedevgit@users.noreply.github.com> Date: Tue, 21 Oct 2025 12:28:46 +0100 Subject: [PATCH] [+] Transbian pride flag (#449) * [+] Transbian flag py * [C} Update wording on py Transbian flag * [+] Add Transbian flag to rust --------- Co-authored-by: Azalea <22280294+hykilpikonna@users.noreply.github.com> --- crates/hyfetch/src/presets.rs | 6 ++++++ hyfetch/presets.py | 9 +++++++++ 2 files changed, 15 insertions(+) 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 @@ PRESETS: dict[str, ColorProfile] = { "#52d2ed", "#c6d1d2" ]), + + # Adding Transbian Pride Flag - ObsoleteDev + 'transbian': ColorProfile([ + "#03A3E6", + "#F8B4CD", + "#FAFBF9", + "#FA9C57", + "#A80864" + ]), 'Autism': ColorProfile([ "#c94a49",