feat: cleaning code
This commit is contained in:
@@ -20,7 +20,7 @@ class GameBackground extends StatelessWidget {
|
||||
gradient: RadialGradient(
|
||||
center: Alignment(0, -0.4),
|
||||
radius: 1.3,
|
||||
colors: [Color(0xFF5A0F1E), Color(0xFF240108)],
|
||||
colors: [Color(0xFF5A0F1E), AppColors.bgDark],
|
||||
stops: [0.0, 1.0],
|
||||
),
|
||||
),
|
||||
@@ -33,7 +33,7 @@ class GameBackground extends StatelessWidget {
|
||||
gradient: RadialGradient(
|
||||
center: Alignment(0, -1.1),
|
||||
radius: 1.0,
|
||||
colors: [Color(0x33E9B949), Color(0x00000000)],
|
||||
colors: [AppColors.goldFaint, Color(0x00000000)],
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -65,7 +65,7 @@ class GamePanel extends StatelessWidget {
|
||||
gradient: const LinearGradient(
|
||||
begin: Alignment.topCenter,
|
||||
end: Alignment.bottomCenter,
|
||||
colors: [Color(0xFF6E1322), Color(0xFF3A0A12)],
|
||||
colors: [Color(0xFF6E1322), AppColors.bg],
|
||||
),
|
||||
borderRadius: BorderRadius.circular(radius),
|
||||
border: Border.all(color: AppColors.gold, width: 2),
|
||||
|
||||
Reference in New Issue
Block a user