demo: increase opacity to 0.8 so visual diff is detectable

This commit is contained in:
Ullrich Schäfer 2026-05-10 20:03:55 +02:00
parent 4028d0a901
commit 15c4e0f8e0
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9

View file

@ -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();