Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
[PAY-1612] Change mobile hidden track header color (#3758)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharit-tan authored Jul 17, 2023
1 parent 745ff35 commit 9206ab0
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ const useStyles = makeStyles(({ palette, spacing, typography }) => ({
hiddenTrackLabel: {
marginTop: spacing(1),
marginLeft: spacing(2),
color: palette.accentOrange,
fontFamily: typography.fontByWeight.demiBold,
fontSize: 14,
letterSpacing: 2,
textTransform: 'uppercase'
textTransform: 'uppercase',
color: palette.neutralLight4
},

bottomContent: {
Expand Down Expand Up @@ -212,8 +212,7 @@ export const TrackScreenDetailsTile = ({
)
const styles = useStyles()
const navigation = useNavigation()
const { accentOrange, white, aiPrimary, aiSecondary, neutralLight4 } =
useThemeColors()
const { white, aiPrimary, aiSecondary, neutralLight4 } = useThemeColors()

const isOfflineEnabled = useIsOfflineModeEnabled()
const isReachable = useSelector(getIsReachable)
Expand Down Expand Up @@ -465,7 +464,7 @@ export const TrackScreenDetailsTile = ({
const renderHeader = () => {
return is_unlisted ? (
<View style={styles.hiddenDetailsTileWrapper}>
<IconHidden fill={accentOrange} />
<IconHidden fill={neutralLight4} />
<Text style={styles.hiddenTrackLabel}>{messages.hiddenTrack}</Text>
</View>
) : (
Expand Down

0 comments on commit 9206ab0

Please sign in to comment.