xyz method

String xyz(
  1. num x,
  2. num y,
  3. num z
)

Creates String with foreground color defined from XYZ color space parameters. https://en.wikipedia.org/wiki/CIE_1931_color_space

Implementation

String xyz(num x, num y, num z) => (_chalk.xyz(x, y, z))(this);