From ce2522a94d02075574f5dab8540108bdf1d2900f Mon Sep 17 00:00:00 2001 From: Sanne de Vries Date: Tue, 6 Jan 2026 10:19:20 +0100 Subject: [PATCH] Fix comparison line color in dark mode --- assets/js/dashboard/stats/graph/graph-util.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/js/dashboard/stats/graph/graph-util.js b/assets/js/dashboard/stats/graph/graph-util.js index cf33ed8dfe13..948a3edf82f8 100644 --- a/assets/js/dashboard/stats/graph/graph-util.js +++ b/assets/js/dashboard/stats/graph/graph-util.js @@ -31,9 +31,9 @@ const buildComparisonDataset = function (comparisonPlot) { return [ { data: plottable(comparisonPlot), - borderColor: 'rgb(199, 210, 254)', - pointBackgroundColor: 'rgb(199, 210, 254)', - pointHoverBackgroundColor: 'rgb(199, 210, 254)', + borderColor: 'rgba(99, 102, 241, 0.3)', + pointBackgroundColor: 'rgba(99, 102, 241, 0.2)', + pointHoverBackgroundColor: 'rgba(99, 102, 241, 0.5)', yAxisID: 'yComparison' } ]