All files / ts/utils colors.ts

100% Statements 19/19
100% Branches 2/2
100% Functions 1/1
100% Lines 18/18

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 202x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x    
export enum COLORS {
  DEFAULT = '\x1b[0m',
  GRAY = '\x1b[0;30m',
  LIGHT_GRAY = '\x1b[1;30m',
  RED = '\x1b[0;31m',
  LIGHT_RED = '\x1b[1;31m',
  GREEN = '\x1b[0;32m',
  LIGHT_GREEN = '\x1b[1;32m',
  YELLOW = '\x1b[0;33m',
  LIGHT_YELLOW = '\x1b[1;33m',
  BLUE = '\x1b[0;34m',
  LIGHT_BLUE = '\x1b[1;34m',
  PURPLE = '\x1b[0;35m',
  LIGHT_PURPLE = '\x1b[1;35m',
  CYAN = '\x1b[0;36m',
  LIGHT_CYAN = '\x1b[1;36m',
  WHITE = '\x1b[0;37m',
  LIGHT_WHITE = '\x1b[1;37m',
}