es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
20 lines (19 loc) • 627 B
TypeScript
import { ColorFunction } from "./types.js";
//#region src/server/colors/bgRgb.d.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'));
*/
declare function bgRgb(r: number, g: number, b: number): ColorFunction;
//#endregion
export { bgRgb };