Skip to content

Commit cfa7569

Browse files
committed
Changing every white text to black for tournament mode
1 parent 1add946 commit cfa7569

File tree

7 files changed

+14
-5
lines changed

7 files changed

+14
-5
lines changed

osu.Game.Tournament/Components/DrawableTeamWithPlayers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ TournamentSpriteText createPlayerText(TournamentUser p) =>
6565
{
6666
Text = p.Username,
6767
Font = OsuFont.Torus.With(size: 24, weight: FontWeight.SemiBold),
68-
Colour = Color4.White,
68+
Colour = Color4.Black,
6969
};
7070
}
7171
}

osu.Game.Tournament/Components/RoundDisplay.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public RoundDisplay(TournamentMatch match)
3535
Origin = Anchor.TopLeft,
3636
Text = match.Round.Value?.Name.Value ?? "Unknown Round",
3737
Font = OsuFont.Torus.With(size: 26, weight: FontWeight.SemiBold)
38+
Colour = OsuColour.Gray(0.1f)
3839
},
3940
}
4041
}

osu.Game.Tournament/Components/SongBar.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ private void refreshContent()
199199
Anchor = Anchor.Centre,
200200
Origin = Anchor.Centre,
201201
Direction = FillDirection.Vertical,
202+
Colour = Color4.Black,
202203
Children = new Drawable[]
203204
{
204205
new DiffPiece(stats),
@@ -212,6 +213,7 @@ private void refreshContent()
212213
Anchor = Anchor.Centre,
213214
Origin = Anchor.Centre,
214215
Direction = FillDirection.Vertical,
216+
Colour = Color4.Black,
215217
Children = new Drawable[]
216218
{
217219
new DiffPiece(("Length", length.ToFormattedDuration().ToString())),

osu.Game.Tournament/Screens/Schedule/ScheduleScreen.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ private void refresh()
200200
Origin = Anchor.CentreLeft,
201201
Text = currentMatch.Value.Team1.Value?.FullName + " vs " + currentMatch.Value.Team2.Value?.FullName,
202202
Font = OsuFont.Torus.With(size: 24, weight: FontWeight.SemiBold)
203+
Colour = Color4.Black
203204
},
204205
new FillFlowContainer
205206
{
@@ -212,6 +213,7 @@ private void refresh()
212213
new ScheduleMatchDate(currentMatch.Value.Date.Value)
213214
{
214215
Font = OsuFont.Torus.With(size: 24, weight: FontWeight.Regular)
216+
Colour = Color4.Black
215217
}
216218
}
217219
},
@@ -240,7 +242,7 @@ public ScheduleMatch(TournamentMatch match, bool showTimestamp = true)
240242
{
241243
Anchor = Anchor.TopRight,
242244
Origin = Anchor.TopLeft,
243-
Colour = OsuColour.Gray(0.7f),
245+
Colour = Color4.Black,
244246
Alpha = conditional ? 0.6f : 1,
245247
Font = OsuFont.Torus,
246248
Margin = new MarginPadding { Horizontal = 10, Vertical = 5 },
@@ -249,7 +251,7 @@ public ScheduleMatch(TournamentMatch match, bool showTimestamp = true)
249251
{
250252
Anchor = Anchor.BottomRight,
251253
Origin = Anchor.BottomLeft,
252-
Colour = OsuColour.Gray(0.7f),
254+
Colour = Color4.Black,
253255
Alpha = conditional ? 0.6f : 1,
254256
Margin = new MarginPadding { Horizontal = 10, Vertical = 5 },
255257
Text = match.Date.Value.ToUniversalTime().ToString("HH:mm UTC") + (conditional ? " (conditional)" : "")

osu.Game.Tournament/Screens/TeamWin/TeamWinScreen.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ private void update() => Scheduler.AddOnce(() =>
112112
{
113113
Text = "WINNER",
114114
Font = OsuFont.Torus.With(size: 100, weight: FontWeight.Bold),
115+
Colour = Color4.Black,
115116
Margin = new MarginPadding { Bottom = 50 },
116117
},
117118
new DrawableTeamWithPlayers(match.Winner, match.WinnerColour)

osu.Game.Tournament/TournamentGameBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public override void SetHost(GameHost host)
5858
base.SetHost(host);
5959

6060
if (host.Window != null)
61-
host.Window.Title = $"{Name} [tournament client]";
61+
host.Window.Title = $"{Name} [Conyoh Cup 6]";
6262
}
6363

6464
private TournamentSpriteText initialisationText = null!;

osu.Game/Screens/Play/HUD/MatchScoreDisplay.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,18 +88,21 @@ private void load(OsuColour colours)
8888
{
8989
Score1Text = new MatchScoreCounter
9090
{
91+
Colour = OsuColour.Gray(0.1f),
9192
Anchor = Anchor.TopCentre,
92-
Origin = Anchor.TopCentre
93+
Origin = Anchor.TopCentre,
9394
},
9495
Score2Text = new MatchScoreCounter
9596
{
97+
Colour = OsuColour.Gray(0.1f),
9698
Anchor = Anchor.TopCentre,
9799
Origin = Anchor.TopCentre
98100
},
99101
}
100102
},
101103
scoreDiffText = new MatchScoreDiffCounter
102104
{
105+
Colour = OsuColour.Gray(0.1f),
103106
Anchor = Anchor.TopCentre,
104107
Margin = new MarginPadding
105108
{

0 commit comments

Comments
 (0)