From 6d67fdd06504e214953378af20309f2eca668242 Mon Sep 17 00:00:00 2001 From: Slendy Date: Sun, 13 Feb 2022 11:23:21 -0600 Subject: [PATCH] Fix report box color --- ProjectLighthouse/Pages/ReportsPage.cshtml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ProjectLighthouse/Pages/ReportsPage.cshtml b/ProjectLighthouse/Pages/ReportsPage.cshtml index d2693b79..eca106db 100644 --- a/ProjectLighthouse/Pages/ReportsPage.cshtml +++ b/ProjectLighthouse/Pages/ReportsPage.cshtml @@ -115,17 +115,16 @@ const bw = (x2 - x1) / scaleX; const bh = (y2 - y1) / scaleY; context.beginPath(); - context.lineWidth = 3; context.globalAlpha = 0.6; context.fillStyle = "black"; context.fillRect(0, 0, canvas.width, canvas.height); context.clearRect(bx, by, bw, bh); - context.globalAlpha = 1.0; context.beginPath(); - context.lineWidth = 3; - context.strokeStyle = "#cc0a1d"; + context.lineWidth = 2; + context.strokeStyle = "#957a24"; context.rect(bx, by, bw, bh); context.stroke(); + context.globalAlpha = 1.0; break; } case 1: {