import type { Config } from 'tailwindcss'; export default { content: ['./index.html', './src/**/*.{ts,tsx}'], darkMode: 'class', theme: { extend: { colors: { dark: { bg: '#0d1117', card: '#161b22', border: '#30363d', hover: '#1c2128', text: '#e6edf3', muted: '#8b949e', accent: '#58a6ff', success: '#3fb950', warning: '#d29922', danger: '#f85149', }, }, }, }, plugins: [], } satisfies Config;