Files
Compass/app/globals.css
MartinBraquet 639d651f64 White bg
2025-07-28 12:56:45 +02:00

29 lines
455 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}
html, body {
background-color: #ffffff;
color: #111111; /* for dark text */
margin: 0;
padding: 0;
}