20 lines
352 B
JavaScript
20 lines
352 B
JavaScript
// tailwind.config.js
|
|
import tailwindcss from '@tailwindcss/postcss';
|
|
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'maya': {
|
|
primary: '#3B82F6',
|
|
secondary: '#64748B',
|
|
success: '#10B981',
|
|
danger: '#EF4444',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
} |