From ea5384ede666b86f5a223ad1e109b94ebaca569e Mon Sep 17 00:00:00 2001 From: gijoe0295 Date: Tue, 2 Jan 2024 17:54:39 +0700 Subject: [PATCH] fix incorrect text color in light mode in some places --- src/pages/ErrorPage/GenericErrorPage.js | 2 +- src/styles/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/ErrorPage/GenericErrorPage.js b/src/pages/ErrorPage/GenericErrorPage.js index 3b1b9ef9567c..56fb5b970084 100644 --- a/src/pages/ErrorPage/GenericErrorPage.js +++ b/src/pages/ErrorPage/GenericErrorPage.js @@ -85,7 +85,7 @@ function GenericErrorPage({translate}) { src={LogoWordmark} height={30} width={80} - fill={theme.textLight} + fill={theme.text} /> diff --git a/src/styles/index.ts b/src/styles/index.ts index da3c2bc2608c..35b5b5297e03 100644 --- a/src/styles/index.ts +++ b/src/styles/index.ts @@ -2089,7 +2089,7 @@ const styles = (theme: ThemeColors) => }, avatarInnerTextSmall: { - color: theme.textLight, + color: theme.text, fontSize: variables.fontSizeExtraSmall, lineHeight: undefined, marginLeft: -2, @@ -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',