levelColors property

Map<Level, AnsiColor> levelColors
final

Implementation

static final levelColors = {
  Level.trace: AnsiColor.fg(AnsiColor.grey(0.5)),
  Level.debug: const AnsiColor.none(),
  Level.info: const AnsiColor.fg(12),
  Level.warning: const AnsiColor.fg(208),
  Level.error: const AnsiColor.fg(196),
  Level.fatal: const AnsiColor.fg(199),
};