/** @type {import('tailwindcss').Config} */ export default { content: ['./src/renderer/index.html', './src/renderer/src/**/*.{ts,tsx}'], darkMode: 'class', theme: { extend: { colors: { accent: 'rgb(var(--accent) / )', 'accent-soft': 'rgb(var(--accent-soft) / )', bg: 'rgb(var(--bg) / )', surface: 'rgb(var(--surface) / )', 'surface-elevated': 'rgb(var(--surface-elevated) / )', border: 'rgb(var(--border) / )', text: 'rgb(var(--text) / )', muted: 'rgb(var(--muted) / )' }, fontFamily: { sans: ['Inter', 'Segoe UI', 'system-ui', 'sans-serif'] }, boxShadow: { soft: '0 8px 30px -12px rgb(0 0 0 / 0.25)', glow: '0 0 0 1px rgb(var(--accent) / 0.4), 0 8px 24px -8px rgb(var(--accent) / 0.5)' }, animation: { 'pulse-ring': 'pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite' }, keyframes: { 'pulse-ring': { '0%, 100%': { transform: 'scale(1)', opacity: '0.7' }, '50%': { transform: 'scale(1.05)', opacity: '0.3' } } } } }, plugins: [] }