Skip to content

Commit

Permalink
Reduced opacity of points
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobWeinbren committed Jan 25, 2024
1 parent 97aac21 commit 202cf88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion site/src/components/Map.astro
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
---

<div id="map-container" style="height: 100vh"></div>
Expand Down Expand Up @@ -37,7 +38,7 @@
m: [168, 85, 247],
};
const maxKey = Object.keys(d).reduce((a, b) => (d[a] > d[b] ? a : b));
return [...colors[maxKey], 125];
return [...colors[maxKey], 75];
};

const updateMapCursor = (cursorStyle) => {
Expand Down

0 comments on commit 202cf88

Please sign in to comment.