mirror of
https://github.com/mdbootstrap/Tailwind-Elements.git
synced 2026-01-18 16:16:29 +00:00
22 lines
273 B
CSS
22 lines
273 B
CSS
@tailwind base;
|
|
|
|
@layer base {
|
|
html {
|
|
@apply text-neutral-800;
|
|
}
|
|
html.dark {
|
|
@apply text-neutral-50;
|
|
@apply bg-neutral-800;
|
|
}
|
|
}
|
|
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
code {
|
|
@apply text-red-600 dark:text-red-400;
|
|
}
|
|
|
|
p {
|
|
@apply leading-[1.6];
|
|
} |