/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], theme: { extend: { colors: { dark: { 900: '#0a0e17', 800: '#0f1623', 700: '#141c2e', 600: '#1a2540', 500: '#1e2d4d', }, accent: { blue: '#3b82f6', cyan: '#06b6d4', green: '#10b981', red: '#ef4444', orange: '#f97316', yellow: '#f59e0b', purple: '#8b5cf6', }, }, fontFamily: { mono: ['JetBrains Mono', 'Fira Code', 'Consolas', 'monospace'], }, keyframes: { 'fade-in': { '0%': { opacity: '0', transform: 'translateY(8px)' }, '100%': { opacity: '1', transform: 'translateY(0)' }, }, }, animation: { 'fade-in': 'fade-in 0.25s ease-out', }, }, }, plugins: [], }