2024-11-16 14:29:03 -05:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
export default {
|
|
|
|
|
content: [
|
|
|
|
|
"./index.html",
|
|
|
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
|
|
|
],
|
|
|
|
|
theme: {
|
2024-11-17 11:39:21 -05:00
|
|
|
extend: {
|
|
|
|
|
colors: {
|
|
|
|
|
primary: '#CCCCCC',
|
|
|
|
|
secondary: '#ecc94b',
|
|
|
|
|
neutral: '#ec4c9b',
|
|
|
|
|
},
|
|
|
|
|
},
|
2024-11-16 14:29:03 -05:00
|
|
|
},
|
|
|
|
|
plugins: [require('tailwindcss-primeui')],
|
|
|
|
|
}
|