UNPKG

jc-color

Version:

A JavaScript tool for color compute and console print tool both for NodeJS and Browser.

6 lines (5 loc) 255 B
import { RgbColorChannels } from "../types"; declare function channelsToRgb(channels: RgbColorChannels): string; declare function hexToRgb(val: string): string; declare function hslToRgb(val: string): string; export { channelsToRgb, hexToRgb, hslToRgb };