1
0
Fork 0
This repository has been archived on 2023-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
chellaris-galaxy-political-.../app/globals.css
2023-06-01 00:10:59 +02:00

28 lines
469 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground: #000000;
--background-start: #D6DBDC;
--background-end: #ffffff;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground: #ffffff;
--background-start: #000000;
--background-end: #000000;
}
}
body {
color: var(--foreground);
background: linear-gradient(
to bottom,
transparent,
var(--background-end)
)
var(--background-start);
}