Correct others color
This commit is contained in:
parent
d420e83536
commit
806149447b
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
]}
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue