From ce0627d62cd9290061b9606c52095c8071e30d60 Mon Sep 17 00:00:00 2001 From: Michael Collins <0xemc@protonmail.com> Date: Sat, 1 Apr 2023 08:23:27 +1100 Subject: [PATCH] fix: Primary Button Disabled Colour Alignment (#448) --- carbonmark/components/Buttons/styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/carbonmark/components/Buttons/styles.ts b/carbonmark/components/Buttons/styles.ts index 44f107092..a4eca0f0c 100644 --- a/carbonmark/components/Buttons/styles.ts +++ b/carbonmark/components/Buttons/styles.ts @@ -46,8 +46,8 @@ export const buttonPrimary = css` } &:disabled { - background-color: var(--surface-02); - color: var(--font-03); + color: var(--white); + opacity: 0.4; } `;