UNPKG

niram

Version:

A javascript library to convert between various css colour formats.

12 lines (11 loc) 303 B
interface Rgba { type: string; redHex: string; greenHex: string; blueHex: string; alphaFraction?: number; alphaHex?: string; } export declare function getRgbHexAndAlpha(colour: string): Rgba; export declare function getColourName(hexCode: string): string | undefined; export {};