Moritz Habegger
Results
1
comments of
Moritz Habegger
I was also confused by this implementation. ``` console.log(Color('#c880b6').lighten(0.5).hex()) => #FAF2F8 console.log(Color('#c880b6').lighten(0.6).hex()) => #FFFFFF ``` The function of @diegohaz did exactly what I was looking for ```` console.log(lightenBy(Color('#c880b6'), 0.5).hex()) =>...