1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 16:41:43 +08:00

Use OsuColour for green text

This commit is contained in:
Drew DeVault
2017-01-17 18:26:43 -05:00
Unverified
parent 46e7bcef8c
commit 75de03bd88
+2 -2
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;
}
}
}