File size: 381 Bytes
ef4c36f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | @import "tailwindcss";
:root {
--background: #fafafa;
--foreground: #18181b;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: ui-sans-serif, system-ui, sans-serif;
--font-anton: var(--font-anton);
--font-oswald: var(--font-oswald);
}
body {
background: var(--background);
color: var(--foreground);
}
|