import type { Config } from 'tailwindcss'; export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], theme: { extend: { colors: { brand: '#c20600', 'bg-primary': '#0a0a0a', 'bg-secondary': '#121212', 'bg-tertiary': '#1a1a1a', 'bg-elevated': '#202020', 'text-primary': '#d4d4d4', 'text-secondary': '#a3a3a3', 'text-muted': '#737373', 'border-subtle': '#1a1a1a', 'border-default': '#27272a', 'border-highlight': '#2a2a2a', }, fontFamily: { mono: ['Courier New', 'Courier', 'monospace'], sans: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'], }, spacing: { 'header': '48px', 'status': '32px', }, }, }, plugins: [], } satisfies Config;