Skip to content

Commit

Permalink
Merge pull request #33100 from Expensify/georgia-fixStatusPage
Browse files Browse the repository at this point in the history
[CP Staging] Fix Page Colors Keys in Light Mode (Status Page, Wallet Root)

(cherry picked from commit 1f72cef)
  • Loading branch information
AndrewGable authored and OSBotify committed Dec 15, 2023
1 parent b39c5b7 commit d7ace21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/styles/theme/themes/dark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const darkTheme = {
statusBarStyle: CONST.STATUS_BAR_STYLE.DARK_CONTENT,
},
[SCREENS.SETTINGS.PROFILE.STATUS]: {
backgroundColor: colors.darkAppBackground,
backgroundColor: colors.productDark100,
statusBarStyle: CONST.STATUS_BAR_STYLE.LIGHT_CONTENT,
},
[SCREENS.SETTINGS.ROOT]: {
Expand Down
8 changes: 4 additions & 4 deletions src/styles/theme/themes/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,16 @@ const lightTheme = {
statusBarStyle: CONST.STATUS_BAR_STYLE.LIGHT_CONTENT,
},
[SCREENS.SETTINGS.WALLET.ROOT]: {
backgroundColor: colors.productDark100,
statusBarStyle: CONST.STATUS_BAR_STYLE.LIGHT_CONTENT,
backgroundColor: colors.productLight100,
statusBarStyle: CONST.STATUS_BAR_STYLE.DARK_CONTENT,
},
[SCREENS.SETTINGS.SECURITY]: {
backgroundColor: colors.ice500,
statusBarStyle: CONST.STATUS_BAR_STYLE.DARK_CONTENT,
},
[SCREENS.SETTINGS.PROFILE.STATUS]: {
backgroundColor: colors.green700,
statusBarStyle: CONST.STATUS_BAR_STYLE.LIGHT_CONTENT,
backgroundColor: colors.productLight100,
statusBarStyle: CONST.STATUS_BAR_STYLE.DARK_CONTENT,
},
[SCREENS.SETTINGS.ROOT]: {
backgroundColor: colors.productLight200,
Expand Down

0 comments on commit d7ace21

Please sign in to comment.