Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions crates/hyfetch/src/presets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ pub enum Preset {
Libragender, Librafeminine, Libramasculine, Libraandrogyne, Libranonbinary,

Fluidfluxa, Fluidfluxb,

Transbian,
}

#[derive(Clone, Eq, PartialEq, Debug)]
Expand Down Expand Up @@ -718,6 +720,10 @@ impl Preset {
Self::Fluidfluxb => ColorProfile::from_hex_colors(vec![
"#c6d1d2", "#f47b9d", "#f09f9b", "#e3f09e", "#75eeea", "#52d2ed", "#c6d1d2"
]),

Self::Transbian => ColorProfile::from_hex_colors(vec![
"#03A3E6", "#F8B4CD","#FAFBF9", "#FA9C57", "#A80864"
]),
})
.expect("preset color profiles should be valid")
}
Expand Down
10 changes: 10 additions & 0 deletions hyfetch/presets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,4 +1092,14 @@ def unique_colors(self) -> ColorProfile:
"#52d2ed",
"#c6d1d2"
]),

# Adding Transbian Pride Flag - ObsoleteDev

'transbian': ColorProfile([
"#03A3E6",
"#F8B4CD",
"#FAFBF9",
"#FA9C57",
"#A80864"
]),
}
Loading