Correct others color

This commit is contained in:
Diego Mello 2023-05-29 18:44:16 -03:00
parent d420e83536
commit 806149447b
6 changed files with 16 additions and 16 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -50,8 +50,8 @@ const AtMention = React.memo(({ mention, mentions, username, navToRoomInfo, styl
};
} else {
mentionStyle = {
color: themes[theme].pureWhite,
backgroundColor: themes[theme].mentionGroupColor
color: themes[theme].mentionOthersColor,
backgroundColor: themes[theme].mentionOthersBackground
};
}

View File

@ -46,8 +46,8 @@ const Hashtag = React.memo(({ hashtag, channels, navToRoomInfo, style = [] }: IH
style={[
styles.mention,
{
color: themes[theme].mentionRoomColor,
backgroundColor: themes[theme].mentionRoomBackground
color: themes[theme].mentionOthersColor,
backgroundColor: themes[theme].mentionOthersBackground
},
...style
]}

View File

@ -57,7 +57,7 @@ export default StyleSheet.create({
height: 30
},
temp: { opacity: 0.3 },
mentionView: { marginBottom: -2 },
mentionView: { marginBottom: -4 },
mention: {
fontSize: 16,
...sharedStyles.textMedium,

View File

@ -89,8 +89,8 @@ export const colors = {
pureWhite: '#ffffff',
mentionMeColor: '#F5455C',
mentionGroupColor: '#F38C39',
mentionRoomBackground: '#E4E7EA',
mentionRoomColor: '#095AD2',
mentionOthersBackground: '#E4E7EA',
mentionOthersColor: '#095AD2',
...mentions
},
dark: {
@ -164,8 +164,8 @@ export const colors = {
pureWhite: '#ffffff',
mentionMeColor: '#B43C4C',
mentionGroupColor: '#955828',
mentionRoomBackground: '#2F343D',
mentionRoomColor: '#739EDE',
mentionOthersBackground: '#2F343D',
mentionOthersColor: '#739EDE',
...mentions
},
black: {
@ -239,8 +239,8 @@ export const colors = {
pureWhite: '#ffffff',
mentionMeColor: '#B43C4C',
mentionGroupColor: '#955828',
mentionRoomBackground: '#2F343D',
mentionRoomColor: '#739EDE',
mentionOthersBackground: '#2F343D',
mentionOthersColor: '#739EDE',
...mentions
}
};