diff --git a/lib/game/view/widgets/round_count_display.dart b/lib/game/view/widgets/round_count_display.dart index 30135cd2..b8f67c26 100644 --- a/lib/game/view/widgets/round_count_display.dart +++ b/lib/game/view/widgets/round_count_display.dart @@ -21,7 +21,7 @@ class RoundCountDisplay extends StatelessWidget { Text( l10n.rounds, style: AppTextStyle.subtitle1.copyWith( - color: AppColors.orange, + color: AppColors.yellow, ), ), const SizedBox(width: 8), @@ -53,7 +53,7 @@ class RoundIndicator extends StatelessWidget { @override Widget build(BuildContext context) { - final color = isActive ? AppColors.orange : AppColors.orange.withAlpha(128); + final color = isActive ? AppColors.yellow : AppColors.yellow.withAlpha(128); const size = 8.0; return Padding( diff --git a/lib/game/view/widgets/score_view.dart b/lib/game/view/widgets/score_view.dart index 288ea05c..40b33c35 100644 --- a/lib/game/view/widgets/score_view.dart +++ b/lib/game/view/widgets/score_view.dart @@ -59,7 +59,7 @@ class _ScoreDisplay extends StatelessWidget { Text( l10n.score.toLowerCase(), style: AppTextStyle.subtitle1.copyWith( - color: AppColors.orange, + color: AppColors.yellow, ), ), const _ScoreText(), diff --git a/lib/theme/app_colors.dart b/lib/theme/app_colors.dart index 2d3899a6..a12d3edc 100644 --- a/lib/theme/app_colors.dart +++ b/lib/theme/app_colors.dart @@ -7,7 +7,9 @@ abstract class AppColors { static const Color darkBlue = Color(0xFF0C32A4); - static const Color orange = Color(0xFFFFEE02); + static const Color yellow = Color(0xFFFFEE02); + + static const Color orange = Color(0xFFE5AB05); static const Color blue = Color(0xFF4B94F6); diff --git a/packages/platform_helper/pubspec.yaml b/packages/platform_helper/pubspec.yaml index d24526fc..edff346a 100644 --- a/packages/platform_helper/pubspec.yaml +++ b/packages/platform_helper/pubspec.yaml @@ -1,5 +1,5 @@ name: platform_helper -description: A Very Good Project created by Very Good CLI. +description: Platform helper for Pinball application. version: 1.0.0+1 publish_to: none diff --git a/test/game/view/widgets/round_count_display_test.dart b/test/game/view/widgets/round_count_display_test.dart index dfa28869..8f5f7f13 100644 --- a/test/game/view/widgets/round_count_display_test.dart +++ b/test/game/view/widgets/round_count_display_test.dart @@ -108,7 +108,7 @@ void main() { expect( find.byWidgetPredicate( - (widget) => widget is Container && widget.color == AppColors.orange, + (widget) => widget is Container && widget.color == AppColors.yellow, ), findsOneWidget, ); @@ -125,7 +125,7 @@ void main() { find.byWidgetPredicate( (widget) => widget is Container && - widget.color == AppColors.orange.withAlpha(128), + widget.color == AppColors.yellow.withAlpha(128), ), findsOneWidget, );