/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", ], theme: { extend: { colors: { 'nest-red': '#e0234e', 'nest-red-dark': '#c41e3a', 'nest-gray': '#1a1a1a', 'nest-gray-light': '#2a2a2a', 'nest-gray-lighter': '#f8f9fa', 'nest-text-gray': '#6c757d' }, fontFamily: { 'sans': ['Inter', 'system-ui', 'sans-serif'] }, backgroundImage: { 'hero-gradient': 'linear-gradient(135deg, rgba(224, 35, 78, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%)' } }, }, plugins: [], }