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),