eeg_internal/static/css/input.css

21 lines
300 B
CSS
Raw Normal View History

2024-02-10 00:18:21 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-02-10 00:59:21 +00:00
:root {
--c-bg: #101010;
--c-on-bg: #dedede;
}
@media (prefers-color-scheme: light) {
:root {
2024-02-13 15:28:30 +00:00
--c-bg: #f8f8fa;
--c-on-bg: #101010;
}
}
2024-02-10 00:59:21 +00:00
html {
background-color: var(--c-bg);
color: var(--c-on-bg);
}