Skip to content

Commit

Permalink
chore(components): apply static on theme; fix some vars
Browse files Browse the repository at this point in the history
  • Loading branch information
desmondinho committed Feb 27, 2025
1 parent 07c52e3 commit 6ce5c54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/LumexUI/Styles/_theme.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* https://tailwindcss.com/docs/theme#theme-variable-namespaces */
@theme {
@theme static {
/* Colors */
--color-background: hsl(var(--lumex-background));

Expand All @@ -18,7 +18,7 @@

--color-focus: hsl(var(--lumex-focus));
--color-overlay: hsl(var(--lumex-overlay));
--color-divider: hsl(var(--lumex-divider));
--color-divider: --alpha(hsl(var(--lumex-divider)) / var(--lumex-opacity-divider));
--color-surface1: hsl(var(--lumex-surface1));
--color-surface1-foreground: hsl(var(--lumex-surface1-foreground));
--color-surface2: hsl(var(--lumex-surface2));
Expand All @@ -37,7 +37,7 @@
--color-default-800: hsl(var(--lumex-default-800));
--color-default-900: hsl(var(--lumex-default-900));
--color-default-950: hsl(var(--lumex-default-950));
--color-default: hsl(var(--lumex-default));
--color-default: hsl(var(--lumex-default-foreground));

--color-primary-50: hsl(var(--lumex-primary-50));
--color-primary-100: hsl(var(--lumex-primary-100));
Expand Down

0 comments on commit 6ce5c54

Please sign in to comment.