Spaces:
Build error
Build error
File size: 389 Bytes
0b8524d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#2d4a3e',
secondary: '#f5f5f5',
accent: '#d4a574',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
} |