18 lines
462 B
TypeScript
18 lines
462 B
TypeScript
import type { Config } from "tailwindcss";
|
|
// import defaultTheme from "tailwindcss/defaultTheme";
|
|
|
|
const config: Config = {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
future: {
|
|
hoverOnlyWhenSupported: true,
|
|
},
|
|
plugins: [
|
|
require("@catppuccin/tailwindcss")({
|
|
prefix: "ctp",
|
|
// which flavour of colours to use by default, in the `:root`
|
|
defaultFlavour: "latte",
|
|
}),
|
|
],
|
|
};
|
|
|
|
export default config;
|