28 lines
469 B
CSS
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);
|
|
}
|