1
0
Fork 0
activist/tailwind.config.js

18 lines
332 B
JavaScript
Raw Normal View History

/** @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',
},
},
},
plugins: [require('tailwindcss-primeui')],
}