lab method

String lab(
  1. num l,
  2. num a,
  3. num b
)

Creates String with foreground color defined from lab color space parameters. https://en.wikipedia.org/wiki/CIELAB_color_space#CIELAB

Implementation

String lab(num l, num a, num b) => (_chalk.lab(l, a, b))(this);