hsv method

String hsv(
  1. num hue,
  2. num saturation,
  3. num value
)

Creates String with foreground color defined from HSV (Hue, Saturation and Value) color space parameters. https://en.wikipedia.org/wiki/HSL_and_HSV

Implementation

String hsv(num hue, num saturation, num value) =>
    (_chalk.hsv(hue, saturation, value))(this);