Spaces:
Runtime error
Runtime error
File size: 695 Bytes
548eca7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | @import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
color-scheme: light;
}
:root[data-color-scheme="dark"] {
--background: #0a0a0a;
--foreground: #ededed;
color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
:root:not([data-color-scheme]) {
--background: #0a0a0a;
--foreground: #ededed;
color-scheme: dark;
}
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: Arial, Helvetica, sans-serif;
--font-mono: SFMono-Regular, Consolas, "Liberation Mono", monospace;
}
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-sans);
}
|