From c0d64bf409b1e7afb9868a8040459d7e1e30fa21 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 12 Oct 2017 22:19:29 +0900 Subject: [PATCH] Use Gray instead of FromHex for grays --- .../Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game/Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs b/osu.Game/Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs index 8eec53c85f..0c6fc5d133 100644 --- a/osu.Game/Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs +++ b/osu.Game/Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs @@ -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() };