Skip to content

Commit d9fea3e

Browse files
Updated Grid Line Color
1 parent 575182d commit d9fea3e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

public/map.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ function drawMap(mapData) {
848848
ctx.strokeRect(screenX + 1, screenY + 1, screenSize - 2, screenSize - 2);
849849

850850
// Draw semi-transparent overlay
851-
ctx.fillStyle = 'rgba(255, 255, 255, 0.2)';
851+
ctx.fillStyle = 'rgba(255, 255, 255, 0.15)';
852852
ctx.fillRect(screenX, screenY, screenSize, screenSize);
853853
}
854854
}
@@ -857,7 +857,7 @@ function drawMap(mapData) {
857857
}
858858

859859
function drawGrid() {
860-
ctx.strokeStyle = 'rgba(255, 255, 255, 0.2)';
860+
ctx.strokeStyle = 'rgba(255, 255, 255, 0.15)';
861861
ctx.lineWidth = 1;
862862
ctx.beginPath();
863863

0 commit comments

Comments
 (0)