diff --git a/package/src/components/Message/MessageSimple/MessageContent.tsx b/package/src/components/Message/MessageSimple/MessageContent.tsx index 4a6a20fe9..977d2c455 100644 --- a/package/src/components/Message/MessageSimple/MessageContent.tsx +++ b/package/src/components/Message/MessageSimple/MessageContent.tsx @@ -149,7 +149,7 @@ const MessageContentWithContext = < const { theme: { - colors: { blue_alice, grey_gainsboro, grey_whisper, transparent, white }, + colors: { blue_alice, grey_whisper, light_gray, transparent, white_snow }, messageSimple: { content: { container: { @@ -214,20 +214,20 @@ const MessageContentWithContext = < const isMessageReceivedOrErrorType = !isMyMessage || error; - let backgroundColor = senderMessageBackgroundColor || grey_gainsboro; + let backgroundColor = senderMessageBackgroundColor ?? light_gray; if (onlyEmojis && !message.quoted_message) { backgroundColor = transparent; } else if (otherAttachments.length) { if (otherAttachments[0].type === 'giphy') { - backgroundColor = message.quoted_message ? grey_gainsboro : transparent; + backgroundColor = message.quoted_message ? light_gray : transparent; } else { backgroundColor = blue_alice; } } else if (isMessageReceivedOrErrorType) { - backgroundColor = receiverMessageBackgroundColor || white; + backgroundColor = receiverMessageBackgroundColor ?? white_snow; } - const repliesCurveColor = !isMessageReceivedOrErrorType ? backgroundColor : grey_gainsboro; + const repliesCurveColor = !isMessageReceivedOrErrorType ? backgroundColor : light_gray; const getBorderRadius = () => { // enum('top', 'middle', 'bottom', 'single') diff --git a/package/src/components/Message/MessageSimple/MessageReplies.tsx b/package/src/components/Message/MessageSimple/MessageReplies.tsx index c98a82df0..9f3092bf2 100644 --- a/package/src/components/Message/MessageSimple/MessageReplies.tsx +++ b/package/src/components/Message/MessageSimple/MessageReplies.tsx @@ -32,7 +32,7 @@ const styles = StyleSheet.create({ }, messageRepliesCurve: { borderTopWidth: 0, - borderWidth: 1, + borderWidth: 2, height: 16, width: 16, }, @@ -181,6 +181,7 @@ const areEqual =