fix(shadcn-ui): cssVars template typo causing missing value (#682)

Co-authored-by: shadcn <m@shadcn.com>
This commit is contained in:
Daniele Luisetto
2023-06-24 18:10:01 +02:00
committed by GitHub
parent 1971fa7511
commit fbed50f4e8
14 changed files with 27 additions and 22 deletions

View File

@@ -210,7 +210,7 @@ export const BASE_STYLES_WITH_VARIABLES = `@tailwind base;
--secondary-foreground: <%- colors.light["secondary-foreground"] %>;
--accent: <%- colors.light["accent"] %>;
--accent-foreground: <%- colors.light["accent-foregrond"] %>;
--accent-foreground: <%- colors.light["accent-foreground"] %>;
--destructive: <%- colors.light["destructive"] %>;
--destructive-foreground: <%- colors.light["destructive-foreground"] %>;
@@ -243,7 +243,7 @@ export const BASE_STYLES_WITH_VARIABLES = `@tailwind base;
--secondary-foreground: <%- colors.dark["secondary-foreground"] %>;
--accent: <%- colors.dark["accent"] %>;
--accent-foreground: <%- colors.dark["accent-foregrond"] %>;
--accent-foreground: <%- colors.dark["accent-foreground"] %>;
--destructive: <%- colors.dark["destructive"] %>;
--destructive-foreground: <%- colors.dark["destructive-foreground"] %>;
@@ -327,7 +327,7 @@ export const THEME_STYLES_WITH_VARIABLES = `
--secondary-foreground: <%- colors.light["secondary-foreground"] %>;
--accent: <%- colors.light["accent"] %>;
--accent-foreground: <%- colors.light["accent-foregrond"] %>;
--accent-foreground: <%- colors.light["accent-foreground"] %>;
--destructive: <%- colors.light["destructive"] %>;
--destructive-foreground: <%- colors.light["destructive-foreground"] %>;
@@ -360,7 +360,7 @@ export const THEME_STYLES_WITH_VARIABLES = `
--secondary-foreground: <%- colors.dark["secondary-foreground"] %>;
--accent: <%- colors.dark["accent"] %>;
--accent-foreground: <%- colors.dark["accent-foregrond"] %>;
--accent-foreground: <%- colors.dark["accent-foreground"] %>;
--destructive: <%- colors.dark["destructive"] %>;
--destructive-foreground: <%- colors.dark["destructive-foreground"] %>;