From 962813c17e8e2d8c0b9eb54b9145950b17d495e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Dugovi=C4=8D?= Date: Tue, 1 Sep 2026 16:12:23 +0200 Subject: [PATCH] fix(TagCount): fix icon color in dark theme HMS-11250 Icon colors are hard-coded for light theme. It is an accessibility and style issue. --- packages/module/src/TagCount/TagCount.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/module/src/TagCount/TagCount.tsx b/packages/module/src/TagCount/TagCount.tsx index b944127a..29e1bca3 100644 --- a/packages/module/src/TagCount/TagCount.tsx +++ b/packages/module/src/TagCount/TagCount.tsx @@ -12,7 +12,7 @@ const useStyles = createUseStyles({ }, tagIcon: (isDisabled: boolean) => ({ - color: `var(--pf-t--global--icon--color--${isDisabled ? '200' : '100'})`, + color: isDisabled ? 'var(--pf-t--global--icon--color--disabled)' : 'var(--pf-v6-c-button__icon--Color)', }), tagText: {