From 31480eae72cb936226aba3454f55a672d87059cb Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 2 Aug 2022 15:05:33 +0200 Subject: [PATCH] fix: default label color in dark mode Resolves https://kolaente.dev/vikunja/frontend/issues/2200 --- src/styles/custom-properties/colors.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/custom-properties/colors.scss b/src/styles/custom-properties/colors.scss index c68f7f2a1..735bc3f7f 100644 --- a/src/styles/custom-properties/colors.scss +++ b/src/styles/custom-properties/colors.scss @@ -287,7 +287,7 @@ // 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); - --tag-color: var(--grey-800); + --tag-color: var(--grey-300); --table-row-hover-background-color: var(--grey-100); --dropdown-item-hover-background-color: var(--grey-100); --dropdown-item-hover-color: var(--text);