style: update support chat bubble colors to use AppColors.accentOrange

This commit is contained in:
pradeepkumar
2026-04-08 19:12:43 +05:30
parent 0c52b18971
commit 8474d41002

View File

@@ -233,7 +233,7 @@ class _SupportChatScreenState extends ConsumerState<SupportChatScreen> {
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<SupportChatScreen> {
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),