forked from uber/baseweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.js
94 lines (84 loc) · 1.7 KB
/
types.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
Copyright (c) 2018-2020 Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
// @flow
export type ColorTokensT = {
white: string,
black: string,
gray50: string,
gray100: string,
gray200: string,
gray300: string,
gray400: string,
gray500: string,
gray600: string,
gray700: string,
gray800: string,
gray900: string,
platinum50: string,
platinum100: string,
platinum200: string,
platinum300: string,
platinum400: string,
platinum500: string,
platinum600: string,
platinum700: string,
blue50: string,
blue100: string,
blue200: string,
blue300: string,
blue400: string,
blue500: string,
blue600: string,
blue700: string,
red50: string,
red100: string,
red200: string,
red300: string,
red400: string,
red500: string,
red600: string,
red700: string,
green50: string,
green100: string,
green200: string,
green300: string,
green400: string,
green500: string,
green600: string,
green700: string,
orange50: string,
orange100: string,
orange200: string,
orange300: string,
orange400: string,
orange500: string,
orange600: string,
orange700: string,
purple50: string,
purple100: string,
purple200: string,
purple300: string,
purple400: string,
purple500: string,
purple600: string,
purple700: string,
yellow50: string,
yellow100: string,
yellow200: string,
yellow300: string,
yellow400: string,
yellow500: string,
yellow600: string,
yellow700: string,
brown50: string,
brown100: string,
brown200: string,
brown300: string,
brown400: string,
brown500: string,
brown600: string,
brown700: string,
};