diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index fb00d5267..7413bbfe5 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -138,7 +138,7 @@ const ActionSheet = React.memo( handleComponent={renderHandle} enablePanDownToClose style={{ ...styles.container, ...bottomSheet }} - backgroundStyle={{ backgroundColor: colors.focusedBackground }} + backgroundStyle={{ backgroundColor: colors.backgroundColor }} onChange={index => index === -1 && onClose()} {...androidTablet}> diff --git a/app/containers/ActionSheet/BottomSheetContent.tsx b/app/containers/ActionSheet/BottomSheetContent.tsx index 6c6e6e979..84cac5e58 100644 --- a/app/containers/ActionSheet/BottomSheetContent.tsx +++ b/app/containers/ActionSheet/BottomSheetContent.tsx @@ -24,7 +24,7 @@ const BottomSheetContent = React.memo(({ options, hasCancel, hide, children }: I hasCancel ? ( @@ -135,12 +135,12 @@ const Header = React.memo(({ handleReaction, server, message, isMasterDetail }: const renderFooter = () => ; return ( - + { style={[ styles.mentionItem, { - backgroundColor: themes[theme].auxiliaryBackground, + backgroundColor: themes[theme].backgroundColor, borderTopColor: themes[theme].separatorColor } ]} diff --git a/app/containers/MessageBox/Mentions/MentionItem.tsx b/app/containers/MessageBox/Mentions/MentionItem.tsx index 500ca8681..6923231b0 100644 --- a/app/containers/MessageBox/Mentions/MentionItem.tsx +++ b/app/containers/MessageBox/Mentions/MentionItem.tsx @@ -90,7 +90,7 @@ const MentionItem = ({ item, trackingType }: IMessageBoxMentionItem) => { style={[ styles.mentionItem, { - backgroundColor: themes[theme].auxiliaryBackground, + backgroundColor: themes[theme].backgroundColor, borderTopColor: themes[theme].separatorColor } ]} diff --git a/app/containers/MessageBox/Mentions/index.tsx b/app/containers/MessageBox/Mentions/index.tsx index a27ebe41e..61531fc3a 100644 --- a/app/containers/MessageBox/Mentions/index.tsx +++ b/app/containers/MessageBox/Mentions/index.tsx @@ -25,7 +25,7 @@ const Mentions = React.memo( return ( ( 0} loading={loading} /> )} diff --git a/app/containers/MessageBox/ReplyPreview.tsx b/app/containers/MessageBox/ReplyPreview.tsx index a16e51cbc..e042301dd 100644 --- a/app/containers/MessageBox/ReplyPreview.tsx +++ b/app/containers/MessageBox/ReplyPreview.tsx @@ -65,7 +65,7 @@ const ReplyPreview = React.memo( const time = moment(message.ts).format(Message_TimeFormat); return ( - + {useRealName ? message.u?.name : message.u?.username} diff --git a/app/containers/MessageBox/index.tsx b/app/containers/MessageBox/index.tsx index 107edd64d..26991513a 100644 --- a/app/containers/MessageBox/index.tsx +++ b/app/containers/MessageBox/index.tsx @@ -1156,7 +1156,7 @@ class MessageBox extends Component { style={[ styles.textArea, { backgroundColor: themes[theme].messageboxBackground }, - !recording && editing && { backgroundColor: themes[theme].chatComponentBackground } + !recording && editing && { backgroundColor: themes[theme].statusBackgroundWarning } ]} testID='messagebox'> {textInputAndButtons} diff --git a/app/containers/RoomItem/Tag.tsx b/app/containers/RoomItem/Tag.tsx index 68b2b444b..8bceb4339 100644 --- a/app/containers/RoomItem/Tag.tsx +++ b/app/containers/RoomItem/Tag.tsx @@ -15,7 +15,7 @@ const Tag = React.memo(({ name, testID }: ITag) => { return ( - + {name} diff --git a/app/containers/RoomItem/Touchable.tsx b/app/containers/RoomItem/Touchable.tsx index 7a5fa0959..92f96a02f 100644 --- a/app/containers/RoomItem/Touchable.tsx +++ b/app/containers/RoomItem/Touchable.tsx @@ -224,7 +224,7 @@ const Touchable = ({ theme={theme} testID={testID} style={{ - backgroundColor: isFocused ? colors.chatComponentBackground : colors.backgroundColor + backgroundColor: isFocused ? colors.buttonBackgroundSecondaryDefault : colors.backgroundColor }}> {children} diff --git a/app/containers/SafeAreaView.tsx b/app/containers/SafeAreaView.tsx index 74a40ef05..12c2f930d 100644 --- a/app/containers/SafeAreaView.tsx +++ b/app/containers/SafeAreaView.tsx @@ -23,7 +23,7 @@ const SafeAreaView = React.memo(({ style, children, vertical = true, ...props }: const { theme } = useTheme(); return ( {children} diff --git a/app/containers/ServerItem/index.tsx b/app/containers/ServerItem/index.tsx index fe9adfadd..1f6846b80 100644 --- a/app/containers/ServerItem/index.tsx +++ b/app/containers/ServerItem/index.tsx @@ -28,9 +28,9 @@ const ServerItem = React.memo(({ item, onPress, onLongPress, hasCheck }: IServer onPress={onPress} onLongPress={() => onLongPress?.()} testID={`rooms-list-header-server-${item.id}`} - android_ripple={{ color: themes[theme].bannerBackground }} + android_ripple={{ color: themes[theme].buttonBackgroundSecondaryPress }} style={({ pressed }: { pressed: boolean }) => ({ - backgroundColor: isIOS && pressed ? themes[theme].bannerBackground : themes[theme].backgroundColor + backgroundColor: isIOS && pressed ? themes[theme].buttonBackgroundSecondaryPress : themes[theme].backgroundColor })}> {item.iconURL ? ( diff --git a/app/containers/TwoFactor/index.tsx b/app/containers/TwoFactor/index.tsx index a171fd77b..cfaf9dd43 100644 --- a/app/containers/TwoFactor/index.tsx +++ b/app/containers/TwoFactor/index.tsx @@ -135,7 +135,7 @@ const TwoFactor = React.memo(({ isMasterDetail }: { isMasterDetail: boolean }) =