This commit is contained in:
2026-07-22 11:12:56 +02:00
parent b1d703c38f
commit 78dd917961
2 changed files with 10 additions and 11 deletions
+2 -2
View File
@@ -58,7 +58,7 @@ window.onload = function() {
if (localStorage["tool"] == "sight") sightCheckbox.checked = true
else if (localStorage["tool"] == "highlighter") highlighterCheckbox.checked = true
colorPickerInput.value = window.getComputedStyle(grid).getPropertyValue("--bs-body-color")
// colorPickerInput.value = window.getComputedStyle(grid).getPropertyValue("--bs-body-color")
boxes.forEach(box => {
box.neighbourhood = new Set(rows[box.rowId].concat(columns[box.columnId]).concat(regions[box.regionId]))
@@ -320,7 +320,7 @@ let penColor
function changeColor() {
penColor = colorPickerInput.value
colorPickerLabel.style.color = colorPickerInput.value
colorPickerLabel.style.setProperty("color", penColor)
}
function restart() {