From 9f67c3ad427c20be5cae97a42c5359a1f47830e8 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Wed, 25 Mar 2026 11:59:18 +0100 Subject: [PATCH] fix error msg color --- core/css/server.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index 87ee928..b587000 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -26,13 +26,17 @@ * { font-family: 'Roboto'; } + +html:root, [data-theme-light] { + --color-error: #fb3845; +} + :root, [data-theme-light] { --color-primary: #007fff; --color-primary-element: #007fff; --color-secondary-element: white; --border-color-secondary-element: #007fff; --color-primary-element-light: #007fff; - --color-error: #fb3845; --color-delete: #e9322d; --color-success: #3ad975; --color-main-background: #ffffff; @@ -68,6 +72,7 @@ /* Force a few variables to right values for dark theme */ body[data-themes="dark"] , body[data-themes="dark-highcontrast"]{ + --color-error: #FF3333; --color-main-background-header: #272727; --input-background-color: #181818; --logo: url("../img/logo@2x-dark.svg"); -- GitLab