Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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,

Autism
}

#[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::Autism => ColorProfile::from_hex_colors(vec![
"#c94a49", "#de7554", "#dbb667", "#6fa35d", "#2e7574", "#232828"
]),
})
.expect("preset color profiles should be valid")
}
Expand Down
9 changes: 9 additions & 0 deletions hyfetch/presets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,4 +1092,13 @@ def unique_colors(self) -> ColorProfile:
"#52d2ed",
"#c6d1d2"
]),

'Autism': ColorProfile([
"#c94a49",
"#de7554",
"#dbb667",
"#6fa35d",
"#2e7574",
"#232828"
]),
}