rgb method

String rgb(
  1. num red,
  2. num green,
  3. num blue
)

Create String with a foreground color with the specified RGB values.

Implementation

String rgb(num red, num green, num blue) =>
    (_chalk.rgb(red, green, blue))(this);