From 3d489259bdfba8f85f004ddfb37932f7b91264db Mon Sep 17 00:00:00 2001 From: its-id Date: Wed, 8 May 2024 02:28:03 +0530 Subject: [PATCH] fix: Blue Button Secondary Color Issue in Dark Mode --- .../src/modules/ui/input/button/components/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/ui/input/button/components/Button.tsx b/packages/twenty-front/src/modules/ui/input/button/components/Button.tsx index 6fa8c4565e76..71290ecc781c 100644 --- a/packages/twenty-front/src/modules/ui/input/button/components/Button.tsx +++ b/packages/twenty-front/src/modules/ui/input/button/components/Button.tsx @@ -160,7 +160,7 @@ const StyledButton = styled.button< border-color: ${variant === 'secondary' ? focus ? theme.color.blue - : theme.color.blue20 + : theme.accent.primary : focus ? theme.color.blue : 'transparent'};