diff --git a/lib/service/notifying.dart b/lib/service/notifying.dart index 7c4dca1..3d51154 100644 --- a/lib/service/notifying.dart +++ b/lib/service/notifying.dart @@ -10,10 +10,11 @@ class Notifying { }) { ScaffoldMessenger.of(context).showSnackBar( SnackBar( + backgroundColor: Theme.of(context).colorScheme.error, content: Text( text, style: isError - ? TextStyle(color: Theme.of(context).colorScheme.error) + ? TextStyle(color: Theme.of(context).colorScheme.onError) : null, ), ),