Skip to content

Commit

Permalink
fix incorrect text color in light mode in some places
Browse files Browse the repository at this point in the history
  • Loading branch information
gijoe0295 committed Jan 2, 2024
1 parent 320ff54 commit ea5384e
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 @@ -2089,7 +2089,7 @@ const styles = (theme: ThemeColors) =>
},

avatarInnerTextSmall: {
color: theme.textLight,
color: theme.text,
fontSize: variables.fontSizeExtraSmall,
lineHeight: undefined,
marginLeft: -2,
Expand Down Expand Up @@ -2445,7 +2445,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: fontFamily.EXP_NEW_KANSAS_MEDIUM,
textAlign: 'center',
Expand Down

0 comments on commit ea5384e

Please sign in to comment.