darken函数是怎么计算的呢?
darken(color, amount, method)
color: A color object.
amount: A percentage 0-100%.
method: Optional, set to relative for the adjustment to be relative to the current value.
darken函数是在HSL模式下进行操作的。
H→Hue 色相
S→Saturation 饱和度
L→Lightness 明度
darken的作用是将color的L值(明度)减去amount参数值,返回操作后的color。
那么,RGB和HSL如何相互转换呢?