diff --git a/code.js b/code.js index ae569b1..4ad85db 100644 --- a/code.js +++ b/code.js @@ -807,6 +807,11 @@ function loadSettings() { divObjectiveText.textContent = modesText[gameSettings.gamemode]; } +function setGamemode(modeNum) { + gameSettings.gamemode = modeNum; + divObjectiveText.textContent = modesText[gameSettings.gamemode]; +} + function downloadSettings() { saveSettings(); let el = document.createElement('a'); diff --git a/style.css b/style.css index 6fba65a..d5c0734 100644 --- a/style.css +++ b/style.css @@ -398,7 +398,7 @@ button>img { padding: 1vh; bottom: 2%; background-color: var(--invis); - border: 0.2vh solid var(--almost-invis); + border: 0.2vh solid var(--gray); border-radius: 1vh; font-size: 1.3em; color: var(--cl-blue);