import { defineConfig, presetAttributify, presetWind } from 'unocss' export default defineConfig({ presets: [presetWind(), presetAttributify()], theme: { colors: { surface: { DEFAULT: '#0f1117', raised: '#161b25', border: '#1e2636', }, accent: { DEFAULT: '#4e9af1', muted: '#2a4a72', }, sev: { debug: '#6b7280', info: '#60a5fa', warn: '#fbbf24', error: '#f87171', critical: '#ef4444', }, text: { primary: '#e2e8f0', muted: '#94a3b8', dim: '#475569', }, }, fontFamily: { mono: ['JetBrains Mono', 'monospace'], }, }, })