feat: cleaning code

This commit is contained in:
2026-06-24 22:56:32 +03:30
parent e73333344f
commit e8cde8e1f7
18 changed files with 99 additions and 88 deletions
+3 -3
View File
@@ -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),