From dc359abe457c62b24985764e7c458e1bb3905e79 Mon Sep 17 00:00:00 2001 From: harvey mobile Date: Wed, 27 Mar 2024 15:17:12 -0500 Subject: [PATCH] Add baker flag layout to presets --- hyfetch/presets.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hyfetch/presets.py b/hyfetch/presets.py index d61bbc06..a1e8c19f 100644 --- a/hyfetch/presets.py +++ b/hyfetch/presets.py @@ -666,4 +666,17 @@ PRESETS: dict[str, ColorProfile] = { '#7D3829', '#F3A26A', ]), + + # colors from Gilbert Baker's original 1978 flag design + # used https://gilbertbaker.com/rainbow-flag-color-meanings/ as source and colorpicked + 'baker': ColorProfile([ + '#F23D9E', + '#F80A24', + '#F78022', + '#F9E81F', + '#1E972E', + '#1B86BC', + '#243897', + '#6F0A82', + ]) }