From 746298a1f796b5708f4a30809ec8d9e631cca8bb Mon Sep 17 00:00:00 2001 From: Nick Colley <2445413+NickColley@users.noreply.github.com> Date: Sun, 18 Dec 2022 19:20:58 +0000 Subject: [PATCH] fix: pitchblack theme unpressed icons readability (#2324) increase contrast so they're more readable. --- src/scss/themes/pitchblack.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/scss/themes/pitchblack.scss b/src/scss/themes/pitchblack.scss index 62844910..b97ff1cc 100644 --- a/src/scss/themes/pitchblack.scss +++ b/src/scss/themes/pitchblack.scss @@ -33,9 +33,9 @@ $compose-background: darken($main-theme-color, 12%); --form-bg: #{$body-bg-color}; --form-border: #{darken($border-color, 10%)}; - --action-button-fill-color: #{lighten($main-theme-color, 20%)}; - --action-button-fill-color-hover: #{lighten($main-theme-color, 30%)}; - --action-button-fill-color-active: #{darken($main-theme-color, 40%)}; + --action-button-fill-color: #{lighten($main-theme-color, 50%)}; + --action-button-fill-color-hover: #{lighten($main-theme-color, 60%)}; + --action-button-fill-color-active: #{darken($main-theme-color, 70%)}; --action-button-fill-color-pressed: #{lighten($main-theme-color, 85%)}; --action-button-fill-color-pressed-hover: #{lighten($main-theme-color, 100%)}; --action-button-fill-color-pressed-active: #{lighten($main-theme-color, 80%)};