From 939884c95d6d49c1b64a1712f3e77725be6cfd9c Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Sat, 18 Apr 2026 15:46:40 +0300 Subject: [PATCH] fix: expose all semantic color tokens in @theme inline block --- src/shared/styles/theme.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/shared/styles/theme.css b/src/shared/styles/theme.css index 2d63cb3..4f031e8 100644 --- a/src/shared/styles/theme.css +++ b/src/shared/styles/theme.css @@ -89,6 +89,15 @@ --color-primary: var(--primary); --color-primary-foreground: var(--primary-foreground); --color-secondary: var(--secondary); + --color-secondary-foreground: var(--secondary-foreground); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-accent: var(--accent); + --color-accent-foreground: var(--accent-foreground); + --color-destructive: var(--destructive); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --color-ring: var(--ring); --color-border: var(--border); --radius-sm: var(--radius); --radius-md: var(--radius);