Files
Compass/app/globals.css
MartinBraquet 3758518337 Add site info
2025-07-29 02:14:17 +02:00

33 lines
511 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: var(--background);
color: var(--foreground);
margin: 0;
padding: 0;
}
a {
color: cornflowerblue;
}