tremor-tracker/src/app/globals.css

21 lines
306 B
CSS
Raw Normal View History

2025-02-24 12:37:15 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
2025-03-19 19:20:18 +00:00
/* @media (prefers-color-scheme: dark) {
2025-02-24 12:37:15 +00:00
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
2025-03-19 19:20:18 +00:00
} */
2025-02-24 12:37:15 +00:00
body {
color: var(--foreground);
background: var(--background);
}