// Shared inline styles intentionally avoided — CSS lives co-located in // each route's component. This file is kept so that future shared // constants (e.g. status colors) have a home. export const statusColor: Record = { success: '#22c55e', error: '#ef4444', timeout: '#f59e0b', budget_exceeded: '#a855f7' }; export const logLevelColor: Record = { trace: '#64748b', info: '#38bdf8', warn: '#f59e0b', error: '#ef4444' };