diff --git a/lib/components/forgot_pass_body.dart b/lib/components/forgot_pass_body.dart index 9e7b3f3..fe02014 100644 --- a/lib/components/forgot_pass_body.dart +++ b/lib/components/forgot_pass_body.dart @@ -53,13 +53,13 @@ class _ForgotPassBodyState extends State { ElevatedButton( style: ButtonStyle( foregroundColor: - MaterialStateProperty.all(Colors.blue.shade800), + MaterialStateProperty.all(const Color(0xff8B0000)), backgroundColor: - MaterialStateProperty.all(Colors.blue.shade800), + MaterialStateProperty.all(const Color(0xff8B0000)), shape: MaterialStateProperty.all( RoundedRectangleBorder( borderRadius: BorderRadius.circular(18.0), - side: const BorderSide(color: Colors.blue)))), + side: const BorderSide(color: Colors.red)))), onPressed: () { Navigator.push(context, MaterialPageRoute(builder: (context) => const Otp())); @@ -72,13 +72,13 @@ class _ForgotPassBodyState extends State { ElevatedButton( style: ButtonStyle( foregroundColor: - MaterialStateProperty.all(Colors.blue.shade800), + MaterialStateProperty.all(const Color(0xff8B0000)), backgroundColor: - MaterialStateProperty.all(Colors.blue.shade800), + MaterialStateProperty.all(const Color(0xff8B0000)), shape: MaterialStateProperty.all( RoundedRectangleBorder( borderRadius: BorderRadius.circular(18.0), - side: const BorderSide(color: Colors.blue)))), + side: const BorderSide(color: Colors.red)))), onPressed: () { Navigator.push(context, MaterialPageRoute(builder: (context) => const Login()));