From 75de03bd88e0ea3f67bb558021ff4fe0c2ca7a41 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 17 Jan 2017 18:26:43 -0500 Subject: [PATCH] Use OsuColour for green text --- osu.Game/Screens/Select/FilterControl.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Screens/Select/FilterControl.cs b/osu.Game/Screens/Select/FilterControl.cs index ad15d75d4d..a6fb62945f 100644 --- a/osu.Game/Screens/Select/FilterControl.cs +++ b/osu.Game/Screens/Select/FilterControl.cs @@ -225,7 +225,6 @@ namespace osu.Game.Screens.Select { Font = @"Exo2.0-Bold", Text = "Sort results by", - Colour = new Color4(165, 204, 0, 255), TextSize = 14, Margin = new MarginPadding { Top = 5, Bottom = 5 }, }, @@ -237,7 +236,6 @@ namespace osu.Game.Screens.Select sortEllipsis = new TextAwesome { Icon = FontAwesome.fa_ellipsis_h, - Colour = new Color4(165, 204, 0, 255), TextSize = 14, Margin = new MarginPadding { Top = 5, Bottom = 5 }, Origin = Anchor.BottomLeft, @@ -252,6 +250,8 @@ namespace osu.Game.Screens.Select private void load(OsuColour colours) { groupsEllipsis.Colour = colours.Blue; + sortLabel.Colour = colours.GreenLight; + sortEllipsis.Colour = colours.GreenLight; } } }