Silly Discord changed a bunch of css vars

This commit is contained in:
Vendicated 2023-02-16 22:40:19 +01:00
parent fbbc198b1b
commit 3cad0d60b4
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
3 changed files with 7 additions and 7 deletions

View file

@ -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) {