mirror of
https://github.com/catppuccin/tailwindcss.git
synced 2026-01-09 05:01:09 +08:00
14 lines
276 B
JavaScript
14 lines
276 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require("@catppuccin/tailwindcss")({
|
|
prefix: "ctp",
|
|
defaultFlavour: "latte",
|
|
}),
|
|
],
|
|
};
|