@artiq/stylize
Version:
Lightweight terminal text stylizer with ANSI, RGB, HEX colors, multiple styling modes, and chainable proxy API.
18 lines (16 loc) • 376 B
JavaScript
/**
* ANSI foreground color codes for bright terminal colors.
*
* Maps bright color names to their corresponding ANSI codes (90–97).
*/
const brightFgColorCodes = {
brightBlack: '90',
brightRed: '91',
brightGreen: '92',
brightYellow: '93',
brightBlue: '94',
brightMagenta: '95',
brightCyan: '96',
brightWhite: '97'
};
export default brightFgColorCodes;