Files
bknd-examples/app/assets/css/main.css
2026-02-17 03:53:59 +05:30

28 lines
521 B
CSS

@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
font-family: "Geist Mono", monospace;
font-weight: 400;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
@theme {
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-background: var(--background);
--color-foreground: var(--foreground);
}
body {
@apply bg-background text-foreground;
font-family: Arial, Helvetica, sans-serif;
}