mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-06 07:45:45 +00:00
23 lines
343 B
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;
|
|
}
|
|
}
|