UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

19 lines (18 loc) 604 B
// Colors. export const ANSI_DEFAULT = "\x1b[39m"; export const ANSI_BLACK = "\x1b[30m"; export const ANSI_RED = "\x1b[31m"; export const ANSI_GREEN = "\x1b[32m"; export const ANSI_YELLOW = "\x1b[33m"; export const ANSI_BLUE = "\x1b[34m"; export const ANSI_MAGENTA = "\x1b[35m"; export const ANSI_CYAN = "\x1b[36m"; export const ANSI_WHITE = "\x1b[37m"; // Styles. export const ANSI_BOLD = "\x1b[1m"; export const ANSI_ITALIC = "\x1b[3m"; export const ANSI_UNDERLINE = "\x1b[4m"; export const ANSI_STRIKE = "\x1b[9m"; export const ANSI_INVERSE = "\x1b[7m"; // Reset. export const ANSI_RESET = "\x1b[0m";