blue function

String blue(
  1. String text, {
  2. AnsiColor background = AnsiColor.none,
  3. bool bold = true,
})

Wraps the passed text with the ANSI escape sequence for the color red. Use this to control the color of text when printing to the console.

print(blue('a dark message'));

The text to wrap. By default the color is bold however you can turn off bold by setting the bold argment to false:

print(blue('a dark message', bold: false));

background is the background color to use when printing the text. Defaults to White.

Implementation

String blue(
  String text, {
  AnsiColor background = AnsiColor.none,
  bool bold = true,
}) =>
    AnsiColor._apply(
      AnsiColor(AnsiColor.codeBlue, bold: bold),
      text,
      background: background,
    );