Adjusted colors

This commit is contained in:
2026-04-21 20:19:05 +02:00
parent 4322e75811
commit 0bad0862a7

View File

@@ -79,6 +79,7 @@ class _MatchTileState extends State<MatchTile> {
], ],
), ),
// Group Info
if (group != null) ...[ if (group != null) ...[
Row( Row(
children: [ children: [
@@ -121,7 +122,7 @@ class _MatchTileState extends State<MatchTile> {
// Game // Game
Container( Container(
decoration: BoxDecoration( decoration: BoxDecoration(
color: CustomTheme.primaryColor.withAlpha(200), color: CustomTheme.primaryColor.withAlpha(230),
borderRadius: const BorderRadius.only( borderRadius: const BorderRadius.only(
topLeft: Radius.circular(8), topLeft: Radius.circular(8),
bottomLeft: Radius.circular(8), bottomLeft: Radius.circular(8),
@@ -143,7 +144,7 @@ class _MatchTileState extends State<MatchTile> {
// Ruleset // Ruleset
Container( Container(
decoration: BoxDecoration( decoration: BoxDecoration(
color: CustomTheme.primaryColor.withAlpha(120), color: CustomTheme.primaryColor.withAlpha(140),
borderRadius: const BorderRadius.only( borderRadius: const BorderRadius.only(
topRight: Radius.circular(8), topRight: Radius.circular(8),
bottomRight: Radius.circular(8), bottomRight: Radius.circular(8),
@@ -168,6 +169,7 @@ class _MatchTileState extends State<MatchTile> {
const SizedBox(height: 12), const SizedBox(height: 12),
// Winner / In Progress Info
if (match.mvp.isNotEmpty) ...[ if (match.mvp.isNotEmpty) ...[
Container( Container(
padding: const EdgeInsets.symmetric( padding: const EdgeInsets.symmetric(
@@ -244,6 +246,7 @@ class _MatchTileState extends State<MatchTile> {
const SizedBox(height: 12), const SizedBox(height: 12),
], ],
// Players List
if (players.isNotEmpty && widget.compact == false) ...[ if (players.isNotEmpty && widget.compact == false) ...[
Text( Text(
loc.players, loc.players,