Research-Stack/2-Search-Space/search/stract/frontend/src/app.css

23 lines
343 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root,
html {
@apply theme-light bg-base-100 text-base-content transition-colors duration-300;
}
@media (prefers-color-scheme: dark) {
:root,
html {
@apply theme-dark;
}
}
*,
::before,
::after {
@apply border-base-400;
}
}