One can manipulate LCH components relative to the current color: ```js color.rotate(5) color.lighten(0.1) color.saturate(0.2) ``` Of those one can directly set the `H`: ```js color.hue(200) ``` So why not `L` and `C`? ```js color.lightness(80) color.saturation(35) ```
One can manipulate LCH components relative to the current color:
Of those one can directly set the
H:So why not
LandC?