From 6d224106585bea4b9062845560f197141472adac Mon Sep 17 00:00:00 2001 From: yukirij Date: Mon, 19 Aug 2024 15:59:00 -0700 Subject: [PATCH] Update last play hint color. --- www/js/interface.js | 2 +- www/js/scene.js | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/www/js/interface.js b/www/js/interface.js index 4144d20..88c4cc8 100644 --- a/www/js/interface.js +++ b/www/js/interface.js @@ -32,7 +32,7 @@ const INTERFACE = { HintOpponentDark: "#2a0b3f", HintInvalid: "#b71c1c", HintInvalidDark: "#3f0808", - HintPlay: "#0d5672", + HintPlay: "#004966", HintCheck: "#C62828", }, diff --git a/www/js/scene.js b/www/js/scene.js index 02d66b9..ce86557 100644 --- a/www/js/scene.js +++ b/www/js/scene.js @@ -482,9 +482,14 @@ const SCENES = { Guide:{ load() { UI.mainmenu(); - UI.mainnav([], []); - + UI.mainnav([ + UI.button("Game", () => { }), + UI.button("Interface", () => { }), + UI.button("Pieces", () => { }), + UI.button("Dropping", () => { }), + ], []); + return true; },