Skip to content

Commit

Permalink
Update hazy.js
Browse files Browse the repository at this point in the history
dynamic accent color now disabled by default
  • Loading branch information
Astromations authored Nov 11, 2024
1 parent 677767c commit e7d0ad5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hazy.js
Original file line number Diff line number Diff line change
Expand Up @@ -887,12 +887,12 @@
const colorInput = document.createElement("input");
colorInput.type = "color";
colorInput.id = "color-input";
colorInput.value = localStorage.getItem("CustomColor") || "#FFC0EA";
colorInput.value = localStorage.getItem("CustomColor") || "#30bf63";
colorInput.style.border = "none";
optionList.append(colorInput);

//color toggle
createOption("UseCustomColor", "Custom color:", false);
createOption("UseCustomColor", "Custom color:", true);

//-------------------

Expand Down

0 comments on commit e7d0ad5

Please sign in to comment.