/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{ts,tsx}'], important: true, corePlugins: { preflight: false, }, theme: { extend: { colors: { ink: '#1d2129', muted: '#86909c', line: '#e5e6eb', canvas: '#f2f3f5', panel: '#fbfcfd', brand: '#165dff', 'brand-light': '#e8f3ff', success: '#00b42a', warning: '#ff7d00', danger: '#f53f3f', }, fontFamily: { sans: [ 'Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'sans-serif', ], }, boxShadow: { login: '0 18px 48px rgba(15, 23, 42, 0.08)', card: '0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02)', 'card-hover': '0 4px 12px rgba(0,0,0,0.08)', }, borderRadius: { xl: '0.75rem', }, }, }, plugins: [], };