about summary refs log tree commit diff stats
path: root/html/rogue
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-12-28 07:56:25 -0500
committerelioat <elioat@tilde.institute>2024-12-28 07:56:25 -0500
commitce34a26bb07a82f31853cc4da7050fc0318dab42 (patch)
tree6759a50e9b3458f15a305fa964b8ae093a61e74c /html/rogue
parent4f1da58e67b3438c00fb09051bd3ccb6213d298d (diff)
downloadtour-ce34a26bb07a82f31853cc4da7050fc0318dab42.tar.gz
*
Diffstat (limited to 'html/rogue')
-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
         }