/* badge.css — Phase 1 ships info / success / danger. * `warning` is declared in variants.go for forward compatibility but has no * CSS rule in Phase 1 — it lands when a page first needs it. */ .ui-badge { display: inline-block; padding: 0.125rem 0.5rem; font-size: 0.75rem; font-weight: 600; border-radius: 0.25rem; line-height: 1.25; } .ui-badge-info { background-color: #dbeafe; color: #1d4ed8; } .ui-badge-success { background-color: #dcfce7; color: #16a34a; } .ui-badge-danger { background-color: #fee2e2; color: #dc2626; }