From 3e9bff22bb7322b4a3959d70c5dc7e7b238b5f6e Mon Sep 17 00:00:00 2001 From: "Yadong (Adam) Zhang" Date: Fri, 9 May 2025 14:50:45 +0800 Subject: [PATCH] fix(ui): added primary blue accent disabled color. (#11945) Close #11941 Screenshot 2025-05-08 at 23 23 14 --- .../twenty-ui/src/input/button/components/Button/Button.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/twenty-ui/src/input/button/components/Button/Button.tsx b/packages/twenty-ui/src/input/button/components/Button/Button.tsx index 28602d917..ad08b0d07 100644 --- a/packages/twenty-ui/src/input/button/components/Button/Button.tsx +++ b/packages/twenty-ui/src/input/button/components/Button/Button.tsx @@ -100,7 +100,9 @@ const StyledButton = styled('button', { case 'blue': return css` background: ${!inverted - ? theme.color.blue + ? disabled + ? theme.accent.accent4060 + : theme.color.blue : theme.background.primary}; border-color: ${!inverted ? focus