From ad9d115b67d6e2d5c4d14ad0e869221bd448634d Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 3 Apr 2024 15:34:30 -0600 Subject: [PATCH] Make betters color in light mode --- 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 87be8f5a6..107508326 100644 --- a/web/src/components/graph/SystemGraph.tsx +++ b/web/src/components/graph/SystemGraph.tsx @@ -56,7 +56,7 @@ export default function SystemGraph({ } else if (value >= threshold.warning) { return "#FF9966"; } else { - return "#404040"; + return (systemTheme || theme) == "dark" ? "#404040" : "#E5E5E5"; } }, ],