/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], darkMode: ['selector', '[data-theme="dark"]'], theme: { extend: { colors: { 't-bg': 'var(--bg)', 't-surface': 'var(--surface)', 't-fg': 'var(--fg)', 't-muted': 'var(--muted)', 't-border': 'var(--border)', 't-accent': '#e20074', 't-accent-hover': '#c8006a', 't-success': 'var(--success)', 't-warn': 'var(--warn)', 't-danger': 'var(--danger)', }, fontFamily: { 'display': ['TeleNeoWeb-Bold', 'Inter', 'sans-serif'], 'body': ['TeleNeoWeb-Regular', 'Inter', 'sans-serif'], 'mono': ['ui-monospace', 'JetBrains Mono', 'Menlo', 'monospace'], }, boxShadow: { 'card': 'var(--shadow-card)', }, }, }, plugins: [], }