ansiColors top-level constant

Map<String, String> const ansiColors

ANSI escape codes for colors

Implementation

const Map<String, String> ansiColors = <String, String>{
  'red': '\x1B[31m',
  'green': '\x1B[32m',
  'yellow': '\x1B[33m',
};