From 5e937ca266b07cd0b354490935cea3cc080933d1 Mon Sep 17 00:00:00 2001 From: krille-chan Date: Wed, 5 Feb 2025 20:51:14 +0100 Subject: [PATCH] chore: Follow up bubble color --- lib/pages/chat/chat_app_bar_title.dart | 2 +- lib/pages/chat/chat_view.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pages/chat/chat_app_bar_title.dart b/lib/pages/chat/chat_app_bar_title.dart index 3b840dbe4..68eb56996 100644 --- a/lib/pages/chat/chat_app_bar_title.dart +++ b/lib/pages/chat/chat_app_bar_title.dart @@ -23,7 +23,7 @@ class ChatAppBarTitle extends StatelessWidget { return Text( controller.selectedEvents.length.toString(), style: TextStyle( - color: Theme.of(context).secondaryBubbleColor, + color: Theme.of(context).colorScheme.tertiary, ), ); } diff --git a/lib/pages/chat/chat_view.dart b/lib/pages/chat/chat_view.dart index 59fbd9138..6c63441e8 100644 --- a/lib/pages/chat/chat_view.dart +++ b/lib/pages/chat/chat_view.dart @@ -179,7 +179,7 @@ class ChatView extends StatelessWidget { actionsIconTheme: IconThemeData( color: controller.selectedEvents.isEmpty ? null - : theme.secondaryBubbleColor, + : theme.colorScheme.tertiary, ), automaticallyImplyLeading: false, leading: controller.selectMode @@ -187,7 +187,7 @@ class ChatView extends StatelessWidget { icon: const Icon(Icons.close), onPressed: controller.clearSelectedEvents, tooltip: L10n.of(context).close, - color: theme.secondaryBubbleColor, + color: theme.colorScheme.tertiary, ) : FluffyThemes.isColumnMode(context) ? null