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.
2 parents 5f92f1e + c8fd6f3 commit da1a906Copy full SHA for da1a906
getHSBValue.jsx
@@ -29,5 +29,5 @@ function rgbToHsv(r, g, b) {
29
30
h *= 60;
31
}
32
- return [ Math.round(h), Math.round(s), Math.round(v) ];
+ return [ Math.round(h), Math.round(s*100)/100, Math.round(v*100)/100 ];
33
0 commit comments