diff --git a/app/components/channel_drawer/channels_list/channel_item/channel_item.js b/app/components/channel_drawer/channels_list/channel_item/channel_item.js index 0143264de..5c80f6bd6 100644 --- a/app/components/channel_drawer/channels_list/channel_item/channel_item.js +++ b/app/components/channel_drawer/channels_list/channel_item/channel_item.js @@ -229,7 +229,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { color: theme.sidebarUnreadText, }, badge: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, borderColor: theme.sidebarHeaderBg, borderRadius: 10, borderWidth: 1, diff --git a/app/components/channel_drawer/channels_list/channels_list.js b/app/components/channel_drawer/channels_list/channels_list.js index 4d34082fb..a31b78eaf 100644 --- a/app/components/channel_drawer/channels_list/channels_list.js +++ b/app/components/channel_drawer/channels_list/channels_list.js @@ -244,7 +244,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { lineHeight: 18, }, above: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, top: 9, }, }; diff --git a/app/components/channel_drawer/channels_list/switch_teams_button/switch_teams_button.js b/app/components/channel_drawer/channels_list/switch_teams_button/switch_teams_button.js index aeabaa37a..04d525089 100644 --- a/app/components/channel_drawer/channels_list/switch_teams_button/switch_teams_button.js +++ b/app/components/channel_drawer/channels_list/switch_teams_button/switch_teams_button.js @@ -116,7 +116,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { fontSize: 14, }, badge: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, borderColor: theme.sidebarHeaderBg, borderRadius: 10, borderWidth: 1, diff --git a/app/components/channel_drawer/teams_list/teams_list_item/teams_list_item.js b/app/components/channel_drawer/teams_list/teams_list_item/teams_list_item.js index a8df3e966..7fdae7e05 100644 --- a/app/components/channel_drawer/teams_list/teams_list_item/teams_list_item.js +++ b/app/components/channel_drawer/teams_list/teams_list_item/teams_list_item.js @@ -143,7 +143,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { fontSize: 20, }, badge: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, borderColor: theme.sidebarHeaderBg, borderRadius: 10, borderWidth: 1, diff --git a/app/screens/channel/channel_nav_bar/channel_drawer_button.js b/app/screens/channel/channel_nav_bar/channel_drawer_button.js index ff9ddbf85..76ca78d13 100644 --- a/app/screens/channel/channel_nav_bar/channel_drawer_button.js +++ b/app/screens/channel/channel_nav_bar/channel_drawer_button.js @@ -155,7 +155,7 @@ const getStyleFromTheme = makeStyleSheetFromTheme((theme) => { paddingHorizontal: 10, }, badge: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, borderColor: theme.sidebarHeaderBg, borderRadius: 10, borderWidth: 1,