From 1fa29cf8313f168fd5774a8ce911d41c03b908b1 Mon Sep 17 00:00:00 2001 From: Azalea Gui <22280294+hykilpikonna@users.noreply.github.com> Date: Thu, 4 Sep 2025 06:24:10 -0400 Subject: [PATCH] [+] Adipophilia flag (#424) --- crates/hyfetch/src/presets.rs | 7 +++++++ hyfetch/presets.py | 3 +++ 2 files changed, 10 insertions(+) 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',