@@ -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)" : "" )
0 commit comments