style: update support chat bubble colors to use AppColors.accentOrange
This commit is contained in:
@@ -233,7 +233,7 @@ class _SupportChatScreenState extends ConsumerState<SupportChatScreen> {
|
|||||||
return Container(
|
return Container(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 14),
|
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 14),
|
||||||
decoration: const BoxDecoration(
|
decoration: const BoxDecoration(
|
||||||
color: Color(0xFF648188),
|
color: AppColors.accentOrange,
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
@@ -457,7 +457,7 @@ class _SupportChatScreenState extends ConsumerState<SupportChatScreen> {
|
|||||||
maxWidth: MediaQuery.of(context).size.width * 0.75,
|
maxWidth: MediaQuery.of(context).size.width * 0.75,
|
||||||
),
|
),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: isOwn ? const Color(0xFF648188) : Colors.white,
|
color: isOwn ? AppColors.accentOrange : Colors.white,
|
||||||
borderRadius: BorderRadius.only(
|
borderRadius: BorderRadius.only(
|
||||||
topLeft: const Radius.circular(15),
|
topLeft: const Radius.circular(15),
|
||||||
topRight: const Radius.circular(15),
|
topRight: const Radius.circular(15),
|
||||||
|
|||||||
Reference in New Issue
Block a user