We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 575182d commit d9fea3eCopy full SHA for d9fea3e
1 file changed
public/map.js
@@ -848,7 +848,7 @@ function drawMap(mapData) {
848
ctx.strokeRect(screenX + 1, screenY + 1, screenSize - 2, screenSize - 2);
849
850
// Draw semi-transparent overlay
851
- ctx.fillStyle = 'rgba(255, 255, 255, 0.2)';
+ ctx.fillStyle = 'rgba(255, 255, 255, 0.15)';
852
ctx.fillRect(screenX, screenY, screenSize, screenSize);
853
}
854
@@ -857,7 +857,7 @@ function drawMap(mapData) {
857
858
859
function drawGrid() {
860
- ctx.strokeStyle = 'rgba(255, 255, 255, 0.2)';
+ ctx.strokeStyle = 'rgba(255, 255, 255, 0.15)';
861
ctx.lineWidth = 1;
862
ctx.beginPath();
863
0 commit comments