From 235ed8956c8e3c085a4abaf29d902e32a3689b1c Mon Sep 17 00:00:00 2001 From: _00_ <131402327+rgaricano@users.noreply.github.com> Date: Sun, 26 Oct 2025 09:40:05 +0100 Subject: [PATCH] UPD: Refactor dark select styles using Tailwind CSS classes ### UPD_Styles: Add dark mode styles for select elements and options. Actually some select "boxes" have css dark theme support, but other not. This PR add CSS for dark theme selects. --- src/app.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/app.css b/src/app.css index 7727f3fe9f..c8c0b0470e 100644 --- a/src/app.css +++ b/src/app.css @@ -153,13 +153,11 @@ select { } .dark select { - background-color: rgb(23, 23, 23); /* gray-900 */ - color: rgb(209, 213, 219); /* gray-300 */ + @apply bg-gray-900 text-gray-300; } - + .dark select option { - background-color: rgb(38, 38, 38); /* gray-850 */ - color: rgb(255, 255, 255); + @apply bg-gray-850 text-white; } @keyframes shimmer {