UNPKG

@artiq/stylize

Version:

Lightweight terminal text stylizer with ANSI, RGB, HEX colors, multiple styling modes, and chainable proxy API.

18 lines (16 loc) 337 B
/** * ANSI background color codes for standard terminal colors. * * Maps basic background color names to their ANSI escape codes (40–47). */ const bgColorCodes = { bgBlack: '40', bgRed: '41', bgGreen: '42', bgYellow: '43', bgBlue: '44', bgMagenta: '45', bgCyan: '46', bgWhite: '47' }; export default bgColorCodes;