From 08c6a7f88447b1ed54fc9fef56830de90d891dcc Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 15 Jan 2026 19:35:13 +0000 Subject: [PATCH] Make layer colors match card colors on dash --- sync/template/dashboard.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sync/template/dashboard.html b/sync/template/dashboard.html index ddefeef4..ca059eb0 100644 --- a/sync/template/dashboard.html +++ b/sync/template/dashboard.html @@ -32,8 +32,8 @@ function onLoad() { 'source': 'tegola-nidus', // ID of the tile source created above 'source-layer': 'mosquito_source', 'paint': { - 'fill-opacity': 0.3, - 'fill-color': 'rgb(250, 100, 100)' + 'fill-opacity': 0.4, + 'fill-color': '#dc3545' } //slot: 'middle' // middle slot in Mapbox Standard style }); @@ -44,8 +44,8 @@ function onLoad() { 'source': 'tegola-nidus', // ID of the tile source created above 'source-layer': 'service_request', 'paint': { - 'fill-opacity': 0.3, - 'fill-color': 'rgb(100, 100, 250)' + 'fill-opacity': 0.4, + 'fill-color': '#ffc107' } //slot: 'middle' // middle slot in Mapbox Standard style });