This repository has been archived on 2025-03-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
boilerplate/frontend/src/style.css
2025-03-08 04:21:35 -08:00

14 lines
191 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
html, body {
background: white;
}
@media (prefers-color-scheme: dark) {
html, body {
background: #121212;
}
}