diff --git a/components.json b/components.json index b4ea3b5..2ad1c43 100644 --- a/components.json +++ b/components.json @@ -3,7 +3,7 @@ "style": "default", "tailwind": { "config": "tailwind.config.ts", - "css": "src/styles.pcss", + "css": "src/styles.postcss", "baseColor": "zinc" }, "aliases": { diff --git a/src/styles.pcss b/src/styles.postcss similarity index 91% rename from src/styles.pcss rename to src/styles.postcss index c0fd2a2..4238538 100644 --- a/src/styles.pcss +++ b/src/styles.postcss @@ -1,88 +1,86 @@ @tailwind base; @tailwind components; @tailwind utilities; - + @layer base { + body { + @apply antialiased font-sans bg-background text-foreground; + } + :root { --background: 0 0% 100%; --foreground: 240 10% 3.9%; - + --muted: 240 4.8% 95.9%; --muted-foreground: 240 3.8% 46.1%; - + --popover: 0 0% 100%; --popover-foreground: 240 10% 3.9%; - + --card: 0 0% 100%; --card-foreground: 240 10% 3.9%; - + --border: 240 5.9% 90%; --input: 240 5.9% 90%; - + --primary: 240 5.9% 10%; --primary-foreground: 0 0% 98%; - + --secondary: 240 4.8% 95.9%; --secondary-foreground: 240 5.9% 10%; - + --accent: 240 4.8% 95.9%; --accent-foreground: 240 5.9% 10%; - + --destructive: 0 72.2% 50.6%; --destructive-foreground: 0 0% 98%; - + --ring: 240 10% 3.9%; - + --radius: 0.5rem; } - + .dark { --background: 240 10% 3.9%; --foreground: 0 0% 98%; - + --muted: 240 3.7% 15.9%; --muted-foreground: 240 5% 64.9%; - + --popover: 240 10% 3.9%; --popover-foreground: 0 0% 98%; - + --card: 240 10% 3.9%; --card-foreground: 0 0% 98%; - + --border: 240 3.7% 15.9%; --input: 240 3.7% 15.9%; - + --primary: 0 0% 98%; --primary-foreground: 240 5.9% 10%; - + --secondary: 240 3.7% 15.9%; --secondary-foreground: 0 0% 98%; - + --accent: 240 3.7% 15.9%; --accent-foreground: 0 0% 98%; - + --destructive: 0 62.8% 30.6%; --destructive-foreground: 0 0% 98%; - + --ring: 240 4.9% 83.9%; } } - + @layer base { - * { - @apply border-border; - } - body { - @apply bg-background text-foreground; - } } @layer utilities { /* Class is used for development purposes only */ .dev { - @apply border-[1px]; + @apply border-[1px] border-black dark:border-white; } .devo { @apply outline-dashed outline-1 outline-primary; } -} \ No newline at end of file +}