music-to-go/public/css/input.css
2024-10-27 17:44:51 -05:00

27 lines
360 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
: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);
}
body {
font-family: "Atkinson Hyperlegible", sans-serif;
}