UNPKG

khroma

Version:

A collection of functions for manipulating CSS colors, inspired by SASS.

8 lines (7 loc) 196 B
import type { Channels } from '../types'; declare const Hex: { re: RegExp; parse: (color: string) => Channels | void; stringify: (channels: Channels) => string; }; export default Hex;