diff options
author | elioat <elioat@tilde.institute> | 2024-12-07 08:02:38 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-12-07 08:02:38 -0500 |
commit | a50500597fcd2698f86f05c0bb74e8fae6c3ab73 (patch) | |
tree | ed29a55eb25faba5510f2d83a06aa40e89a46beb /html/mountain | |
parent | 734a8083d8c313d5a30d0247fe34fc6646e09612 (diff) | |
download | tour-a50500597fcd2698f86f05c0bb74e8fae6c3ab73.tar.gz |
*
Diffstat (limited to 'html/mountain')
-rw-r--r-- | html/mountain/game.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/mountain/game.js b/html/mountain/game.js index 8243e9f..b4fcf3f 100644 --- a/html/mountain/game.js +++ b/html/mountain/game.js @@ -538,8 +538,8 @@ function draw(currentTime) { ctx.fillStyle = 'rgba(0, 0, 0, 0.7)'; ctx.fillRect(0, 0, canvas.width, canvas.height); - ctx.fillStyle = '#FFFFFF'; - ctx.font = '48px Arial'; + ctx.fillStyle = 'rgba(255, 255, 255, 0.75)'; + ctx.font = '100px Arial'; ctx.textAlign = 'center'; ctx.fillText('GAME OVER', canvas.width / 2, canvas.height / 2); |