UNPKG

911 BTypeScriptView Raw
1interface PlatformColors {
2 primary: string;
3 secondary: string;
4 grey: string;
5 searchBg: string;
6 success: string;
7 error: string;
8 warning: string;
9}
10export interface Colors {
11 readonly primary: string;
12 readonly secondary: string;
13 readonly white: string;
14 readonly black: string;
15 readonly grey0: string;
16 readonly grey1: string;
17 readonly grey2: string;
18 readonly grey3: string;
19 readonly grey4: string;
20 readonly grey5: string;
21 readonly greyOutline: string;
22 readonly searchBg: string;
23 readonly success: string;
24 readonly warning: string;
25 readonly error: string;
26 readonly disabled: string;
27 readonly divider: string;
28 readonly platform: {
29 ios: PlatformColors;
30 android: PlatformColors;
31 web: PlatformColors;
32 default: PlatformColors;
33 };
34}
35declare const colors: Colors;
36export default colors;