UNPKG

253 BTypeScriptView Raw
1import type { IColor } from './interfaces';
2/**
3 * Converts a color hue to an HTML color string (with # prefix).
4 * This implementation ignores all components of `color` except hue.
5 */
6export declare function getFullColorString(color: IColor): string;