25 lines
582 B
CSS
25 lines
582 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-background: hsl(220 13% 13%);
|
|
--color-surface: hsl(223 13% 10%);
|
|
|
|
--color-accent: hsl(235 86% 65%);
|
|
--color-accent-hover: hsl(235 86% 58%);
|
|
|
|
--color-foreground: hsl(210 11% 93%);
|
|
--color-muted: hsl(215 8% 55%);
|
|
|
|
--font-sans:
|
|
system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
|
|
Arial, sans-serif;
|
|
}
|
|
|
|
@layer base {
|
|
body {
|
|
@apply bg-background text-foreground font-sans antialiased;
|
|
font-size: 1rem;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
}
|