From 325a558fbc8d84273f37a196918c2804036daf9d Mon Sep 17 00:00:00 2001 From: "sp.wack" <83104063+amanape@users.noreply.github.com> Date: Mon, 24 Feb 2025 16:01:47 +0400 Subject: [PATCH] hotfix: Fix switch color regression (#6881) --- .../features/settings/styled-switch-component.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/features/settings/styled-switch-component.tsx b/frontend/src/components/features/settings/styled-switch-component.tsx index c00a55d18c..9299b08b30 100644 --- a/frontend/src/components/features/settings/styled-switch-component.tsx +++ b/frontend/src/components/features/settings/styled-switch-component.tsx @@ -12,13 +12,14 @@ export function StyledSwitchComponent({ className={cn( "w-12 h-6 rounded-xl flex items-center p-1.5 cursor-pointer", isToggled && "justify-end bg-primary", - !isToggled && "justify-start bg-[#1F2228] border border-tertiary-alt", + !isToggled && + "justify-start bg-base-secondary border border-tertiary-light", )} >