/**
 * Template 9 - Lavande Provence
 * Palette inspirée de la lavande - violets doux, blancs crème et verts tendres
 * Date: 2025-07-11 09:44:00
 */

:root {
    --primary-50: #faf5ff;
    --primary-100: #f3e8ff;
    --primary-200: #e9d5ff;
    --primary-300: #d8b4fe;
    --primary-400: #c084fc;
    --primary-500: #a855f7;
    --primary-600: #9333ea;
    --primary-700: #7c3aed;
    --primary-800: #6b21b8;
    --primary-900: #581c87;

    --secondary-50: #fefefe;
    --secondary-100: #fafafa;
    --secondary-200: #f5f5f5;
    --secondary-300: #f0f0f0;
    --secondary-400: #d4d4d4;
    --secondary-500: #a3a3a3;
    --secondary-600: #737373;
    --secondary-700: #525252;
    --secondary-800: #404040;
    --secondary-900: #262626;

    --accent-50: #f7fee7;
    --accent-100: #ecfccb;
    --accent-200: #d9f99d;
    --accent-300: #bef264;
    --accent-400: #a3e635;
    --accent-500: #84cc16;
    --accent-600: #65a30d;
    --accent-700: #4d7c0f;
    --accent-800: #365314;
    --accent-900: #1a2e05;
}

/* === OVERRIDES TAILWIND === */
.bg-purple-100 { background-color: var(--primary-100) !important; }
.bg-purple-600 { background-color: var(--primary-600) !important; }
.text-purple-100 { color: var(--primary-100) !important; }
.text-purple-600 { color: var(--primary-600) !important; }
.bg-blue-50 { background-color: var(--secondary-50) !important; }
.bg-blue-600 { background-color: var(--secondary-600) !important; }
.text-blue-100 { color: var(--secondary-100) !important; }
.text-blue-600 { color: var(--secondary-600) !important; }
.bg-green-500 { background-color: var(--accent-500) !important; }
.text-green-600 { color: var(--accent-600) !important; }
.bg-gray-50 { background-color: var(--secondary-50) !important; }
.text-gray-500 { color: var(--secondary-500) !important; }
.bg-white { background-color: #ffffff !important; }
.text-white { color: #ffffff !important; }
