/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{js,jsx}'], theme: { extend: { colors: { cream: '#FFFBF5', 'cream-dark': '#F5F0E8', ink: '#1A1A1A', 'ink-light': '#4A4A4A', 'ink-muted': '#7A7A7A', accent: '#E85A4F', 'accent-hover':'#D14940', 'accent-light':'#FFF0EE', border: '#E5E0D8', 'border-strong':'#D0C9BD', success: '#2D7A4F', // Legacy aliases coral: '#E85A4F', muted: '#7A7A7A', }, fontFamily: { serif: ['Fraunces', 'Georgia', 'serif'], sans: ['DM Sans', 'sans-serif'], }, borderRadius: { DEFAULT: '0', none: '0', sm: '0', md: '0', lg: '0', xl: '0', '2xl': '0', full: '9999px', // keep for avatars/circles }, letterSpacing: { tight: '-0.02em', editorial: '0.1em', }, }, }, plugins: [], }