From 526f8be01f48e1375a3eeae9d8e239a1eba05f87 Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Fri, 30 Sep 2022 17:19:01 +0200 Subject: [PATCH] Change histogram bar color to light bluish grey - Hex #85abce --- web/frontend/src/plots/Histogram.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/frontend/src/plots/Histogram.svelte b/web/frontend/src/plots/Histogram.svelte index a6aa49f..b114f07 100644 --- a/web/frontend/src/plots/Histogram.svelte +++ b/web/frontend/src/plots/Histogram.svelte @@ -136,7 +136,7 @@ ctx.stroke() // Draw bars - ctx.fillStyle = '#0066cc' + ctx.fillStyle = '#85abce' for (let p of data) { ctx.fillRect( getCanvasX(p.value) - (barWidth / 2.),