We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8881e72 commit 5f181dcCopy full SHA for 5f181dc
1 file changed
README.md
@@ -57,6 +57,8 @@ conv.hsluv_s = 75;
57
conv.hsluv_l = 65;
58
conv.hsluvToHex();
59
System.out.println(conv.hex); // Will print "#ec7d82"
60
+double[] rgb = new double[] {conv.rgb_r, conv.rgb_g, conv.rgb_b};
61
+Color color = new Color(rgb[0], rgb[1], rgb[2]);
62
```
63
64
# Testing
0 commit comments