We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ba7c1f commit cd266dbCopy full SHA for cd266db
1 file changed
public/map.js
@@ -277,7 +277,7 @@ ctx.webkitImageSmoothingEnabled = false;
277
ctx.msImageSmoothingEnabled = false;
278
279
const colorMap = {
280
- w: "#141414", // water
+ w: "#1E1E1E", // water
281
m: "#0A0A0A", // Manhattan
282
x: "#0A0A0A", // Bronx
283
b: "#0A0A0A", // Brooklyn + Queens
@@ -770,7 +770,7 @@ canvas.addEventListener('wheel', e => {
770
function drawMap(mapData) {
771
ctx.clearRect(0, 0, canvas.width, canvas.height);
772
773
- ctx.fillStyle = '#141414';
+ ctx.fillStyle = '#1E1E1E';
774
ctx.fillRect(0, 0, canvas.width, canvas.height);
775
776
drawGrid();
0 commit comments