From c4b6ba0b36f47f9985614bc3842273fec1746f16 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 8 Jun 2020 09:11:03 -0700 Subject: [PATCH] Add a new color --text-fg-on-accent-bright For allowing the designer to select what color text should be when on a background of --accent-color-bright. Note: The value for this color happens to match the color of previously-defined values currently, but that's just me throwing programmer-art colors in place. That's why we don't reference an existing variable in the value here, even though the color is currently identical to a previous one, (we wouldn't want a designer to think they are necessarily linked). --- style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/style.css b/style.css index 877ef59..240014a 100644 --- a/style.css +++ b/style.css @@ -23,6 +23,7 @@ --accent-color: #287789; --accent-color-bright: #44c7ef; --text-fg-on-accent: white; + --text-fg-on-accent-bright: #333738; /* Some colors intended to convey semnatics. */ --warning-color: #ffa92a; -- 2.43.0