Skip to content

Commit

Permalink
Merge pull request #27638 from Expensify/georgia-overlayFix
Browse files Browse the repository at this point in the history
Fix deprecated dark key for lounge access page
  • Loading branch information
neil-marcellini authored Sep 20, 2023
2 parents 44f8f4a + 9eeacb6 commit b773455
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/settings/Profile/LoungeAccessPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function LoungeAccessPage(props) {

const overlayContent = () => (
<LinearGradient
colors={[`${themeColors.dark}00`, themeColors.dark]}
colors={[`${themeColors.loungeAccessOverlay}00`, themeColors.loungeAccessOverlay]}
style={[styles.pAbsolute, styles.w100, styles.h100]}
>
<View style={[styles.flex1, styles.justifyContentCenter, styles.alignItemsCenter, styles.pt5]}>
Expand Down
1 change: 1 addition & 0 deletions src/styles/themes/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const darkTheme = {
skeletonLHNOut: colors.darkDefaultButton,
QRLogo: colors.green400,
starDefaultBG: 'rgb(254, 228, 94)',
loungeAccessOverlay: colors.blue800,
};

darkTheme.PAGE_BACKGROUND_COLORS = {
Expand Down
1 change: 1 addition & 0 deletions src/styles/themes/light.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ const lightTheme = {
skeletonLHNOut: colors.lightDefaultButtonPressed,
QRLogo: colors.green400,
starDefaultBG: 'rgb(254, 228, 94)',
loungeAccessOverlay: colors.blue800,
};

lightTheme.PAGE_BACKGROUND_COLORS = {
Expand Down

0 comments on commit b773455

Please sign in to comment.