UNPKG

react-image-palette-hook

Version:

A React hook to extract and generate color palettes from images

12 lines (11 loc) 215 B
export interface RGB { r: number; g: number; b: number; } export interface PaletteData { vibrant: string | null; darkVibrant: string | null; darkMuted: string | null; loading: boolean; }