14 lines
217 B
CSS
14 lines
217 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
html, body, .background {
|
|
background: white;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html, body, .background {
|
|
background: #121212;
|
|
}
|
|
} |