gray static method

String gray(
  1. dynamic str
)

Gray color.

Implementation

static String gray(str) => '\u001b[38;5;246m' + str + reset;