21 lines
300 B
CSS
21 lines
300 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--c-bg: #101010;
|
|
--c-on-bg: #dedede;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
--c-bg: #fafaf0;
|
|
--c-on-bg: #101010;
|
|
}
|
|
}
|
|
|
|
html {
|
|
background-color: var(--c-bg);
|
|
color: var(--c-on-bg);
|
|
}
|