css variables, change max_guesses behaviour in wordle
Build / Build-image (push) Successful in 1m19s

This commit is contained in:
2026-09-05 13:00:41 +02:00
parent cc892fdebf
commit 5613a95063
4 changed files with 21 additions and 8 deletions
+3 -3
View File
@@ -56,7 +56,7 @@
}
.default {
background-color: rgb(79, 79, 79);
background-color: var(--incorrect-guess)
}
.more {
background-color: rgb(255, 0, 0);
@@ -65,13 +65,13 @@
background-color: rgb(129, 112, 0);
}
.cw-cp {
background-color: rgb(0, 126, 2);
background-color: var(--correct-guess)
}
.cw-ip {
background-color: rgb(98, 175, 99);
}
.cf-cp {
background-color: rgb(37, 43, 154);
background-color: var(--partial-correct-guess);
border: solid white;
}
.cf-cp.hover {