diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index 816b977d1..a94f4b215 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -161,7 +161,7 @@ const ActionSheet = React.memo( handleComponent={renderHandle} enablePanDownToClose style={{ ...styles.container, ...bottomSheet }} - backgroundStyle={{ backgroundColor: colors.focusedBackground }} + backgroundStyle={{ backgroundColor: colors.surfaceLight }} onChange={index => index === -1 && onClose()} // We need this to allow horizontal swipe gesture inside the bottom sheet like in reaction picker enableContentPanningGesture={data?.enableContentPanningGesture ?? true} diff --git a/app/containers/ActionSheet/BottomSheetContent.tsx b/app/containers/ActionSheet/BottomSheetContent.tsx index 9f07c0f49..cd95783e9 100644 --- a/app/containers/ActionSheet/BottomSheetContent.tsx +++ b/app/containers/ActionSheet/BottomSheetContent.tsx @@ -45,7 +45,7 @@ const BottomSheetContent = React.memo(({ options, hasCancel, hide, children, onL keyExtractor={item => item.title} bounces={false} renderItem={renderItem} - style={{ backgroundColor: colors.focusedBackground }} + style={{ backgroundColor: colors.surfaceLight }} keyboardDismissMode='interactive' indicatorStyle='black' contentContainerStyle={{ paddingBottom: bottom }} diff --git a/app/containers/ActionSheet/Item.tsx b/app/containers/ActionSheet/Item.tsx index 7a94423b1..64c405c35 100644 --- a/app/containers/ActionSheet/Item.tsx +++ b/app/containers/ActionSheet/Item.tsx @@ -29,17 +29,17 @@ export const Item = React.memo(({ item, hide }: IActionSheetItem) => { let color = colors.fontDefault; if (item.danger) { - color = colors.dangerColor; + color = colors.fontDanger; } if (!enabled) { color = colors.fontDisabled; } return ( - + {item.icon ? : null} - + {item.title} diff --git a/app/containers/DirectoryItem/index.tsx b/app/containers/DirectoryItem/index.tsx index f8766b44c..785dc9029 100644 --- a/app/containers/DirectoryItem/index.tsx +++ b/app/containers/DirectoryItem/index.tsx @@ -50,7 +50,7 @@ const DirectoryItem = ({ }: IDirectoryItem): React.ReactElement => { const { theme } = useTheme(); return ( - + diff --git a/app/containers/FormContainer.tsx b/app/containers/FormContainer.tsx index 985003313..2e0afd496 100644 --- a/app/containers/FormContainer.tsx +++ b/app/containers/FormContainer.tsx @@ -31,7 +31,7 @@ const FormContainer = ({ children, testID, ...props }: IFormContainer) => { return ( @@ -42,7 +42,7 @@ const FormContainer = ({ children, testID, ...props }: IFormContainer) => { {...scrollPersistTaps} {...props} > - + {children} diff --git a/app/containers/InAppNotification/IncomingCallNotification/style.tsx b/app/containers/InAppNotification/IncomingCallNotification/style.tsx index 0b16cac28..d55f9fc92 100644 --- a/app/containers/InAppNotification/IncomingCallNotification/style.tsx +++ b/app/containers/InAppNotification/IncomingCallNotification/style.tsx @@ -13,7 +13,7 @@ export const useStyle = () => { marginHorizontal: 10, borderWidth: StyleSheet.hairlineWidth, borderRadius: 4, - backgroundColor: colors.focusedBackground, + backgroundColor: colors.surfaceLight, borderColor: colors.separatorColor, flex: 1 }, @@ -36,7 +36,7 @@ export const useStyle = () => { }, cancelButton: { borderRadius: 4, - backgroundColor: colors.cancelCallButton, + backgroundColor: colors.dangerColor, marginRight: 8, flex: 2, alignItems: 'center', @@ -48,7 +48,7 @@ export const useStyle = () => { }, acceptButton: { borderRadius: 4, - backgroundColor: colors.acceptCallButton, + backgroundColor: colors.buttonBackgroundSuccessDefault, flex: 2, alignItems: 'center', justifyContent: 'center' diff --git a/app/containers/InAppNotification/NotifierComponent.tsx b/app/containers/InAppNotification/NotifierComponent.tsx index 225bc3677..602e2f92b 100644 --- a/app/containers/InAppNotification/NotifierComponent.tsx +++ b/app/containers/InAppNotification/NotifierComponent.tsx @@ -103,7 +103,7 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie styles.container, isMasterDetail && styles.small, { - backgroundColor: themes[theme].focusedBackground, + backgroundColor: themes[theme].surfaceLight, borderColor: themes[theme].separatorColor, marginTop: insets.top } diff --git a/app/containers/List/ListItem.tsx b/app/containers/List/ListItem.tsx index 39b2c5361..9df7f7d8f 100644 --- a/app/containers/List/ListItem.tsx +++ b/app/containers/List/ListItem.tsx @@ -136,7 +136,7 @@ interface IListItemButton { const Button = React.memo(({ onPress, backgroundColor, underlayColor, ...props }: IListButtonPress) => ( onPress(props.title)} - style={{ backgroundColor: backgroundColor || themes[props.theme].backgroundColor }} + style={{ backgroundColor: backgroundColor || themes[props.theme].surfaceRoom }} underlayColor={underlayColor} enabled={!props.disabled} > @@ -157,7 +157,7 @@ const ListItem = React.memo(({ ...props }: IListItem) => { return