From 0f2ead4b5b3ca0c584bb1ff3ca8779674123c038 Mon Sep 17 00:00:00 2001 From: Shawn Date: Sat, 23 May 2026 00:15:08 -0400 Subject: [PATCH] =?UTF-8?q?feat:=20bolder=20park=20outline=20styling=20?= =?UTF-8?q?=E2=80=94=20thicker=20lines=20(5px),=20full=20opacity,=20strong?= =?UTF-8?q?er=20fill,=20saturated=20colors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/static/index.html b/static/index.html index d72dee0..fde37e4 100644 --- a/static/index.html +++ b/static/index.html @@ -3151,7 +3151,7 @@ const DISNEY_PARK_OUTLINES = { 'magic-kingdom': { name: 'Magic Kingdom', - color: '#8b5cf6', + color: '#c2410c', icon: '🏰', // Accurate boundary from OSM (way 297428432, simplified) coords: [ @@ -3178,7 +3178,7 @@ }, 'epcot': { name: 'Epcot', - color: '#06b6d4', + color: '#0284c7', icon: '🌍', coords: [ [28.3793, -81.5530], [28.3800, -81.5475], [28.3770, -81.5455], @@ -3189,7 +3189,7 @@ }, 'hollywood-studios': { name: 'Hollywood Studios', - color: '#f59e0b', + color: '#ca8a04', icon: '🎬', coords: [ [28.3615, -81.5625], [28.3625, -81.5560], [28.3590, -81.5545], @@ -3199,7 +3199,7 @@ }, 'animal-kingdom': { name: 'Animal Kingdom', - color: '#22c55e', + color: '#15803d', icon: '🌿', coords: [ [28.3635, -81.5955], [28.3640, -81.5870], [28.3600, -81.5850], @@ -3209,7 +3209,7 @@ }, 'disney-springs': { name: 'Disney Springs', - color: '#ec4899', + color: '#be185d', icon: '🛍️', coords: [ [28.3740, -81.5255], [28.3745, -81.5175], [28.3710, -81.5155], @@ -3240,10 +3240,10 @@ Object.entries(DISNEY_PARK_OUTLINES).forEach(([key, park]) => { const polygon = L.polygon(park.coords, { color: park.color, - weight: 3, - opacity: 0.9, + weight: 5, + opacity: 1, fillColor: park.color, - fillOpacity: 0.15, + fillOpacity: 0.25, dashArray: key === 'resort' ? '8, 4' : null, }).addTo(parkOutlineGroup);