From 4028d0a901580f98046511ca77286e0691adc516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Sun, 10 May 2026 19:59:58 +0200 Subject: [PATCH] demo: change plain fill to red to trigger visual regression --- 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 e8c8867..2c61307 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(37, 99, 235, 0.15)"; + ctx.fillStyle = "rgba(220, 38, 38, 0.15)"; // demo: red fill to trigger visual regression ctx.fill(); ctx.beginPath();