music-to-go/public/css/input.css

30 lines
396 B
CSS
Raw Normal View History

2024-10-07 01:21:13 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-10-08 00:37:20 +00:00
2024-10-27 22:44:51 +00:00
:root {
--c-bg: #01040a;
--c-on-bg: white;
}
@media (prefers-color-scheme: light) {
:root {
--c-bg: white;
--c-on-bg: black;
}
}
html {
background-color: var(--c-bg);
color: var(--c-on-bg);
}
2024-10-08 00:37:20 +00:00
body {
font-family: "Atkinson Hyperlegible", sans-serif;
}
2024-12-08 23:49:07 +00:00
[data-loading] {
display: none;
}
2024-10-08 00:37:20 +00:00