/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], darkMode: 'class', theme: { extend: { colors: { // Tokens pilotés par variables CSS (voir :root et .dark dans index.css). bg: 'rgb(var(--c-bg) / )', panel: 'rgb(var(--c-panel) / )', panel2: 'rgb(var(--c-panel2) / )', sidebar: 'rgb(var(--c-sidebar) / )', border: 'rgb(var(--c-border) / )', ink: 'rgb(var(--c-ink) / )', muted: 'rgb(var(--c-muted) / )', subtle: 'rgb(var(--c-subtle) / )', accent: 'rgb(var(--c-accent) / )', accentfg: 'rgb(var(--c-accentfg) / )', accent2: 'rgb(var(--c-accent2) / )' } } }, plugins: [] }