From 3bd3165032e3c95e430987faafdf2fa07a4728e9 Mon Sep 17 00:00:00 2001 From: Adrian Simmons Date: Sat, 13 Nov 2021 23:24:15 +0000 Subject: [PATCH] Fix tag color in dark mode --- src/styles/custom-properties/colors.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/custom-properties/colors.scss b/src/styles/custom-properties/colors.scss index 848349c6e..f2fad4434 100644 --- a/src/styles/custom-properties/colors.scss +++ b/src/styles/custom-properties/colors.scss @@ -111,7 +111,8 @@ // Elements that rely on Bulma defaults in light mode but // need to be overriden in dark mode - --input-placeholder-color: hsla(var(--grey-900-hsl), 0.6) !important; + --input-placeholder-color: hsla(var(--grey-900-hsl), 0.6); + --tag-color: var(--grey-50); // Custom color variables we need to override --card-border-color: hsla(var(--grey-100-hsl), 0.3);