import type { Config } from 'tailwindcss'; const config: Config = { darkMode: 'class', content: ['./index.html', './src/**/*.{ts,tsx}'], theme: { extend: { colors: { background: '#0a0a0a', surface: '#141414', border: '#262626', accent: '#22c55e', warning: '#f59e0b', danger: '#ef4444', 'text-primary': '#fafafa', 'text-muted': '#737373', }, fontFamily: { mono: ['JetBrains Mono', 'IBM Plex Mono', 'monospace'], sans: ['DM Sans', 'Geist', 'system-ui', 'sans-serif'], }, }, }, plugins: [], }; export default config;