Files
linkpulse/frontend/src/App.css
2024-10-15 23:52:21 -05:00

21 lines
337 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background-color: #fff;
--text-color: #111;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: rgb(20, 20, 20);
--text-color: rgb(230, 230, 230);
}
}
body {
background-color: var(--background-color);
color: var(--text-color);
}