Actions: Auto-formatting [skip ci]

This commit is contained in:
GitHub Actions
2025-04-27 14:19:45 +00:00
parent 1b79aac202
commit abb3db5f05
8 changed files with 76 additions and 76 deletions

View File

@@ -2,7 +2,7 @@ import 'package:flutter/cupertino.dart';
abstract class Styles {
static Color primaryColor = CupertinoColors.systemGreen;
static Color backgroundColor = Color(0xFF080808);
static Color backgroundColor = const Color(0xFF080808);
static TextStyle modeTitle = TextStyle(
color: primaryColor,
@@ -20,13 +20,13 @@ abstract class Styles {
fontWeight: FontWeight.bold,
);
static TextStyle roundTitle = TextStyle(
static TextStyle roundTitle = const TextStyle(
fontSize: 60,
color: CupertinoColors.white,
fontWeight: FontWeight.bold,
);
static TextStyle roundPlayers = TextStyle(
static TextStyle roundPlayers = const TextStyle(
fontSize: 20,
color: CupertinoColors.white,
fontWeight: FontWeight.bold,

View File

@@ -21,13 +21,13 @@ TextStyle createGameTitle = TextStyle(
fontWeight: FontWeight.bold,
);
TextStyle roundTitle = TextStyle(
TextStyle roundTitle = const TextStyle(
fontSize: 60,
color: CupertinoColors.white,
fontWeight: FontWeight.bold,
);
TextStyle roundPlayers = TextStyle(
TextStyle roundPlayers = const TextStyle(
fontSize: 20,
color: CupertinoColors.white,
fontWeight: FontWeight.bold,