From 8751faab2ea2cdeec5cbb10d40597d1c66f40ca8 Mon Sep 17 00:00:00 2001 From: Ben <67504107+ben5vik@users.noreply.github.com> Date: Mon, 10 Oct 2022 15:40:14 +0200 Subject: [PATCH 1/2] Adding unlabeled --- hyfetch/presets.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/hyfetch/presets.py b/hyfetch/presets.py index 6e4ccb12..007bc781 100644 --- a/hyfetch/presets.py +++ b/hyfetch/presets.py @@ -287,6 +287,22 @@ PRESETS: dict[str, ColorProfile] = { '#810081' ]), + 'unlabeled1': ColorProfile([ + '#EAF8E4', + '#FDFDFB', + '#E1EFF7', + '#F4E2C4' + ]), + + 'unlabeled2': ColorProfile([ + '#250548', + '#FFFFFF', + '#F7DCDA', + '#EC9BEE', + '#9541FA', + '#7D2557' + ]), + # below sourced from https://www.flagcolorcodes.com/flags/pride # goto f"https://www.flagcolorcodes.com/{preset}" for info # todo: sane sorting From 10b331052d72be66dee4e958940133e2c9595999 Mon Sep 17 00:00:00 2001 From: Ben <67504107+ben5vik@users.noreply.github.com> Date: Mon, 10 Oct 2022 15:45:20 +0200 Subject: [PATCH 2/2] Update presets.py --- hyfetch/presets.py | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/hyfetch/presets.py b/hyfetch/presets.py index 007bc781..c668b165 100644 --- a/hyfetch/presets.py +++ b/hyfetch/presets.py @@ -287,22 +287,6 @@ PRESETS: dict[str, ColorProfile] = { '#810081' ]), - 'unlabeled1': ColorProfile([ - '#EAF8E4', - '#FDFDFB', - '#E1EFF7', - '#F4E2C4' - ]), - - 'unlabeled2': ColorProfile([ - '#250548', - '#FFFFFF', - '#F7DCDA', - '#EC9BEE', - '#9541FA', - '#7D2557' - ]), - # below sourced from https://www.flagcolorcodes.com/flags/pride # goto f"https://www.flagcolorcodes.com/{preset}" for info # todo: sane sorting @@ -548,4 +532,21 @@ PRESETS: dict[str, ColorProfile] = { "#F39FCE", "#EA7BB3", ]), + + 'unlabeled1': ColorProfile([ + '#EAF8E4', + '#FDFDFB', + '#E1EFF7', + '#F4E2C4' + ]), + + 'unlabeled2': ColorProfile([ + '#250548', + '#FFFFFF', + '#F7DCDA', + '#EC9BEE', + '#9541FA', + '#7D2557' + ]), + }