dim static method

String dim(
  1. String text
)

Dimmed/gray text

Implementation

static String dim(String text) {
  return _applyStyle(text, (t) => chalk.gray(t));
}