14 lines
282 B
CSS
14 lines
282 B
CSS
@import "tailwindcss";
|
|
@import "@catppuccin/tailwindcss/mocha.css";
|
|
|
|
@source "./layouts/**/*.{html,htm}";
|
|
@source "./content/**/*.{md,html}";
|
|
@source "./static/**/*.{html,js}";
|
|
|
|
@layer base {
|
|
html { @apply antialiased; }
|
|
body { @apply bg-ctp-base text-ctp-text font-sans; }
|
|
}
|
|
|
|
|