From 3ce926518041408f92d4759d7e812e015d7c383a Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 16 Apr 2024 08:10:41 -0600 Subject: [PATCH] Use green for normal stats color --- web/src/components/graph/SystemGraph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/graph/SystemGraph.tsx b/web/src/components/graph/SystemGraph.tsx index cfcd4a4ff..31d12ddf8 100644 --- a/web/src/components/graph/SystemGraph.tsx +++ b/web/src/components/graph/SystemGraph.tsx @@ -72,7 +72,7 @@ export function ThresholdBarGraph({ } else if (value >= threshold.warning) { return "#FF9966"; } else { - return (systemTheme || theme) == "dark" ? "#404040" : "#E5E5E5"; + return "#217930"; } }, ],