/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{ts,tsx}'], theme: { extend: { colors: { // clawstor palette — muted greens for health, amber for // warning, red only for actual failures. health: { ok: '#22c55e', warn: '#f59e0b', err: '#ef4444', idle: '#6b7280', }, }, fontFamily: { mono: ['JetBrains Mono', 'ui-monospace', 'monospace'], }, }, }, plugins: [], };