From fb6bda7fde8f6f277eceb3389c20dc9b5ee4a78a Mon Sep 17 00:00:00 2001 From: d47081 Date: Tue, 7 Nov 2023 11:56:34 +0200 Subject: [PATCH] fix color-function-notation --- src/webui/www/private/css/palette.css | 30 +++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/webui/www/private/css/palette.css b/src/webui/www/private/css/palette.css index aa9cae55e..6d933505b 100644 --- a/src/webui/www/private/css/palette.css +++ b/src/webui/www/private/css/palette.css @@ -2,17 +2,17 @@ /* Default rules */ * { - --color-text-blue: hsl(210deg, 100%, 55%); - --color-text-orange: hsl(26deg, 100%, 45%); - --color-text-red: hsl(0deg, 100%, 65%); - --color-text-green: hsl(110deg, 94%, 27%); - --color-text-white: hsl(0deg, 0%, 100%); - --color-text-disabled: hsl(0deg, 0%, 60%); - --color-text-default: hsl(0deg, 0%, 33%); - --color-background-blue: hsl(210deg, 42%, 48%); - --color-background-popup: hsl(0deg, 0%, 100%); - --color-background-default: hsl(0deg, 0%, 94%); - --color-border-default: hsl(0deg, 0%, 85%); + --color-text-blue: hsl(210deg 100% 55%); + --color-text-orange: hsl(26deg 100% 45%); + --color-text-red: hsl(0deg 100% 65%); + --color-text-green: hsl(110deg 94% 27%); + --color-text-white: hsl(0deg 0% 100%); + --color-text-disabled: hsl(0deg 0% 60%); + --color-text-default: hsl(0deg 0% 33%); + --color-background-blue: hsl(210deg 42% 48%); + --color-background-popup: hsl(0deg 0% 100%); + --color-background-default: hsl(0deg 0% 94%); + --color-border-default: hsl(0deg 0% 85%); } :root { @@ -33,9 +33,9 @@ } * { - --color-text-default: hsl(0deg, 0%, 90%); - --color-background-popup: hsl(0deg, 0%, 20%); - --color-background-default: hsl(0deg, 0%, 30%); - --color-border-default: hsl(0deg, 0%, 33%); + --color-text-default: hsl(0deg 0% 90%); + --color-background-popup: hsl(0deg 0% 20%); + --color-background-default: hsl(0deg 0% 30%); + --color-border-default: hsl(0deg 0% 33%); } }