From 15c4e0f8e0def9a91c67d7c8de0354fce54d540e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Sun, 10 May 2026 20:03:55 +0200 Subject: [PATCH] demo: increase opacity to 0.8 so visual diff is detectable --- apps/planner/app/lib/elevation-chart-draw.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/planner/app/lib/elevation-chart-draw.ts b/apps/planner/app/lib/elevation-chart-draw.ts index 2c61307..bb5d411 100644 --- a/apps/planner/app/lib/elevation-chart-draw.ts +++ b/apps/planner/app/lib/elevation-chart-draw.ts @@ -179,7 +179,7 @@ export function drawElevationChart( } ctx.lineTo(PADDING.left + chartW, PADDING.top + chartH); ctx.closePath(); - ctx.fillStyle = "rgba(220, 38, 38, 0.15)"; // demo: red fill to trigger visual regression + ctx.fillStyle = "rgba(220, 38, 38, 0.8)"; // demo: vivid red fill to trigger visual regression ctx.fill(); ctx.beginPath();