forked from leafus/website
20 lines
501 B
JavaScript
20 lines
501 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
import defaultTheme from 'tailwindcss/defaultTheme'
|
||
|
|
||
|
export default {
|
||
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
|
||
|
},
|
||
|
},
|
||
|
plugins: [
|
||
|
require("@catppuccin/tailwindcss")({
|
||
|
// prefix to use, e.g. `text-pink` becomes `text-ctp-pink`.
|
||
|
// default is `false`, which means no prefix
|
||
|
prefix: "ctp",
|
||
|
// which flavour of colours to use by default, in the `:root`
|
||
|
defaultFlavour: "mocha",
|
||
|
}),
|
||
|
],
|
||
|
}
|