From 1828ef89974a38b9e46677eccdcd6ac842201e60 Mon Sep 17 00:00:00 2001 From: MyPrototypeWhat Date: Fri, 31 Oct 2025 19:33:58 +0800 Subject: [PATCH] fix: update muted foreground color variable in theme.css - Changed the variable for muted foreground color from `--cs-foreground-secondary` to `--cs-foreground-muted` for improved clarity and consistency in styling. --- packages/ui/src/styles/theme.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/styles/theme.css b/packages/ui/src/styles/theme.css index c182607c99..4c4be20909 100644 --- a/packages/ui/src/styles/theme.css +++ b/packages/ui/src/styles/theme.css @@ -43,7 +43,7 @@ --color-secondary-foreground: var(--cs-foreground); --color-muted: var(--cs-muted); - --color-muted-foreground: var(--cs-foreground-secondary); + --color-muted-foreground: var(--cs-foreground-muted); --color-accent: var(--cs-accent); --color-accent-foreground: var(--cs-foreground);