beefast-website/tailwind.config.js
2025-01-21 23:13:41 +08:00

16 lines
244 B
JavaScript

module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#FEC400',
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}