Skip to content

Commit

Permalink
Merge pull request #369 from LS-KR/master
Browse files Browse the repository at this point in the history
[+] Add watermelon cream lozenges flag for meme
  • Loading branch information
hykilpikonna authored Nov 22, 2024
2 parents 1b3b5ca + 057b3b5 commit bb26089
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
7 changes: 7 additions & 0 deletions crates/hyfetch/src/presets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ pub enum Preset {
/// Meme flag
Burger,

/// Meme flag
ThroatLozenges,

/// Colors from Gilbert Baker's original 1978 flag design
Baker,
}
Expand Down Expand Up @@ -566,6 +569,10 @@ impl Preset {
"#F3A26A", "#498701", "#FD1C13", "#7D3829", "#F3A26A",
]),

Self::ThroatLozenges => ColorProfile::from_hex_colors(vec![
"#2759DA", "#03940D", "#F5F100", "#F59B00", "#B71212"
]),

// used https://gilbertbaker.com/rainbow-flag-color-meanings/ as source and colorpicked
Self::Baker => ColorProfile::from_hex_colors(vec![
"#F23D9E", "#F80A24", "#F78022", "#F9E81F", "#1E972E", "#1B86BC", "#243897",
Expand Down
12 changes: 10 additions & 2 deletions hyfetch/presets.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ def unique_colors(self) -> ColorProfile:
'#FEAF02',
'#A37000',
]),

# colorpicked from https://commons.wikimedia.org/wiki/File:Leather,_Latex,_and_BDSM_pride_-_Light.svg
'leather': ColorProfile([
'#000000',
Expand Down Expand Up @@ -751,7 +751,7 @@ def unique_colors(self) -> ColorProfile:
'#FFFFFF',
'#FFFF81',
]),

'kenochoric': ColorProfile([
'#000000',
'#2E1569',
Expand Down Expand Up @@ -941,6 +941,14 @@ def unique_colors(self) -> ColorProfile:
'#F3A26A',
]),

'throatlozenges': ColorProfile([
"#2759DA",
"#03940D",
"#F5F100",
"#F59B00",
"#B71212"
]),

# colors from Gilbert Baker's original 1978 flag design
# used https://gilbertbaker.com/rainbow-flag-color-meanings/ as source and colorpicked
'baker': ColorProfile([
Expand Down

0 comments on commit bb26089

Please sign in to comment.