/** * Shared Tailwind Configuration * Centralizes the Tailwind CSS custom color palette across all pages * * This eliminates ~16 lines of duplicated configuration from each page. * Any color changes only need to be made in this single file. */ tailwind.config = { theme: { extend: { colors: { 'kelly-green': '#8B9B7A', 'dark-green': '#6B785F', 'light-green': '#A4B18F', 'sage': '#8B9B7A', 'terracotta': '#C17A5B', 'warm-cream': '#F5F2ED', 'rust': '#B85C38' } } } };