style(dashboard): use cyan for RUNNING status to distinguish from SUCCESS
All checks were successful
build / check (push) Successful in 2m39s
build / fmt (push) Successful in 33s
build / clippy (push) Successful in 2m26s
build / test (push) Successful in 3m16s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-12 12:19:56 +03:00
parent 36a982adba
commit afe1877042

View File

@@ -6,7 +6,7 @@ const statusStyle: Record<string, { color: string; label: string }> = {
queued: { color: "#f59e0b", label: "WAITING" },
waiting: { color: "#9ca3af", label: "BLOCKED" },
blocked: { color: "#ef4444", label: "BLOCKED" },
in_progress: { color: "#22c55e", label: "RUNNING" },
in_progress: { color: "#06b6d4", label: "RUNNING" },
success: { color: "#10b981", label: "SUCCESS" },
failure: { color: "#ef4444", label: "FAILED" },
cancelled: { color: "#6b7280", label: "CANCELLED" },