Make betters color in light mode

This commit is contained in:
Nicolas Mowen 2024-04-03 15:34:30 -06:00
parent 25f001bf47
commit ad9d115b67

View File

@ -56,7 +56,7 @@ export default function SystemGraph({
} else if (value >= threshold.warning) { } else if (value >= threshold.warning) {
return "#FF9966"; return "#FF9966";
} else { } else {
return "#404040"; return (systemTheme || theme) == "dark" ? "#404040" : "#E5E5E5";
} }
}, },
], ],