aboutsummaryrefslogtreecommitdiff
path: root/src/components/Switch.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Switch.tsx')
-rw-r--r--src/components/Switch.tsx4
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) {