es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
22 lines (21 loc) • 658 B
JavaScript
import { wrapAnsiBg } from "./_internal/wrapAnsiBg.mjs";
//#region src/server/colors/bgRgb.ts
/**
* Returns a function that wraps text with the given 24-bit (truecolor) background.
*
* @param r - Red component (0–255).
* @param g - Green component (0–255).
* @param b - Blue component (0–255).
* @returns A color function that wraps text with the chosen RGB background.
*
* @example
* import { colors } from 'es-toolkit/server';
*
* const highlight = colors.bgRgb(255, 99, 71);
* console.log(highlight('hello'));
*/
function bgRgb(r, g, b) {
return (text) => wrapAnsiBg(`\x1b[48;2;${r};${g};${b}m`, "\x1B[49m", text);
}
//#endregion
export { bgRgb };