From 3cad0d60b4524b3c58141835e458b129fa75bb12 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Thu, 16 Feb 2023 22:40:19 +0100 Subject: Silly Discord changed a bunch of css vars --- src/components/Switch.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components') diff --git a/src/components/Switch.tsx b/src/components/Switch.tsx index a18a7e4..11a3fe0 100644 --- a/src/components/Switch.tsx +++ b/src/components/Switch.tsx @@ -26,8 +26,8 @@ interface SwitchProps { disabled?: boolean; } -const SWITCH_ON = "var(--status-green-600)"; -const SWITCH_OFF = "var(--primary-dark-400)"; +const SWITCH_ON = "var(--green-360)"; +const SWITCH_OFF = "var(--primary-400)"; const SwitchClasses = findByPropsLazy("slider", "input", "container"); export function Switch({ checked, onChange, disabled }: SwitchProps) { -- cgit