From 21678ec78efd7871b98a64bb00ada08704d2d0d8 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Fri, 20 Aug 2021 18:08:26 -0700 Subject: [PATCH] fix: tweak accent colors (#2089) * fix: tweak accent colors * fix: fixup --- src/scss/themes/cobalt.scss | 2 ++ src/scss/themes/gecko.scss | 4 ++++ src/scss/themes/hotpants.scss | 4 ++++ src/scss/themes/riot.scss | 4 ++++ src/scss/themes/sorcery.scss | 4 ++++ 5 files changed, 18 insertions(+) diff --git a/src/scss/themes/cobalt.scss b/src/scss/themes/cobalt.scss index 31348732..5fe375a6 100644 --- a/src/scss/themes/cobalt.scss +++ b/src/scss/themes/cobalt.scss @@ -34,4 +34,6 @@ $compose-background: lighten($main-theme-color, 32%); --nav-text-color-hover: #{$main-text-color}; --nav-a-selected-border: #{$anchor-color}; --nav-a-selected-border-hover: #{$anchor-color}; + + accent-color: #{lighten($main-theme-color, 15%)}; } diff --git a/src/scss/themes/gecko.scss b/src/scss/themes/gecko.scss index dc4696a7..428560a8 100644 --- a/src/scss/themes/gecko.scss +++ b/src/scss/themes/gecko.scss @@ -12,3 +12,7 @@ $compose-background: lighten($main-theme-color, 32%); @import "_base.scss"; @import "_light_scrollbars.scss"; + +:root { + accent-color: #{darken($main-theme-color, 5%)}; +} diff --git a/src/scss/themes/hotpants.scss b/src/scss/themes/hotpants.scss index 1ace4d2e..b5868d0d 100644 --- a/src/scss/themes/hotpants.scss +++ b/src/scss/themes/hotpants.scss @@ -17,3 +17,7 @@ $scrollbar-face-active: #{lighten($main-theme-color, 10%)}; @import "_base.scss"; @import "_light_scrollbars.scss"; + +:root { + accent-color: #{darken($main-theme-color, 5%)}; +} diff --git a/src/scss/themes/riot.scss b/src/scss/themes/riot.scss index bdb108a2..8c4ed459 100644 --- a/src/scss/themes/riot.scss +++ b/src/scss/themes/riot.scss @@ -15,3 +15,7 @@ $compose-background: lighten($main-theme-color, 52%); @import "_dark.scss"; @import "_dark_navbar.scss"; @import "_dark_scrollbars.scss"; + +:root { + accent-color: #{darken($main-theme-color, 5%)}; +} diff --git a/src/scss/themes/sorcery.scss b/src/scss/themes/sorcery.scss index 0981798b..ac8707df 100644 --- a/src/scss/themes/sorcery.scss +++ b/src/scss/themes/sorcery.scss @@ -20,3 +20,7 @@ $scrollbar-face-active: #{lighten($main-theme-color, 1%)}; @import "_dark.scss"; @import "_dark_navbar.scss"; @import "_dark_scrollbars.scss"; + +:root { + accent-color: #{darken($main-theme-color, 12%)}; +}