/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{ts,tsx}'], darkMode: 'class', theme: { extend: { colors: { background: '#111111', surface: '#1a1a1a', card: '#222222', divider: '#303030', primary: '#1ed760', 'primary-dim': '#1a3d28', ink: '#e8e8e8', muted: '#888888', muted2: '#333333', c1: '#1a2e1c', c2: '#1c1a2e', c3: '#2e1a1a', c4: '#1a2a2e', c5: '#2a2e1a', c6: '#2e2218', }, fontFamily: { sans: ['Inter', 'sans-serif'], }, }, }, plugins: [], }