2024-04-23 22:06:30 +00:00
|
|
|
|
|
|
|
:root {
|
|
|
|
--c-bg: #101010;
|
|
|
|
--c-on-bg: #dedede;
|
2024-05-01 11:50:59 +00:00
|
|
|
|
|
|
|
--c-bg-2: #18181b;
|
2024-04-23 22:06:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
:root {
|
|
|
|
--c-bg: #f5f5f5;
|
|
|
|
--c-on-bg: #101010;
|
2024-05-01 11:50:59 +00:00
|
|
|
|
|
|
|
--c-bg-2: white;
|
2024-04-23 22:06:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
background-color: var(--c-bg);
|
|
|
|
color: var(--c-on-bg);
|
|
|
|
font-family: Inter, sans-serif;
|
|
|
|
}
|