UNPKG

jc-color

Version:

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

6 lines (5 loc) 281 B
import { RgbColorChannels, RgbaChannels } from "../types"; declare function channelsToHsl(color: RgbColorChannels | RgbaChannels): string; declare function rgbToHsl(val: string): string; declare function hexToHsl(val: string): string; export { rgbToHsl, hexToHsl, channelsToHsl };