From 796018cae214536adebe02e86eb1e66cf334f830 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 15 Oct 2022 16:31:42 +0200 Subject: [PATCH] chore: Follow up chat list color --- lib/pages/chat_list/chat_list_item.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat_list/chat_list_item.dart b/lib/pages/chat_list/chat_list_item.dart index 6f92b0078..3b1154e05 100644 --- a/lib/pages/chat_list/chat_list_item.dart +++ b/lib/pages/chat_list/chat_list_item.dart @@ -291,7 +291,8 @@ class ChatListItem extends StatelessWidget { overflow: TextOverflow.ellipsis, style: TextStyle( fontWeight: unread ? FontWeight.w600 : null, - color: Theme.of(context).colorScheme.onBackground, + color: + Theme.of(context).colorScheme.onSurfaceVariant, decoration: room.lastEvent?.redacted == true ? TextDecoration.lineThrough : null,