This repository has been archived on 2024-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
website/tailwind.config.mjs

20 lines
501 B
JavaScript
Raw Permalink Normal View History

2024-07-22 01:46:29 +02:00
/** @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",
}),
],
}