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

//#region src/server/colors/bgHex.d.ts
/**
 * Returns a function that wraps text with a 24-bit background color parsed from a hex string.
 * Accepts `#RGB`, `#RRGGBB`, or the same without `#`.
 *
 * @param color - A hex color string (e.g. `"#ff6347"`, `"#f00"`).
 * @returns A color function that wraps text with the parsed RGB background.
 *
 * @example
 * import { colors } from 'es-toolkit/server';
 *
 * console.log(colors.bgHex('#ff6347')('hello'));
 */
declare function bgHex(color: string): ColorFunction;
//#endregion
export { bgHex };