@@ -74,7 +74,10 @@ export type MessageRepliesPropsWithContext<
7474 MessagesContextValue < At , Ch , Co , Ev , Me , Re , Us > ,
7575 'MessageRepliesAvatars'
7676 > &
77- Pick < TranslationContextValue , 't' > & { noBorder ?: boolean } ;
77+ Pick < TranslationContextValue , 't' > & {
78+ noBorder ?: boolean ;
79+ repliesCurveColor ?: string ;
80+ } ;
7881
7982const MessageRepliesWithContext = <
8083 At extends UnknownType = DefaultAttachmentType ,
@@ -94,13 +97,14 @@ const MessageRepliesWithContext = <
9497 noBorder,
9598 onLongPress,
9699 onOpenThread,
100+ repliesCurveColor,
97101 t,
98102 threadList,
99103 } = props ;
100104
101105 const {
102106 theme : {
103- colors : { accent_blue, grey_whisper } ,
107+ colors : { accent_blue } ,
104108 messageSimple : {
105109 replies : { container, leftCurve, messageRepliesText, rightCurve } ,
106110 } ,
@@ -116,7 +120,7 @@ const MessageRepliesWithContext = <
116120 { ! noBorder && (
117121 < View
118122 style = { [
119- { borderColor : grey_whisper } ,
123+ { borderColor : repliesCurveColor } ,
120124 styles . messageRepliesCurve ,
121125 styles . leftMessageRepliesCurve ,
122126 leftCurve ,
@@ -152,7 +156,7 @@ const MessageRepliesWithContext = <
152156 { ! noBorder && (
153157 < View
154158 style = { [
155- { borderColor : grey_whisper } ,
159+ { borderColor : repliesCurveColor } ,
156160 styles . messageRepliesCurve ,
157161 styles . rightMessageRepliesCurve ,
158162 rightCurve ,
0 commit comments