UI: Use "success" theme color for low infiltration difficulty instead of "primary" (#2693)

This commit is contained in:
catloversg
2026-04-28 13:55:35 +07:00
committed by GitHub
parent dbb20c1526
commit 750f79adf3
+1 -1
View File
@@ -48,7 +48,7 @@ function coloredArrow(difficulty: number): JSX.Element {
} else {
return (
<>
{arrowPart(Settings.theme.primary, cappedDifficulty * 13)}
{arrowPart(Settings.theme.success, cappedDifficulty * 13)}
{arrowPart(Settings.theme.warning, (cappedDifficulty - 1) * 13)}
{arrowPart(Settings.theme.warning, (cappedDifficulty - 2) * 13)}
{arrowPart(Settings.theme.error, (cappedDifficulty - 3) * 26)}