From 0ccf7d182a531011c5fa7e726df399c6b0fcceea Mon Sep 17 00:00:00 2001 From: Trenton Zimmer <66042448+trmazi@users.noreply.github.com> Date: Wed, 30 Jul 2025 22:04:31 -0400 Subject: [PATCH] Fix switch coloring --- src/css/_checkbox-radio-switch.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/css/_checkbox-radio-switch.css b/src/css/_checkbox-radio-switch.css index 4d50711..1af6ccb 100644 --- a/src/css/_checkbox-radio-switch.css +++ b/src/css/_checkbox-radio-switch.css @@ -8,11 +8,11 @@ } .checkbox input[type=checkbox]+.check, .radio input[type=radio]+.check, .switch input[type=checkbox]+.check { - @apply border-gray-700 border transition-colors duration-200 dark:bg-slate-800; + @apply border-gray-700 border transition-colors duration-200 bg-slate-800; } .checkbox input[type=checkbox]:focus+.check, .radio input[type=radio]:focus+.check, .switch input[type=checkbox]:focus+.check { - @apply ring-3 ring-blue-700; + @apply ring-2 ring-blue-700; } .checkbox input[type=checkbox]+.check, .radio input[type=radio]+.check { @@ -24,7 +24,7 @@ } .switch input[type=checkbox]+.check { - @apply flex items-center shrink-0 w-12 h-6 p-0.5 bg-gray-200; + @apply flex items-center shrink-0 w-12 h-6 p-0.5 bg-slate-800; } .radio input[type=radio]+.check, .switch input[type=checkbox]+.check, .switch input[type=checkbox]+.check:before {