From fea194043aaea622e7d88a435fb434f6b745d6a0 Mon Sep 17 00:00:00 2001 From: Matthew Date: Thu, 8 Aug 2024 18:59:37 -0400 Subject: [PATCH] Theme lara-light-teal: Replace background color of highlight Original color: #0f766e (same as text color, causing issues) Replacement color: #f0fffb Replacement color was chosen compared to the lara-light-blue theme (not sure if this method is okay): In HSL, H is 10 less than text color, S & L are the same as lara-light-blue's S & L. --- themes/lara/lara-light/teal/theme.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/lara/lara-light/teal/theme.scss b/themes/lara/lara-light/teal/theme.scss index ca75697..5518ce1 100644 --- a/themes/lara/lara-light/teal/theme.scss +++ b/themes/lara/lara-light/teal/theme.scss @@ -4,7 +4,7 @@ $primaryDarkColor: #0d9488 !default; $primaryDarkerColor: #0f766e !default; $primaryTextColor: #ffffff !default; -$highlightBg: #0f766e !default; +$highlightBg: #f0fffb !default; $highlightTextColor: $primaryDarkerColor !default; $highlightFocusBg: rgba($primaryColor, 0.24) !default;