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

27 lines
360 B
CSS
Raw Permalink 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;
}