UNPKG

idea-toolbox

Version:
12 lines (11 loc) 183 B
/** * A color in the palette. */ export interface Color { name?: string; hex: string; } /** * Some nice colors to use in the web. */ export declare const COLORS: Color[];