We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 062e2f8 commit 677f895Copy full SHA for 677f895
palette-creator-tool.md
@@ -68,8 +68,8 @@ description: "This tool creates harmonious palettes for website designs and fron
68
function increment(property) {
69
const input = document.getElementById(property);
70
let value = parseInt(input.value);
71
- if (value < parseInt(input.max)) {
72
- value++;
+ if (value < parseInt(input.max) - 10) {
+ value+=10;
73
input.value = value;
74
updateColor();
75
}
@@ -79,7 +79,7 @@ description: "This tool creates harmonious palettes for website designs and fron
79
80
81
if (value > parseInt(input.min)) {
82
- value--;
+ value-=10;
83
84
85
0 commit comments