Files
flyer-crawler.projectium.com/tailwind.config.js
Torben Sorensen 4e5d709973
Some checks failed
Deploy to Test Environment / deploy-to-test (push) Failing after 12s
more fixin logging, UI update #1, source maps fix
2026-01-21 03:27:44 -08:00

28 lines
880 B
JavaScript

// tailwind.config.js
console.log('--- [EXECUTION PROOF] tailwind.config.js is being loaded. ---');
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
brand: {
// Primary: Main brand color - teal for freshness, grocery theme
primary: '#0d9488', // teal-600
// Secondary: Supporting actions and buttons
secondary: '#14b8a6', // teal-500
// Light: Backgrounds and highlights in light mode
light: '#ccfbf1', // teal-100
// Dark: Hover states and backgrounds in dark mode
dark: '#115e59', // teal-800
// Additional variants for flexibility
'primary-light': '#99f6e4', // teal-200
'primary-dark': '#134e4a', // teal-900
},
},
},
},
};