import type { Config } from 'tailwindcss' const config: Config = { content: [ './src/pages/**/*.{js,ts,jsx,tsx,mdx}', './src/components/**/*.{js,ts,jsx,tsx,mdx}', './src/app/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: { colors: { // The Vibe brand colors - ethical, warm, trustworthy vibe: { green: '#22C55E', // profit, fairness teal: '#0D9488', // primary action dark: '#0F172A', // text slate: '#334155', // secondary text cream: '#FFF7ED', // warm background amber: '#F59E0B', // break-even indicator red: '#EF4444', // alerts }, }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, }, }, plugins: [], } export default config