35 lines
		
	
	
		
			763 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			763 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:flutter/cupertino.dart';
 | |
| 
 | |
| Color white = CupertinoColors.white;
 | |
| Color primaryColor = CupertinoColors.systemGreen;
 | |
| Color backgroundColor = const Color(0xFF101010);
 | |
| Color backgroundTintColor = CupertinoColors.darkBackgroundGray;
 | |
| 
 | |
| TextStyle modeTitle = TextStyle(
 | |
|   color: primaryColor,
 | |
|   fontSize: 20,
 | |
|   fontWeight: FontWeight.bold,
 | |
| );
 | |
| 
 | |
| const TextStyle modeDescription = TextStyle(
 | |
|   fontSize: 16,
 | |
| );
 | |
| 
 | |
| TextStyle createGameTitle = TextStyle(
 | |
|   fontSize: 20,
 | |
|   color: primaryColor,
 | |
|   fontWeight: FontWeight.bold,
 | |
| );
 | |
| 
 | |
| TextStyle roundTitle = TextStyle(
 | |
|   fontSize: 60,
 | |
|   color: CupertinoColors.white,
 | |
|   fontWeight: FontWeight.bold,
 | |
| );
 | |
| 
 | |
| TextStyle roundPlayers = TextStyle(
 | |
|   fontSize: 20,
 | |
|   color: CupertinoColors.white,
 | |
|   fontWeight: FontWeight.bold,
 | |
| );
 | 
