onLab method

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

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

Implementation

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