Skip to content

Instantly share code, notes, and snippets.

@MaPePeR
MaPePeR / squardle_note_colorkeyboard.js
Last active March 27, 2022 16:24
Javascript snippet to color the keys on the note-keyboard based on previous guesses. See https://fubargames.se/squardle/
makeBlueNote = ((function (oldMakeBlueNote) {
const BLUE=0,BLACK=1, YELLOW=2, RED=3, ORANGE=4;
function getLetterColorFromHint(color, isHorizontal, isVertical) {
if (color == 'green') {
return BLUE;
}
if (color == 'blacker') {
return BLACK;
}
if (color == 'white') {