1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 15:33:35 +08:00

Fix chevron being too bright in most cases

This commit is contained in:
tadatomix
2025-10-07 01:21:31 +03:00
Unverified
parent 97c95de94a
commit 03bbbebbbc
@@ -154,6 +154,17 @@ namespace osu.Game.Screens.SelectV2
contentBackground.Colour = statusColour.Darken(1f);
glow.Colour = ColourInfo.GradientHorizontal(statusColour, statusColour.Opacity(0f));
switch (status)
{
case BeatmapOnlineStatus.Graveyard:
iconContainer.Colour = Color4.White;
break;
default:
iconContainer.Colour = colourProvider.Background5;
break;
}
starRatingText.Text = group.Title;
ColourInfo colour = ColourInfo.GradientHorizontal(statusColour.Darken(0.6f), statusColour.Darken(0.8f));