UNPKG

@bazilio-san/af-stream

Version:
55 lines (49 loc) 1.45 kB
// noinspection JSUnusedGlobalSymbols export const reset = '\x1b[0m'; export const rs = reset; export const clear = '\x1b[K'; export const bold = '\x1b[1m'; export const boldOff = '\x1b[21m'; export const italics = '\x1b[3m'; export const italicsOff = '\x1b[23m'; export const def = '\x1b[39m'; export const white = '\x1b[37m'; export const w = white; export const black = '\x1b[30m'; export const bk = black; export const red = '\x1b[31m'; export const r = red; export const green = '\x1b[32m'; export const g = green; export const yellow = '\x1b[33m'; export const y = yellow; export const blue = '\x1b[34m'; export const b = blue; export const magenta = '\x1b[35m'; export const m = magenta; export const cyan = '\x1b[36m'; export const c = cyan; export const lWhite = '\x1b[97m'; export const lw = lWhite; export const lGray = '\x1b[90m'; export const lRed = '\x1b[91m'; export const lr = lRed; export const lGreen = '\x1b[92m'; export const lg = lGreen; export const lYellow = '\x1b[93m'; export const ly = lYellow; export const lBlue = '\x1b[94m'; export const lb = lBlue; export const lMagenta = '\x1b[95m'; export const lm = lMagenta; export const lCyan = '\x1b[96m'; export const lc = lCyan; export const underlineOff = '\x1b[24m'; export const defaultN = 39; export const greenN = 32; export const redN = 31; export const yellowN = 33; export const blueN = 34; export const magentaN = 35; export const cyanN = 36; export const greyN = 36;