import type { Config } from 'tailwindcss' export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], theme: { extend: { colors: { bg: { primary: 'var(--bg-primary)', sidebar: 'var(--bg-sidebar)', card: 'var(--bg-card)', input: 'var(--bg-input)', hover: 'var(--bg-hover)', }, border: { DEFAULT: 'var(--border)', }, accent: { DEFAULT: 'var(--accent)', hover: 'var(--accent-hover)', }, cyan: { DEFAULT: '#22D3EE', }, status: { pending: '#EF4444', annotating: '#F59E0B', generated: '#3B82F6', fixed: '#22C55E', closed: '#6B7280', }, text: { primary: 'var(--text-primary)', secondary: 'var(--text-secondary)', muted: 'var(--text-muted)', }, }, fontFamily: { sans: [ 'PingFang SC', 'Microsoft YaHei', 'system-ui', '-apple-system', 'sans-serif', ], }, }, }, plugins: [], } satisfies Config