diff --git a/web/static/map.js b/web/static/map.js index 36dff53..b3d9f35 100644 --- a/web/static/map.js +++ b/web/static/map.js @@ -195,7 +195,7 @@ for (const path of Array.from(zones.querySelectorAll('path'))) { const points = convertToPoints(path); const zone = L - .polygon(points, {color: 'red'}) + .polygon(points, {color: 'var(--accent)'}) .bindTooltip(path.getAttribute('aria-label'), {permanent: true}) ; zonesOverlay.addLayer(zone);