graypegg / chromatism

:rainbow: A simple set of utility functions for colours.
1.78k stars 37 forks source link

hsl-->rgb,error is a little big #43

Closed edenYfb closed 5 years ago

edenYfb commented 5 years ago

chromatism.convert( { h: 300, s: 100, l: 50 } ).rgb //-->{r:253.47, g:0, b:254.49}-->Math.round()-->253,0,254 i want it can be {r:255, g:0, b:255}, after Math.round()

TehShrike commented 5 years ago

Then write a round function that does that. Math.round does not work that way.

edenYfb commented 5 years ago

ok, i try it