warningBold static method

String warningBold(
  1. String text
)

Bold yellow for warning headers

Implementation

static String warningBold(String text) {
  return _applyStyle(text, (t) => chalk.yellow.bold(t));
}