/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{ts,tsx}'], darkMode: 'class', theme: { extend: { colors: { background: '#0a0d0b', surface: '#111511', card: '#161d17', divider: '#1e2a1f', primary: '#1ed760', 'primary-dim': '#155a2a', ink: '#e4ede5', muted: '#6a8c6d', muted2: '#2e3f30', c1: '#1a2e1c', c2: '#1c1a2e', c3: '#2e1a1a', c4: '#1a2a2e', c5: '#2a2e1a', c6: '#2e2218', }, fontFamily: { sans: ['Inter', 'sans-serif'], }, }, }, plugins: [], }