From 750f79adf391d3de62a2e3976961431b332d38bd Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Tue, 28 Apr 2026 13:55:35 +0700 Subject: [PATCH] UI: Use "success" theme color for low infiltration difficulty instead of "primary" (#2693) --- src/Infiltration/ui/Intro.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infiltration/ui/Intro.tsx b/src/Infiltration/ui/Intro.tsx index 34bf4e842..b7d20dd4e 100644 --- a/src/Infiltration/ui/Intro.tsx +++ b/src/Infiltration/ui/Intro.tsx @@ -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)}