mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-14 18:12:10 -06:00
21 lines
337 B
CSS
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);
|
|
}
|