Add water waves fill pattern and pond-specific pattern

This commit is contained in:
RudyTheDev
2018-11-18 22:12:40 +02:00
parent b18dfb4030
commit ff8723e194
5 changed files with 10 additions and 0 deletions

View File

@@ -94,6 +94,10 @@ path.fill.tag-natural-water {
border-color: rgb(119, 211, 222);
background-color: rgba(119, 211, 222, 0.3);
}
.pattern-color-waves,
.pattern-color-pond {
fill: rgba(119, 211, 222, 0.3);
}
/* Yellow things */
.pattern-color-beach,

BIN
dist/img/pattern/pond.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 B

BIN
dist/img/pattern/waves.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

View File

@@ -49,6 +49,10 @@ export function svgAreas(projection, context) {
grassland: 'grass',
sand: 'beach',
scrub: 'scrub',
water: [
{ water: 'pond', pattern: 'pond' },
{ pattern: 'waves' }
],
wetland: [
{ wetland: 'marsh', pattern: 'wetland_marsh' },
{ wetland: 'swamp', pattern: 'wetland_swamp' },

View File

@@ -89,9 +89,11 @@ export function svgDefs(context) {
['landfill', 'landfill'],
['meadow', 'grass'],
['orchard', 'orchard'],
['pond', 'pond'],
['quarry', 'quarry'],
['scrub', 'bushes'],
['vineyard', 'vineyard'],
['waves', 'waves'],
['wetland', 'wetland'],
['wetland_marsh', 'wetland_marsh'],
['wetland_swamp', 'wetland_swamp'],