import defaultTheme from 'tailwindcss/defaultTheme'; import forms from '@tailwindcss/forms'; import typography from '@tailwindcss/typography'; /** @type {import('tailwindcss').Config} */ export default { content: [ './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', './storage/framework/views/*.php', './resources/views/**/*.blade.php', './resources/js/**/*.vue', ], darkMode: 'class', theme: { extend: { colors: { primary: '#1a4b8c', // Bleu Méditerranée accent: '#c8102e', // Rouge Occitan highlight: '#f5a800', // Or du Midi sky: '#3a7abf', // Bleu ciel sand: '#e8e0d0', // Sable garrigue anthracite: '#2d2d2d', // Anthracite neutral: '#f0ece4', // Fond neutre }, fontFamily: { sans: ['Helvetica Neue', 'Arial', 'sans-serif'], serif: ['Merriweather', 'Georgia', 'serif'], subtitle: ['Nunito', 'Gill Sans', 'sans-serif'], }, }, }, plugins: [forms, typography], };