Spaces:
Build error
Build error
File size: 345 Bytes
aa03308 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#3B82F6',
secondary: '#10B981',
dark: '#1F2937',
light: '#F9FAFB',
},
},
},
plugins: [],
} |