first commit
This commit is contained in:
parent
a3f5f5f701
commit
207c82578f
137 changed files with 4659 additions and 8605 deletions
18
tailwind.config.ts
Normal file
18
tailwind.config.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue