CloudProxyPro/tailwind.config.js

20 lines
359 B
JavaScript
Raw Permalink Normal View History

2025-09-05 14:59:21 +08:00
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}"
],
theme: {
extend: {
colors: {
primary: '#2563eb',
secondary: '#7c3aed'
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}