UNPKG

pigmentjs

Version:

A zero-dependency colour organisation, creation and manipulation library built for web developers.

14 lines (13 loc) 293 B
export interface RGB { readonly r: number; readonly g: number; readonly b: number; } export interface HSL { readonly h: number; readonly s: number; readonly l: number; } export type ValidatedHex = string; export type RGBString = string; export type HSLString = string;