Merge pull request 'fix(canvas): TIER_CONFIG legend contrast — WCAG 1.4.3' (#990) from design/tier-legend-contrast-2026-05-14 into main
Some checks failed
Block internal-flavored paths / Block forbidden paths (push) Successful in 25s
Secret scan / Scan diff for credential-shaped strings (push) Successful in 22s
Harness Replays / detect-changes (push) Successful in 35s
CI / Detect changes (push) Successful in 46s
E2E Staging Canvas (Playwright) / detect-changes (push) Successful in 46s
E2E API Smoke Test / detect-changes (push) Successful in 49s
Handlers Postgres Integration / detect-changes (push) Successful in 50s
Runtime PR-Built Compatibility / detect-changes (push) Successful in 39s
Harness Replays / Harness Replays (push) Successful in 11s
CI / Platform (Go) (push) Successful in 11s
CI / Shellcheck (E2E scripts) (push) Successful in 10s
CI / Python Lint & Test (push) Successful in 11s
E2E API Smoke Test / E2E API Smoke Test (push) Successful in 13s
publish-canvas-image / Build & push canvas image (push) Successful in 5m35s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (push) Successful in 3m37s
Handlers Postgres Integration / Handlers Postgres Integration (push) Successful in 4m52s
publish-workspace-server-image / build-and-push (push) Successful in 8m59s
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 10s
Lint curl status-code capture / Scan workflows for curl status-capture pollution (pull_request) Successful in 10s
gate-check-v3 / gate-check (pull_request) Successful in 14s
qa-review / approved (pull_request) Successful in 13s
security-review / approved (pull_request) Successful in 14s
sop-tier-check / tier-check (pull_request) Successful in 15s
sop-checklist / all-items-acked (pull_request) Successful in 17s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m15s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (push) Successful in 8m37s
audit-force-merge / audit (pull_request) Successful in 16s
lint-continue-on-error-tracking / lint-continue-on-error-tracking (pull_request) Successful in 1m39s
Lint pre-flip continue-on-error / Verify continue-on-error flips have run-log proof (pull_request) Successful in 1m47s
lint-required-context-exists-in-bp / lint-required-context-exists-in-bp (pull_request) Successful in 1m50s
lint-mask-pr-atomicity / lint-mask-pr-atomicity (pull_request) Successful in 1m59s
CI / Canvas (Next.js) (push) Failing after 14m31s
CI / Canvas Deploy Reminder (push) Has been skipped
publish-workspace-server-image / Production auto-deploy (push) Failing after 7m39s
Sweep stale Cloudflare Tunnels / Sweep CF tunnels (push) Successful in 16s
CI / all-required (push) Failing after 5s
Continuous synthetic E2E (staging) / Synthetic E2E against staging (push) Successful in 5m34s
Sweep stale e2e-* orgs (staging) / Sweep e2e orgs (push) Successful in 7s
gitea-merge-queue / queue (push) Successful in 21s
Runtime Pin Compatibility / PyPI-latest install + import smoke (push) Successful in 2m10s
Railway pin audit (drift detection) / Audit Railway env vars for drift-prone pins (push) Compensated by status-reaper (workflow has no push: trigger; Gitea 1.22.6 hardcoded-suffix bug — see .gitea/scripts/status-reaper.py)
status-reaper / reap (push) Successful in 3m1s
Staging SaaS smoke (every 30 min) / Staging SaaS smoke (push) Successful in 8m20s

This commit is contained in:
devops-engineer 2026-05-14 12:25:02 +00:00
commit 927663d5bf

View File

@ -21,8 +21,8 @@ export function statusDotClass(status: string): string {
export const TIER_CONFIG: Record<number, { label: string; color: string; border: string }> = {
1: { label: "T1", color: "text-ink-mid bg-surface-card border border-line", border: "text-ink-mid border-line" },
2: { label: "T2", color: "text-white bg-accent border border-accent-strong", border: "text-accent border-accent" },
3: { label: "T3", color: "text-white bg-violet-600 border border-violet-700", border: "text-violet-600 border-violet-500" },
4: { label: "T4", color: "text-white bg-warm border border-warm", border: "text-warm border-warm" },
3: { label: "T3", color: "text-white bg-violet-600 border border-violet-700", border: "text-white border-violet-500" },
4: { label: "T4", color: "text-white bg-warm border border-warm", border: "text-white border-warm" },
};
export const COMM_TYPE_LABELS: Record<string, string> = {