Skip to content

Commit a0bd5f8

Browse files
authored
Fix comparison line color in dark mode (#5984)
1 parent b551997 commit a0bd5f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

assets/js/dashboard/stats/graph/graph-util.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ const buildComparisonDataset = function (comparisonPlot) {
3131
return [
3232
{
3333
data: plottable(comparisonPlot),
34-
borderColor: 'rgb(199, 210, 254)',
35-
pointBackgroundColor: 'rgb(199, 210, 254)',
36-
pointHoverBackgroundColor: 'rgb(199, 210, 254)',
34+
borderColor: 'rgba(99, 102, 241, 0.3)',
35+
pointBackgroundColor: 'rgba(99, 102, 241, 0.2)',
36+
pointHoverBackgroundColor: 'rgba(99, 102, 241, 0.5)',
3737
yAxisID: 'yComparison'
3838
}
3939
]

0 commit comments

Comments
 (0)