diff --git a/lib/widgets/button_widget.dart b/lib/widgets/button_widget.dart index 3c9d50f..e6f1994 100644 --- a/lib/widgets/button_widget.dart +++ b/lib/widgets/button_widget.dart @@ -13,8 +13,8 @@ class ButtonWidget extends StatelessWidget { Widget build(BuildContext context) { return ElevatedButton( style: ElevatedButton.styleFrom( - foregroundColor: const Color.fromRGBO(250, 250, 250, 1), // text color - backgroundColor: disabled ? const Color.fromARGB(112, 13, 109, 253) : const Color(0xff0d6efd), + foregroundColor: const Color.fromRGBO(250, 250, 250, 1), + backgroundColor: disabled ? const Color.fromRGBO(13, 109, 253, 0.435) : const Color.fromRGBO(13, 109, 253, 0.8), elevation: disabled ? 0 : 4, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(8), // rounded corners