/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './src/**/*.{js,jsx,ts,tsx}', // Ajustez ce chemin selon la structure de votre projet ], theme: { extend: { colors: { primary: '#059669', secondary: '#064E3B', tertiary: '#10B981', neutral: '#F8FAFC', }, fontFamily: { headline: ['var(--font-manrope)', 'Manrope', 'sans-serif'], body: ['var(--font-inter)', 'Inter', 'sans-serif'], label: ['var(--font-inter)', 'Inter', 'sans-serif'], }, borderRadius: { DEFAULT: '4px', sm: '2px', md: '6px', lg: '8px', }, }, }, plugins: [require('@tailwindcss/forms')], };