1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 00:02:54 +08:00

Change grouping title colours to match white background

This commit is contained in:
Dean Herbert 2018-10-18 02:17:54 +09:00
parent 1a62283cb4
commit 7a753ad9e2

View File

@ -4,6 +4,7 @@
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using OpenTK.Graphics;
namespace osu.Game.Tournament.Screens.Ladder.Components
{
@ -21,6 +22,7 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
new OsuSpriteText
{
Text = grouping.Description.Value.ToUpper(),
Colour = Color4.Black,
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre
},
@ -28,6 +30,7 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
{
Text = ((losers ? "Losers " : "") + grouping.Name).ToUpper(),
Font = "Exo2.0-Bold",
Colour = Color4.Black,
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre
},