Skip to content

Commit

Permalink
Changed tag colors to improve contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
amoscardino committed Apr 23, 2024
1 parent ca7cf2e commit 199dd6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_TEAM = LS6BR8Q859;
INFOPLIST_FILE = App/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = LinkThing;
Expand All @@ -375,7 +375,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_TEAM = LS6BR8Q859;
INFOPLIST_FILE = App/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = LinkThing;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Tag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const Tag = (props: TagProps) => {
return (
<IonChip
onClick={props.onClick}
color={props.isActive ? 'primary' : 'medium'}
outline={!isDarkMode}
color={props.isActive ? 'primary' : undefined}
outline
>
<IonIcon icon={props.isActive ? checkmarkCircle : pricetagOutline} />
<IonLabel>{props.tag}</IonLabel>
Expand Down

0 comments on commit 199dd6c

Please sign in to comment.