import { ColorFunction } from "./types.js";

//#region src/server/colors/rgb.d.ts
/**
 * Returns a function that wraps text with the given 24-bit (truecolor) foreground.
 *
 * @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 foreground.
 *
 * @example
 * import { colors } from 'es-toolkit/server';
 *
 * const brand = colors.rgb(255, 99, 71);
 * console.log(brand('hello'));
 */
declare function rgb(r: number, g: number, b: number): ColorFunction;
//#endregion
export { rgb };