From 82e10ffffa7b8b4102966dcc59a290ff6346332f Mon Sep 17 00:00:00 2001 From: d47081 Date: Sat, 11 Nov 2023 21:14:24 +0200 Subject: [PATCH] add accent colors --- src/webui/www/private/css/palette.css | 2 ++ src/webui/www/private/css/style.css | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/src/webui/www/private/css/palette.css b/src/webui/www/private/css/palette.css index 18e7b49f8..95d76ee4e 100644 --- a/src/webui/www/private/css/palette.css +++ b/src/webui/www/private/css/palette.css @@ -2,6 +2,7 @@ /* Default rules */ * { + --color-accent-blue: hsl(210deg 65% 55%); --color-text-blue: hsl(210deg 100% 55%); --color-text-orange: hsl(26deg 100% 45%); --color-text-red: hsl(0deg 100% 65%); @@ -36,6 +37,7 @@ } * { + --color-accent-blue: hsl(210deg 42% 48%); --color-text-blue: hsl(210deg 88.1% 73.5%); /* previous --color-text-orange: hsl(26deg 80% 60%); */ --color-text-orange: hsl(26deg 65% 70%); diff --git a/src/webui/www/private/css/style.css b/src/webui/www/private/css/style.css index edbf455b3..fc5ff21c5 100644 --- a/src/webui/www/private/css/style.css +++ b/src/webui/www/private/css/style.css @@ -22,6 +22,11 @@ select { padding: 4px; } +input[type="checkbox"], +input[type="radio"] { + accent-color: var(--color-accent-blue); +} + input[type="button"], input[type="submit"], button {