10 lines
180 B
CSS
10 lines
180 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* Set automatic background color */
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #292929;
|
|
}
|
|
} |