/** * good for age range // from newborn → to old */ export declare const viridis: string[]; /** * from light → to hard (errors) */ export declare const magma: string[]; export declare const palettes: { viridis: string[]; magma: string[]; density: string[]; salinity: string[]; sunset: string[]; rainbow: string[]; spectrum: string[]; teal_red: string[]; blue_red: string[]; lime_rose: string[]; viridis_magma: string[]; }; export type Palette = keyof typeof palettes; /** * Just named colors */ export declare const categoricalColors: { green_light: string; green_bright: string; green_dark: string; violet_light: string; violet_bright: string; violet_dark: string; orange_light: string; orange_bright: string; orange_dark: string; teal_light: string; teal_bright: string; teal_dark: string; rose_light: string; rose_bright: string; rose_dark: string; lime_light: string; lime_bright: string; lime_dark: string; blue_light: string; blue_bright: string; blue_dark: string; red_light: string; red_bright: string; red_dark: string; grey_light: string; grey_bright: string; grey_dark: string; }; export type CategoricalColor = keyof typeof categoricalColors; //# sourceMappingURL=palette.d.ts.map