From 9e4e43ed9abe607216399c1f760f8b0157814104 Mon Sep 17 00:00:00 2001 From: Erik Darling <2136037+erikdarlingdata@users.noreply.github.com> Date: Wed, 18 Feb 2026 21:04:49 -0500 Subject: [PATCH] Match Dashboard chart grid line opacity to Lite (WithAlpha 40) Dashboard was at 20 while Lite was at 40. User confirmed Lite looks good, so matching Dashboard to the same value. Co-Authored-By: Claude Opus 4.6 --- Dashboard/Helpers/TabHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dashboard/Helpers/TabHelpers.cs b/Dashboard/Helpers/TabHelpers.cs index c7556a9c..a9cc90c9 100644 --- a/Dashboard/Helpers/TabHelpers.cs +++ b/Dashboard/Helpers/TabHelpers.cs @@ -132,7 +132,7 @@ public static void ApplyDarkModeToChart(WpfPlot chart) var darkBackground = ScottPlot.Color.FromHex("#22252b"); var darkerBackground = ScottPlot.Color.FromHex("#111217"); var textColor = ScottPlot.Color.FromHex("#9DA5B4"); - var gridColor = ScottPlot.Colors.White.WithAlpha(20); + var gridColor = ScottPlot.Colors.White.WithAlpha(40); chart.Plot.FigureBackground.Color = darkBackground; chart.Plot.DataBackground.Color = darkerBackground;