Skip to content

Commit

Permalink
Merge pull request #13331 from Expensify/srikar-chatNameColor
Browse files Browse the repository at this point in the history
change display name color to gray
  • Loading branch information
shawnborton authored Dec 6, 2022
2 parents 09c2850 + ff73711 commit a2c5376
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/DisplayNames/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class DisplayNames extends PureComponent {
>
{/* // We need to get the refs to all the names which will be used to correct
the horizontal position of the tooltip */}
<Text ref={el => this.childRefs[index] = el}>
<Text ref={el => this.childRefs[index] = el} style={this.props.textStyles}>
{displayName}
</Text>
</Tooltip>
Expand Down
4 changes: 2 additions & 2 deletions src/styles/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ const styles = {
},

sidebarLinkText: {
color: themeColors.text,
color: themeColors.textSupporting,
fontSize: variables.fontSizeNormal,
textDecorationLine: 'none',
overflow: 'hidden',
Expand All @@ -1144,7 +1144,7 @@ const styles = {
},

sidebarLinkActiveText: {
color: themeColors.text,
color: themeColors.textSupporting,
fontSize: variables.fontSizeNormal,
textDecorationLine: 'none',
overflow: 'hidden',
Expand Down

0 comments on commit a2c5376

Please sign in to comment.