diff --git a/lib/pages/profile_screen/widgets/ok_button_widget.dart b/lib/pages/profile_screen/widgets/ok_button_widget.dart index 6dbaad7..11d1720 100644 --- a/lib/pages/profile_screen/widgets/ok_button_widget.dart +++ b/lib/pages/profile_screen/widgets/ok_button_widget.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:drifter/theme/app_colors.dart'; +import 'package:flutter/material.dart'; class OkButton extends StatelessWidget { const OkButton({ @@ -16,7 +16,7 @@ class OkButton extends StatelessWidget { return ElevatedButton( onPressed: onPressed, style: ElevatedButton.styleFrom( - backgroundColor: AppColors.mainDarkBlue, + backgroundColor: AppColors.background, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(8), ),