diff options
author | Vendicated <vendicated@riseup.net> | 2023-02-16 22:40:19 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-02-16 22:40:19 +0100 |
commit | 3cad0d60b4524b3c58141835e458b129fa75bb12 (patch) | |
tree | 9663d8e79e0fad8025cb1986b5ea45d49ec19b80 /src/components | |
parent | fbbc198b1bc406aa3e82fba2b675b3132b0dcb6f (diff) | |
download | Vencord-3cad0d60b4524b3c58141835e458b129fa75bb12.tar.gz Vencord-3cad0d60b4524b3c58141835e458b129fa75bb12.tar.bz2 Vencord-3cad0d60b4524b3c58141835e458b129fa75bb12.zip |
Silly Discord changed a bunch of css vars
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Switch.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |