summaryrefslogtreecommitdiff
path: root/src/components/ToggleSwitch.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ToggleSwitch.module.scss')
-rw-r--r--src/components/ToggleSwitch.module.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ToggleSwitch.module.scss b/src/components/ToggleSwitch.module.scss
index 53fa16b..78a2b41 100644
--- a/src/components/ToggleSwitch.module.scss
+++ b/src/components/ToggleSwitch.module.scss
@@ -1,8 +1,8 @@
.ToggleSwitch {
user-select: none;
border: 1px solid #525252;
- color: #eee;
- background: #353535;
+ color: var(--color-text);
+ background: var(--color-toggle-bg);
display: flex;
position: relative;
@@ -30,5 +30,5 @@
left: 0;
height: 100%;
transition: left 0.2s ease-out;
- background: #181818;
+ background: var(--color-toggle-selected);
}