From 7fb0dfb125e7a6016c8596afbf567e1707f02afe Mon Sep 17 00:00:00 2001 From: Yu Yu Date: Mon, 10 Aug 2026 16:14:18 +0200 Subject: [PATCH] fix: Improve primary button disabled state contrast in one-theme --- style-dictionary/one-theme/colors.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style-dictionary/one-theme/colors.ts b/style-dictionary/one-theme/colors.ts index 313324a7ed..f9efc7c8ad 100644 --- a/style-dictionary/one-theme/colors.ts +++ b/style-dictionary/one-theme/colors.ts @@ -62,11 +62,11 @@ const tokens: StyleDictionary.ColorsDictionary = { colorBackgroundButtonPrimaryDefault: { light: '{colorNeutral800}', dark: '{colorNeutral300}' }, colorBackgroundButtonPrimaryHover: { light: '{colorNeutral700}', dark: '{colorNeutral200}' }, colorBackgroundButtonPrimaryActive: { light: '{colorNeutral800}', dark: '{colorNeutral300}' }, - colorBackgroundButtonPrimaryDisabled: { light: '{colorNeutral400}', dark: '{colorNeutral700}' }, + colorBackgroundButtonPrimaryDisabled: { light: '{colorNeutral150}', dark: '{colorNeutral700}' }, colorTextButtonPrimaryDefault: { light: '{colorNeutral100}', dark: '{colorNeutral950}' }, colorTextButtonPrimaryHover: { light: '{colorNeutral50}', dark: '{colorNeutral950}' }, colorTextButtonPrimaryActive: { light: '{colorNeutral50}', dark: '{colorNeutral950}' }, - colorTextButtonPrimaryDisabled: { light: '{colorNeutral100}', dark: '{colorNeutral950}' }, + colorTextButtonPrimaryDisabled: { light: '{colorNeutral500}', dark: '{colorNeutral950}' }, // ── Toggle button ───────────────────────────────────────────────────────── colorBackgroundToggleButtonNormalPressed: { light: '{colorWhite}', dark: '{colorNeutral1000}' },