rgb16m method

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

Create String with a foreground color with the specified RGB values (forces using ANSI 16m SGR codes, even if level is not 3).

Implementation

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