diff options
author | elioat <elioat@tilde.institute> | 2024-12-28 09:56:22 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-12-28 09:56:22 -0500 |
commit | 0e21da444131ebc4b30230de829ea0d1f2410f0b (patch) | |
tree | 1d21c412278691ba3196f3baae8fde16859b855e /html/rogue/js/config.js | |
parent | eed3c76d745f37ade56d0cc4ed8486913cd8e1f7 (diff) | |
download | tour-0e21da444131ebc4b30230de829ea0d1f2410f0b.tar.gz |
*
Diffstat (limited to 'html/rogue/js/config.js')
-rw-r--r-- | html/rogue/js/config.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/rogue/js/config.js b/html/rogue/js/config.js index afd1123..50687ba 100644 --- a/html/rogue/js/config.js +++ b/html/rogue/js/config.js @@ -1,6 +1,6 @@ const Config = { colors: { - BACKGROUND: 'rgba(135, 206, 235, 0.3)', + BACKGROUND: 'rgba(135, 207, 235, 1)', GRID: 'rgba(0, 0, 0, 0.25)', PLAYER: 'red', HEX_FILL: '#ffffff' @@ -8,7 +8,7 @@ const Config = { hex: { SIZE: 40, // Size of a single hex - GRID_SIZE: 100, // Number of hexes in the grid (width/height) + GRID_SIZE: 10, // Number of hexes in the grid (width/height) get WIDTH() { // Computed hex width return this.SIZE * 2; }, |