2023-03-07 01:19:05 -05:00
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx,vue}",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('@catppuccin/tailwindcss')({
|
|
|
|
prefix: 'ctp',
|
|
|
|
defaultFlavour: 'mocha',
|
2023-03-07 17:54:36 -05:00
|
|
|
}),
|
|
|
|
require('@tailwindcss/typography')
|
2023-03-07 01:19:05 -05:00
|
|
|
],
|
|
|
|
}
|