@artiq/stylize
Version:
Lightweight terminal text stylizer with ANSI, RGB, HEX colors, multiple styling modes, and chainable proxy API.
18 lines (16 loc) • 413 B
JavaScript
/**
* ANSI background color codes for bright terminal colors.
*
* Maps bright background color names to their corresponding ANSI codes (100–107).
*/
const brightBgColorCodes = {
bgBrightBlack: '100',
bgBrightRed: '101',
bgBrightGreen: '102',
bgBrightYellow: '103',
bgBrightBlue: '104',
bgBrightMagenta: '105',
bgBrightCyan: '106',
bgBrightWhite: '107'
};
export default brightBgColorCodes;