Skip to content

Commit

Permalink
contrast fixes on stop callout
Browse files Browse the repository at this point in the history
  • Loading branch information
bwees committed Jul 30, 2024
1 parent bafe370 commit 3c27487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/map/StopCallout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const StopCallout: React.FC<Props> = ({ stop, tintColor, route, direction }) =>
<CalloutTimeBubble
key={index}
time={relative <= 0 ? "Now" : relative.toString() + " min"}
color={index == 0 ? tintColor + "60" : lightMode.nextStopBubble}
color={index == 0 ? tintColor + "50" : lightMode.nextStopBubble}
textColor={index == 0 ? tintColor : lightMode.text}
live={departureTime.estimatedDepartTimeUtc == null ? false : true}
/>
Expand Down

0 comments on commit 3c27487

Please sign in to comment.