diff --git a/lib/utils/presence_extension.dart b/lib/utils/presence_extension.dart index c9ccc92cc..d3f4a274f 100644 --- a/lib/utils/presence_extension.dart +++ b/lib/utils/presence_extension.dart @@ -29,10 +29,10 @@ extension PresenceExtension on Presence { case PresenceType.online: return Colors.green; case PresenceType.offline: - return Colors.red; + return Colors.grey; case PresenceType.unavailable: default: - return Colors.grey; + return Colors.red; } } }