UNPKG

@saas-ui/palette

Version:

Color palette generator for Chakra UI

11 lines (9 loc) 288 B
interface PaletteColors { [index: string]: string; } interface PaletteOptions { blackLuminance?: number; colors?: PaletteColors; } declare const createPalette: (hex: string, options?: PaletteOptions) => any; export { type PaletteColors, type PaletteOptions, createPalette };