From b440ea5eeeabc057f5e01abf6d9ec53f0e248cfa Mon Sep 17 00:00:00 2001 From: Eva Date: Tue, 23 Jan 2024 12:15:55 +0100 Subject: [PATCH] :bug: Fix alert text color --- .../resources/styles/common/refactor/design-tokens.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/resources/styles/common/refactor/design-tokens.scss b/frontend/resources/styles/common/refactor/design-tokens.scss index 03928cc3c..184d86ba7 100644 --- a/frontend/resources/styles/common/refactor/design-tokens.scss +++ b/frontend/resources/styles/common/refactor/design-tokens.scss @@ -293,11 +293,11 @@ // ALERTS & STATUS --alert-background-color-ok: var(--ok-color); - --alert-foreground-color-ok: var(--color-background-secondary); + --alert-foreground-color-ok: var(--dark-gray-2); // We don't want this color to change with theme --alert-background-color-warning: var(--warning-color); - --alert-foreground-color-warning: var(--color-foreground-primary); + --alert-foreground-color-warning: var(--white); // We don't want this color to change with theme --alert-background-color-error: var(--error-color); - --alert-foreground-color-error: var(--color-foreground-primary); + --alert-foreground-color-error: var(--white); // We don't want this color to change with theme --alert-background-color-neutral: var(--color-background-quaternary); --alert-foreground-color-neutral: var(--color-foreground-secondary); --alert-foreground-color-neutral-active: var(--color-foreground-primary);