Files
lensflix/app/globals.css
T
2026-06-10 18:30:46 +02:00

23 lines
428 B
CSS

@import "tailwindcss";
:root {
--background: #020617;
--foreground: #f8fafc;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-geist-sans), system-ui, sans-serif;
}
* {
box-sizing: border-box;
}