Skip to content

Commit 73649e6

Browse files
fix: replace inaccessible colors
1 parent ade744e commit 73649e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/components/narrative/default/itinerary-summary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const modeColors = {
2929
RAIL: '#BDDAC0',
3030
WALK: '#DFC486'
3131
}
32-
const DEFAULT_COLOR = 'grey'
32+
const DEFAULT_COLOR = '#685C5C'
3333

3434
function getModeColor (mode) {
3535
if (!mode) return DEFAULT_COLOR

lib/components/narrative/line-itin/itin-summary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Container = styled.div`
1717
`
1818

1919
const Detail = styled.div`
20-
color: #999999;
20+
color: #676767;
2121
font-size: 13px;
2222
`
2323

lib/components/user/places/place-location-field.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const StyledLocationField = styled(LocationField)`
4747
width: 100%;
4848
4949
::placeholder {
50-
color: #999;
50+
color: #676767;
5151
}
5252
}
5353
${InputGroup} {

0 commit comments

Comments
 (0)