15 lines
237 B
CSS
15 lines
237 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
background-color: wheat;
|
|
}
|
|
|
|
/* Dark mode */
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
background-color: #1E293B;
|
|
color: antiquewhite;
|
|
}
|
|
} |