/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{js,jsx}'], darkMode: 'class', theme: { extend: { colors: { surface: { 0: 'var(--surface-0)', 1: 'var(--surface-1)', 2: 'var(--surface-2)', 3: 'var(--surface-3)', 4: 'var(--surface-4)', }, txt: { primary: 'var(--text-primary)', secondary: 'var(--text-secondary)', muted: 'var(--text-muted)', }, accent: { DEFAULT: 'var(--accent)', hover: 'var(--accent-hover)', }, border: { DEFAULT: 'var(--border)', }, }, }, }, plugins: [], };