onXyz method

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

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

Implementation

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