Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ishpaul777 committed Feb 17, 2024
1 parent 0432658 commit 3ea154d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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 @@ -9,7 +9,7 @@ const platform = getPlatform();
const darkTheme = {
// Figma keys
appBG: colors.productDark100,
splashBG: (platform === CONST.PLATFORM.WEB || platform === CONST.PLATFORM.IOS) ? colors.productDark100 : colors.green400,
splashBG: platform === CONST.PLATFORM.WEB || platform === CONST.PLATFORM.IOS ? colors.productDark100 : colors.green400,
highlightBG: colors.productDark200,
border: colors.productDark400,
borderLighter: colors.productDark400,
Expand Down
2 changes: 1 addition & 1 deletion src/styles/theme/themes/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const platform = getPlatform();
const lightTheme = {
// Figma keys
appBG: colors.productLight100,
splashBG: (platform === CONST.PLATFORM.WEB || platform === CONST.PLATFORM.DESKTOP) ? colors.productDark100 : colors.green400,
splashBG: platform === CONST.PLATFORM.WEB || platform === CONST.PLATFORM.DESKTOP ? colors.productDark100 : colors.green400,
highlightBG: colors.productLight200,
border: colors.productLight400,
borderLighter: colors.productLight400,
Expand Down

0 comments on commit 3ea154d

Please sign in to comment.