We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b65de commit 21bd6fcCopy full SHA for 21bd6fc
src/lib/ColorSelect.svelte
@@ -84,6 +84,8 @@
84
function update_h(x: number, y: number) {
85
let h = clamp(y / picker_size)
86
color.h = h * 360
87
+ color.s = Math.max(color.s, 0.00001)
88
+ color.v = Math.max(color.v, 0.00001)
89
90
update_input()
91
}
0 commit comments