UNPKG

417 BTypeScriptView Raw
1import { colorPaletteType } from './types';
2export declare const colorPalette8: {
3 background: string;
4 text: string;
5}[];
6export declare const colorPalette16: {
7 background: string;
8 text: string;
9}[];
10export declare const colorPalette24: {
11 background: string;
12 text: string;
13}[];
14export declare const colorPalette: (palette?: colorPaletteType) => {
15 background: string;
16 text: string;
17}[];