Skip to content

Commit

Permalink
Merge pull request #33832 from gijoe0295/fix/33146
Browse files Browse the repository at this point in the history
Fix incorrect text color in some places
  • Loading branch information
MariaHCD authored Jan 8, 2024
2 parents bbfa541 + ea5384e commit 3c804f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/ErrorPage/GenericErrorPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function GenericErrorPage({translate}) {
src={LogoWordmark}
height={30}
width={80}
fill={theme.textLight}
fill={theme.text}
/>
</View>
</View>
Expand Down
4 changes: 2 additions & 2 deletions src/styles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2094,7 +2094,7 @@ const styles = (theme: ThemeColors) =>
},

avatarInnerTextSmall: {
color: theme.textLight,
color: theme.text,
fontSize: variables.fontSizeExtraSmall,
lineHeight: undefined,
marginLeft: -2,
Expand Down Expand Up @@ -2450,7 +2450,7 @@ const styles = (theme: ThemeColors) =>
RHPNavigatorContainerNavigatorContainerStyles: (isSmallScreenWidth: boolean) => ({marginLeft: isSmallScreenWidth ? 0 : variables.sideBarWidth, flex: 1} satisfies ViewStyle),

avatarInnerTextChat: {
color: theme.textLight,
color: theme.text,
fontSize: variables.fontSizeXLarge,
fontFamily: FontUtils.fontFamily.platform.EXP_NEW_KANSAS_MEDIUM,
textAlign: 'center',
Expand Down

0 comments on commit 3c804f8

Please sign in to comment.