UNPKG

pretty-easy-rgb-to-hex

Version:
11 lines (10 loc) 230 B
/** * @description * Makes a HEX color value out of an array * of valid RGB values and return it * * @export * @param {number[]} colors * @returns {string} */ export declare const hexValue: (colors: number[]) => string;