2023-07-27 12:29:42 +02:00

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];
}