From f951cf33cc8e1d278bd2c7dfd0404d84227b836a Mon Sep 17 00:00:00 2001 From: pat-s Date: Sat, 21 Dec 2024 12:09:07 +0100 Subject: [PATCH] align dark colors with palette subcolors --- web/src/style.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/web/src/style.css b/web/src/style.css index 54f90c8f1..11c54baf3 100644 --- a/web/src/style.css +++ b/web/src/style.css @@ -50,10 +50,11 @@ } :root[data-theme='dark'] { - --wp-background-100: theme('colors.int-wp-secondary.300'); - --wp-background-200: theme('colors.int-wp-secondary.400'); - --wp-background-300: theme('colors.int-wp-secondary.500'); - --wp-background-400: theme('colors.int-wp-secondary.600'); + --wp-background-100: theme('colors.black'); + --wp-background-200: theme('colors.int-wp-secondary.200'); + --wp-background-300: theme('colors.int-wp-secondary.300'); + --wp-background-400: theme('colors.int-wp-secondary.400'); + --wp-background-500: theme('colors.int-wp-secondary.500'); --wp-text-100: theme('colors.gray.300'); --wp-text-200: theme('colors.gray.200');