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

Use OsuColour for green text

This commit is contained in:
Drew DeVault 2017-01-17 18:26:43 -05:00
parent 46e7bcef8c
commit 75de03bd88

View File

@ -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;
}
}
}