mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-29 08:01:06 -05:00
29 lines
455 B
CSS
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;
|
|
}
|