From 8f25763fa806cdc8cc98e5ebb2845f4b208f9f0c Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sat, 13 Mar 2021 16:44:12 +0100 Subject: [PATCH] theme switch tweaks --- src/components/molecules/ThemeSwitch.module.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/molecules/ThemeSwitch.module.css b/src/components/molecules/ThemeSwitch.module.css index e4580e3..104ad65 100644 --- a/src/components/molecules/ThemeSwitch.module.css +++ b/src/components/molecules/ThemeSwitch.module.css @@ -6,7 +6,7 @@ } .themeSwitch svg { - stroke: var(--brand-grey-light); + stroke: var(--text-color-light); width: var(--font-size-base); height: var(--font-size-base); margin-top: -0.05rem; @@ -36,7 +36,7 @@ position: relative; width: calc((var(--knob-size) + var(--knob-space) * 2) * 2); height: calc(var(--knob-size) + var(--knob-space) * 4); - border: 1px solid var(--brand-grey-light); + border: 1px solid var(--text-color-light); border-radius: 15rem; margin-left: calc(var(--spacer) / 3); margin-right: calc(var(--spacer) / 3); @@ -49,7 +49,7 @@ left: var(--knob-space); width: var(--knob-size); height: var(--knob-size); - background-color: var(--brand-grey-light); + background-color: var(--text-color-light); border-radius: 15rem; transition: transform 0.2s var(--easing); transform: translate3d(0, 0, 0);