diff --git a/crates/hyfetch/src/presets.rs b/crates/hyfetch/src/presets.rs index dde7af7b..d6f0ab40 100644 --- a/crates/hyfetch/src/presets.rs +++ b/crates/hyfetch/src/presets.rs @@ -171,6 +171,8 @@ pub enum Preset { Twink, + Adipophilia, + Kenochoric, Veldian, @@ -578,6 +580,11 @@ impl Preset { // colorpicked from https://commons.wikimedia.org/wiki/File:Twink_Pride_Flag_(proposed).svg Self::Twink => ColorProfile::from_hex_colors(vec!["#FFB2FF", "#FFFFFF", "#FFFF81"]), + // https://en.wikipedia.org/wiki/File:FatFetishFlag.png + Self::Adipophilia => ColorProfile::from_hex_colors(vec![ + "#000000", "#E16180", "#FFF9BE", "#603E41", "#000000", + ]), + Self::Kenochoric => { ColorProfile::from_hex_colors(vec!["#000000", "#2E1569", "#824DB7", "#C7A1D6"]) }, diff --git a/hyfetch/presets.py b/hyfetch/presets.py index c4ecb886..a026b140 100644 --- a/hyfetch/presets.py +++ b/hyfetch/presets.py @@ -775,6 +775,9 @@ PRESETS: dict[str, ColorProfile] = { '#FFFFFF', '#FFFF81', ]), + + # https://en.wikipedia.org/wiki/File:FatFetishFlag.png + 'adipophilia': ColorProfile(["#000000", "#E16180", "#FFF9BE", "#603E41", "#000000"]), 'kenochoric': ColorProfile([ '#000000',