/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], theme: { extend: { colors: { surface: { DEFAULT: '#1e293b', raised: '#334155', overlay: '#0f172a', }, accent: { DEFAULT: '#6366f1', hover: '#4f46e5', muted: '#312e81', }, success: '#22c55e', warning: '#f59e0b', danger: '#ef4444', info: '#3b82f6', }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], mono: ['JetBrains Mono', 'monospace'], }, }, }, plugins: [], };