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"; } }, ],