1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Use Gray instead of FromHex for grays

This commit is contained in:
Dean Herbert 2017-10-12 22:19:29 +09:00
parent 37fc69b9f7
commit c0d64bf409

View File

@ -31,10 +31,10 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Timeline
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
IconColour = OsuColour.FromHex("555"),
IconColour = OsuColour.Gray(0.35f),
IconHoverColour = Color4.White,
HoverColour = OsuColour.FromHex("3A3A3A"),
FlashColour = OsuColour.FromHex("555"),
HoverColour = OsuColour.Gray(0.25f),
FlashColour = OsuColour.Gray(0.5f),
Action = () => Action?.Invoke()
};