Skip to content

Commit

Permalink
Change to ocean polygons, move ocean and water above water-lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jeisenbe committed Oct 7, 2019
1 parent 17b8cc2 commit 52c81da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion shapefiles.mss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
}

.ocean {
polygon-fill: @water-color;
polygon-fill: @ocean-color;
[zoom >= 0][zoom < 10] {
polygon-fill: @ocean-color;
}
}

#icesheet-poly {
Expand Down
5 changes: 3 additions & 2 deletions style.mss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ Map {
background-color: @land-color;
}

@land-color: #f2efe9;

@water-color: #a2d1e0; // Lch(81,17,227)
@ocean-color: @water-color;
@river-color: #8fcadd; // Lch(78,21,227)

@land-color: #f2efe9;


@standard-halo-radius: 1;
@standard-halo-fill: rgba(255,255,255,0.6);

0 comments on commit 52c81da

Please sign in to comment.