about summary refs log tree commit diff stats
path: root/html/rogue/js/game.js
diff options
context:
space:
mode:
Diffstat (limited to 'html/rogue/js/game.js')
-rw-r--r--html/rogue/js/game.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/rogue/js/game.js b/html/rogue/js/game.js
index 3de54fc..53700c9 100644
--- a/html/rogue/js/game.js
+++ b/html/rogue/js/game.js
@@ -65,7 +65,7 @@ function drawHex(ctx, x, y, hex) {
         if (!FogOfWar.isRevealed(hex)) {
             ctx.strokeStyle = 'rgba(0, 0, 0, 1)';  // Match full shadow color
         } else if (!FogOfWar.isVisible(hex)) {
-            ctx.strokeStyle = 'rgba(0, 0, 0, 0.5)';
+            ctx.strokeStyle = 'rgba(0, 0, 0, 0.25)';
         } else {
             ctx.strokeStyle = HexGrid.COLOR;  // Normal grid color
         }