From 0bad0862a7467c6fcd6babccfbb2c76ecd7069a8 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Tue, 21 Apr 2026 20:19:05 +0200 Subject: [PATCH] Adjusted colors --- lib/presentation/widgets/tiles/match_tile.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/presentation/widgets/tiles/match_tile.dart b/lib/presentation/widgets/tiles/match_tile.dart index eb82927..08c2fdc 100644 --- a/lib/presentation/widgets/tiles/match_tile.dart +++ b/lib/presentation/widgets/tiles/match_tile.dart @@ -79,6 +79,7 @@ class _MatchTileState extends State { ], ), + // Group Info if (group != null) ...[ Row( children: [ @@ -121,7 +122,7 @@ class _MatchTileState extends State { // Game Container( decoration: BoxDecoration( - color: CustomTheme.primaryColor.withAlpha(200), + color: CustomTheme.primaryColor.withAlpha(230), borderRadius: const BorderRadius.only( topLeft: Radius.circular(8), bottomLeft: Radius.circular(8), @@ -143,7 +144,7 @@ class _MatchTileState extends State { // Ruleset Container( decoration: BoxDecoration( - color: CustomTheme.primaryColor.withAlpha(120), + color: CustomTheme.primaryColor.withAlpha(140), borderRadius: const BorderRadius.only( topRight: Radius.circular(8), bottomRight: Radius.circular(8), @@ -168,6 +169,7 @@ class _MatchTileState extends State { const SizedBox(height: 12), + // Winner / In Progress Info if (match.mvp.isNotEmpty) ...[ Container( padding: const EdgeInsets.symmetric( @@ -244,6 +246,7 @@ class _MatchTileState extends State { const SizedBox(height: 12), ], + // Players List if (players.isNotEmpty && widget.compact == false) ...[ Text( loc.players,