From cc887214cfc71f1f6673ef0095ce7cc9ccdf3bc6 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 26 Oct 2023 21:59:18 -0700 Subject: [PATCH] Fix: override some colors for white theme (#2242) --- src/styles/theme.css | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/src/styles/theme.css b/src/styles/theme.css index a578169b3..fbc5c2278 100644 --- a/src/styles/theme.css +++ b/src/styles/theme.css @@ -1,19 +1,33 @@ .theme-white { --color-50: 255 255 255; - --color-100: 255 255 255; - --color-200: 255 255 255; - --color-300: 255 255 255; - --color-400: 255 255 255; + --color-100: 120 120 120; + --color-200: 120 120 120; + --color-300: 120 120 120; + --color-400: 120 120 120; --color-500: 60 60 60; - --color-600: 255 255 255; + --color-600: 120 120 120; --color-700: 40 40 40; --color-800: 255 255 255; - --color-900: 255 255 255; + --color-900: 120 120 120; --color-logo-start: 128 128 128 / 20%; --color-logo-stop: 128 128 128 / 40%; } +.theme-white .bg-theme-100\/20, +.theme-white .dark\:bg-white\/5 { + background-color: rgb(245, 245, 245); +} + +.theme-white .bg-theme-100\/20:hover, +.theme-white .dark\:bg-white\/5:hover { + background-color: rgb(250, 250, 250); +} + +.theme-white .text-theme-800 { + color: rgb(120, 120, 120); +} + .theme-slate { --color-50: 248 250 252; --color-100: 241 245 249;