| author | Alan Dipert
<alan@dipert.org> 2025-11-16 23:57:37 UTC |
| committer | Alan Dipert
<alan@dipert.org> 2025-11-16 23:57:37 UTC |
| parent | ec1307c2c88ea431d0ed331b4ea868d042310f85 |
| fairy-finder/game.js | +1 | -2 |
| fairy-finder/index.html | +1 | -2 |
| fairy-finder/styles.css | +1 | -1 |
diff --git a/fairy-finder/game.js b/fairy-finder/game.js index 67a6e6a..deacce0 100644 --- a/fairy-finder/game.js +++ b/fairy-finder/game.js @@ -12,8 +12,7 @@ const difficulties = { tiny: { size: 6, fairies: 5 }, easy: { size: 8, fairies: 10 }, - medium: { size: 10, fairies: 18 }, - hard: { size: 12, fairies: 28 }, + bright: { size: 9, fairies: 15 }, }; const game = { diff --git a/fairy-finder/index.html b/fairy-finder/index.html index 2f2db5e..f7c9ec4 100644 --- a/fairy-finder/index.html +++ b/fairy-finder/index.html @@ -27,8 +27,7 @@ <select id="difficulty"> <option value="tiny">Pixie Patch</option> <option value="easy">Easy Garden</option> - <option value="medium">Twilight Trail</option> - <option value="hard">Mystic Maze</option> + <option value="bright">Starry Clearing</option> </select> </label> <button class="btn" id="restart">New Game</button> diff --git a/fairy-finder/styles.css b/fairy-finder/styles.css index 4a6db97..f8cba0e 100644 --- a/fairy-finder/styles.css +++ b/fairy-finder/styles.css @@ -119,7 +119,7 @@ select { } .board { - width: min(560px, 95vw); + width: min(520px, 95vw); background: rgba(255, 255, 255, 0.8); border-radius: 24px; padding: 1rem;