1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:07:25 +08:00

Reduce the hover lightening effect slightly

This commit is contained in:
Dean Herbert 2022-04-26 18:11:03 +09:00
parent 4bc4ff179a
commit cd197a9380

View File

@ -175,8 +175,8 @@ namespace osu.Game.Graphics.UserInterface
}
else if (IsHovered)
{
colourDark = colourDark.Lighten(0.3f);
colourLight = colourLight.Lighten(0.3f);
colourDark = colourDark.Lighten(0.2f);
colourLight = colourLight.Lighten(0.2f);
}
background.FadeColour(colourDark, 150, Easing.OutQuint);