info static method

String info(
  1. String text
)

Formats text as general information with gray styling

text The information text to format

Returns the formatted information string

Implementation

static String info(String text) {
  return colorize(text, gray);
}