14 lines
216 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
background-color: #fff;
}
/* Set automatic background color */
@media (prefers-color-scheme: dark) {
body {
background-color: #292929;
}
}