import type { Config } from 'tailwindcss' const config: Config = { darkMode: 'class', content: [ './index.html', './src/**/*.{ts,tsx}', ], theme: { extend: { colors: { background: '#0f1117', surface: '#1a1d27', border: '#2a2d3e', 'text-primary': '#e2e8f0', 'text-muted': '#64748b', accent: '#6366f1', 'bull': '#26a69a', 'bear': '#ef5350', 'bull-light': '#26a69a33', 'bear-light': '#ef535033', }, }, }, plugins: [], } export default config