From 8474d410022a70ef74ffe9c8b154a838e703c784 Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Wed, 8 Apr 2026 19:12:43 +0530 Subject: [PATCH] style: update support chat bubble colors to use AppColors.accentOrange --- .../presentation/screens/support_chat_screen.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/features/support_chat/presentation/screens/support_chat_screen.dart b/lib/features/support_chat/presentation/screens/support_chat_screen.dart index 31c07d8..683d05c 100644 --- a/lib/features/support_chat/presentation/screens/support_chat_screen.dart +++ b/lib/features/support_chat/presentation/screens/support_chat_screen.dart @@ -233,7 +233,7 @@ class _SupportChatScreenState extends ConsumerState { return Container( padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 14), decoration: const BoxDecoration( - color: Color(0xFF648188), + color: AppColors.accentOrange, ), child: Row( children: [ @@ -457,7 +457,7 @@ class _SupportChatScreenState extends ConsumerState { maxWidth: MediaQuery.of(context).size.width * 0.75, ), decoration: BoxDecoration( - color: isOwn ? const Color(0xFF648188) : Colors.white, + color: isOwn ? AppColors.accentOrange : Colors.white, borderRadius: BorderRadius.only( topLeft: const Radius.circular(15), topRight: const Radius.circular(15),