af-consul
Version:
A highly specialized function library
44 lines (40 loc) • 1.2 kB
text/typescript
// 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;