diff --git a/lib/src/message_actions_modal.dart b/lib/src/message_actions_modal.dart index c5903ce3..adfe3cdd 100644 --- a/lib/src/message_actions_modal.dart +++ b/lib/src/message_actions_modal.dart @@ -251,7 +251,7 @@ class MessageActionsModal extends StatelessWidget { style: Theme.of(context).textTheme.headline6, ), leading: StreamSvgIcon.circle_up( - color: StreamChatTheme.of(context).accentColor, + color: StreamChatTheme.of(context).colorTheme.accentBlue, ), onTap: () { Navigator.pop(context); diff --git a/lib/src/message_widget.dart b/lib/src/message_widget.dart index afb3261d..61c6bf5c 100644 --- a/lib/src/message_widget.dart +++ b/lib/src/message_widget.dart @@ -816,7 +816,7 @@ class _MessageWidgetState extends State { Text( widget.readList.length.toString(), style: style.copyWith( - color: StreamChatTheme.of(context).accentColor, + color: StreamChatTheme.of(context).colorTheme.accentBlue, ), ), SizedBox(width: 2),