From 4af506532a420ff03bbb5c779190c39ca55584af Mon Sep 17 00:00:00 2001 From: BigSimmo <87357024+BigSimmo@users.noreply.github.com> Date: Sat, 11 Jul 2026 03:12:41 +0800 Subject: [PATCH] fix(differentials): restore visible Safety Snapshot alert tint The Overview tab's Safety Snapshot banner used bg-[color:var(--danger-soft)]/50, which Tailwind compiles to color-mix(in oklab, var(--danger-soft) 50%, transparent). Since --danger-soft is already near-white (#fef3f2) in light mode, the 50% mix toward transparent rendered as an indistinguishable white strip instead of the intended red/pink emergent-status alert. Drop the opacity modifier to match every other --danger-soft usage in this file (full opacity). --- src/components/differentials/differential-detail-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/differentials/differential-detail-page.tsx b/src/components/differentials/differential-detail-page.tsx index 6517ebabd..44f9eef32 100644 --- a/src/components/differentials/differential-detail-page.tsx +++ b/src/components/differentials/differential-detail-page.tsx @@ -154,7 +154,7 @@ function SafetySnapshot({ record }: { record: DifferentialRecord }) { ]; return ( -
+