@atlaskit/tokens 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +37 -0
- package/README.md +42 -3
- package/css/atlassian-dark.css +88 -81
- package/css/atlassian-light.css +88 -81
- package/dist/cjs/entry-points/token-default-values.js +15 -0
- package/dist/cjs/figma/synchronize-figma-tokens.js +4 -4
- package/dist/cjs/tokens/atlassian-dark/color/accent.js +25 -28
- package/dist/cjs/tokens/atlassian-dark/color/background.js +49 -196
- package/dist/cjs/tokens/atlassian-dark/color/border.js +2 -8
- package/dist/cjs/tokens/atlassian-dark/color/icon-border.js +5 -20
- package/dist/cjs/tokens/atlassian-dark/color/overlay.js +2 -8
- package/dist/cjs/tokens/atlassian-dark/color/text.js +14 -56
- package/dist/cjs/tokens/atlassian-dark/shadow/shadow.js +2 -8
- package/dist/cjs/tokens/atlassian-dark/utility/utility.js +17 -0
- package/dist/cjs/tokens/atlassian-light/color/accent.js +25 -28
- package/dist/cjs/tokens/atlassian-light/color/background.js +49 -196
- package/dist/cjs/tokens/atlassian-light/color/border.js +2 -8
- package/dist/cjs/tokens/atlassian-light/color/icon-border.js +5 -20
- package/dist/cjs/tokens/atlassian-light/color/overlay.js +2 -8
- package/dist/cjs/tokens/atlassian-light/color/text.js +14 -56
- package/dist/cjs/tokens/atlassian-light/shadow/shadow.js +2 -8
- package/dist/cjs/tokens/atlassian-light/utility/utility.js +17 -0
- package/dist/cjs/tokens/default/color/accent.js +92 -0
- package/dist/cjs/tokens/default/color/background.js +338 -0
- package/dist/cjs/tokens/default/color/border.js +26 -0
- package/dist/cjs/tokens/default/color/icon-border.js +44 -0
- package/dist/cjs/tokens/default/color/overlay.js +26 -0
- package/dist/cjs/tokens/default/color/text.js +100 -0
- package/dist/cjs/tokens/default/shadow/shadow.js +24 -0
- package/dist/cjs/tokens/default/utility/utility.js +20 -0
- package/dist/cjs/tokens/rename-mapping.js +1 -11
- package/dist/cjs/tokens/token-default-values.js +104 -0
- package/dist/cjs/tokens/token-names.js +88 -81
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/entry-points/token-default-values.js +1 -0
- package/dist/es2019/figma/synchronize-figma-tokens.js +4 -4
- package/dist/es2019/tokens/atlassian-dark/color/accent.js +25 -28
- package/dist/es2019/tokens/atlassian-dark/color/background.js +49 -196
- package/dist/es2019/tokens/atlassian-dark/color/border.js +2 -8
- package/dist/es2019/tokens/atlassian-dark/color/icon-border.js +5 -20
- package/dist/es2019/tokens/atlassian-dark/color/overlay.js +2 -8
- package/dist/es2019/tokens/atlassian-dark/color/text.js +14 -56
- package/dist/es2019/tokens/atlassian-dark/shadow/shadow.js +2 -8
- package/dist/es2019/tokens/atlassian-dark/utility/utility.js +10 -0
- package/dist/es2019/tokens/atlassian-light/color/accent.js +25 -28
- package/dist/es2019/tokens/atlassian-light/color/background.js +49 -196
- package/dist/es2019/tokens/atlassian-light/color/border.js +2 -8
- package/dist/es2019/tokens/atlassian-light/color/icon-border.js +5 -20
- package/dist/es2019/tokens/atlassian-light/color/overlay.js +2 -8
- package/dist/es2019/tokens/atlassian-light/color/text.js +14 -56
- package/dist/es2019/tokens/atlassian-light/shadow/shadow.js +2 -8
- package/dist/es2019/tokens/atlassian-light/utility/utility.js +10 -0
- package/dist/es2019/tokens/default/color/accent.js +85 -0
- package/dist/es2019/tokens/default/color/background.js +336 -0
- package/dist/es2019/tokens/default/color/border.js +19 -0
- package/dist/es2019/tokens/default/color/icon-border.js +55 -0
- package/dist/es2019/tokens/default/color/overlay.js +19 -0
- package/dist/es2019/tokens/default/color/text.js +100 -0
- package/dist/es2019/tokens/default/shadow/shadow.js +25 -0
- package/dist/es2019/tokens/default/utility/utility.js +13 -0
- package/dist/es2019/tokens/rename-mapping.js +1 -11
- package/dist/es2019/tokens/token-default-values.js +97 -0
- package/dist/es2019/tokens/token-names.js +88 -81
- package/dist/es2019/version.json +1 -1
- package/dist/esm/entry-points/token-default-values.js +1 -0
- package/dist/esm/figma/synchronize-figma-tokens.js +4 -4
- package/dist/esm/tokens/atlassian-dark/color/accent.js +25 -28
- package/dist/esm/tokens/atlassian-dark/color/background.js +49 -196
- package/dist/esm/tokens/atlassian-dark/color/border.js +2 -8
- package/dist/esm/tokens/atlassian-dark/color/icon-border.js +5 -20
- package/dist/esm/tokens/atlassian-dark/color/overlay.js +2 -8
- package/dist/esm/tokens/atlassian-dark/color/text.js +14 -56
- package/dist/esm/tokens/atlassian-dark/shadow/shadow.js +2 -8
- package/dist/esm/tokens/atlassian-dark/utility/utility.js +10 -0
- package/dist/esm/tokens/atlassian-light/color/accent.js +25 -28
- package/dist/esm/tokens/atlassian-light/color/background.js +49 -196
- package/dist/esm/tokens/atlassian-light/color/border.js +2 -8
- package/dist/esm/tokens/atlassian-light/color/icon-border.js +5 -20
- package/dist/esm/tokens/atlassian-light/color/overlay.js +2 -8
- package/dist/esm/tokens/atlassian-light/color/text.js +14 -56
- package/dist/esm/tokens/atlassian-light/shadow/shadow.js +2 -8
- package/dist/esm/tokens/atlassian-light/utility/utility.js +10 -0
- package/dist/esm/tokens/default/color/accent.js +85 -0
- package/dist/esm/tokens/default/color/background.js +331 -0
- package/dist/esm/tokens/default/color/border.js +19 -0
- package/dist/esm/tokens/default/color/icon-border.js +37 -0
- package/dist/esm/tokens/default/color/overlay.js +19 -0
- package/dist/esm/tokens/default/color/text.js +93 -0
- package/dist/esm/tokens/default/shadow/shadow.js +17 -0
- package/dist/esm/tokens/default/utility/utility.js +13 -0
- package/dist/esm/tokens/rename-mapping.js +1 -11
- package/dist/esm/tokens/token-default-values.js +97 -0
- package/dist/esm/tokens/token-names.js +88 -81
- package/dist/esm/version.json +1 -1
- package/dist/types/entry-points/token-default-values.d.ts +1 -0
- package/dist/types/tokens/atlassian-dark/color/accent.d.ts +2 -2
- package/dist/types/tokens/atlassian-dark/color/background.d.ts +2 -2
- package/dist/types/tokens/atlassian-dark/color/border.d.ts +2 -2
- package/dist/types/tokens/atlassian-dark/color/icon-border.d.ts +2 -2
- package/dist/types/tokens/atlassian-dark/color/overlay.d.ts +2 -2
- package/dist/types/tokens/atlassian-dark/color/text.d.ts +2 -2
- package/dist/types/tokens/atlassian-dark/shadow/shadow.d.ts +2 -2
- package/dist/types/tokens/atlassian-dark/utility/utility.d.ts +5 -0
- package/dist/types/tokens/atlassian-light/color/accent.d.ts +2 -2
- package/dist/types/tokens/atlassian-light/color/background.d.ts +2 -2
- package/dist/types/tokens/atlassian-light/color/border.d.ts +2 -2
- package/dist/types/tokens/atlassian-light/color/icon-border.d.ts +2 -2
- package/dist/types/tokens/atlassian-light/color/overlay.d.ts +2 -2
- package/dist/types/tokens/atlassian-light/color/text.d.ts +2 -2
- package/dist/types/tokens/atlassian-light/shadow/shadow.d.ts +2 -2
- package/dist/types/tokens/atlassian-light/utility/utility.d.ts +5 -0
- package/dist/types/tokens/default/color/accent.d.ts +3 -0
- package/dist/types/tokens/default/color/background.d.ts +3 -0
- package/dist/types/tokens/default/color/border.d.ts +3 -0
- package/dist/types/tokens/default/color/icon-border.d.ts +3 -0
- package/dist/types/tokens/default/color/overlay.d.ts +3 -0
- package/dist/types/tokens/default/color/text.d.ts +3 -0
- package/dist/types/tokens/default/shadow/shadow.d.ts +3 -0
- package/dist/types/tokens/default/utility/utility.d.ts +5 -0
- package/dist/types/tokens/token-default-values.d.ts +94 -0
- package/dist/types/tokens/token-names.d.ts +176 -162
- package/dist/types/types.d.ts +22 -4
- package/package.json +4 -2
- package/token-default-values/package.json +7 -0
- package/tokens-browser-extension/README.md +28 -0
- package/tokens-browser-extension/atlassian-theme.css +375 -0
- package/tokens-browser-extension/background.js +75 -0
- package/tokens-browser-extension/content-script.js +75 -0
- package/tokens-browser-extension/devtools.html +1 -0
- package/tokens-browser-extension/devtools.js +14 -0
- package/tokens-browser-extension/manifest.json +36 -0
- package/tokens-browser-extension/messageback-script.js +10 -0
- package/tokens-browser-extension/messaging.js +36 -0
- package/tokens-browser-extension/panel.html +25 -0
- package/tokens-browser-extension/panel.js +46 -0
- package/tokens-browser-extension/toast.png +0 -0
|
@@ -8,327 +8,180 @@ var color = {
|
|
|
8
8
|
color: {
|
|
9
9
|
background: {
|
|
10
10
|
sunken: {
|
|
11
|
-
value: 'N100A'
|
|
12
|
-
attributes: {
|
|
13
|
-
group: 'paint'
|
|
14
|
-
}
|
|
11
|
+
value: 'N100A'
|
|
15
12
|
},
|
|
16
13
|
default: {
|
|
17
|
-
value: 'N0'
|
|
18
|
-
attributes: {
|
|
19
|
-
group: 'paint'
|
|
20
|
-
}
|
|
14
|
+
value: 'N0'
|
|
21
15
|
},
|
|
22
16
|
card: {
|
|
23
|
-
value: 'N0'
|
|
24
|
-
attributes: {
|
|
25
|
-
group: 'paint'
|
|
26
|
-
}
|
|
17
|
+
value: 'N0'
|
|
27
18
|
},
|
|
28
19
|
overlay: {
|
|
29
|
-
value: 'N0'
|
|
30
|
-
attributes: {
|
|
31
|
-
group: 'paint'
|
|
32
|
-
}
|
|
20
|
+
value: 'N0'
|
|
33
21
|
},
|
|
34
22
|
selected: {
|
|
35
23
|
resting: {
|
|
36
|
-
value: 'B100'
|
|
37
|
-
attributes: {
|
|
38
|
-
group: 'paint'
|
|
39
|
-
}
|
|
24
|
+
value: 'B100'
|
|
40
25
|
},
|
|
41
26
|
hover: {
|
|
42
|
-
value: 'B200'
|
|
43
|
-
attributes: {
|
|
44
|
-
group: 'paint'
|
|
45
|
-
}
|
|
27
|
+
value: 'B200'
|
|
46
28
|
},
|
|
47
29
|
pressed: {
|
|
48
|
-
value: 'B300'
|
|
49
|
-
attributes: {
|
|
50
|
-
group: 'paint'
|
|
51
|
-
}
|
|
30
|
+
value: 'B300'
|
|
52
31
|
}
|
|
53
32
|
},
|
|
54
33
|
blanket: {
|
|
55
|
-
value: 'N500A'
|
|
56
|
-
attributes: {
|
|
57
|
-
group: 'paint'
|
|
58
|
-
}
|
|
34
|
+
value: 'N500A'
|
|
59
35
|
},
|
|
60
36
|
disabled: {
|
|
61
|
-
value: 'N200A'
|
|
62
|
-
attributes: {
|
|
63
|
-
group: 'paint'
|
|
64
|
-
}
|
|
37
|
+
value: 'N200A'
|
|
65
38
|
},
|
|
66
39
|
boldBrand: {
|
|
67
40
|
resting: {
|
|
68
|
-
value: 'B700'
|
|
69
|
-
attributes: {
|
|
70
|
-
group: 'paint'
|
|
71
|
-
}
|
|
41
|
+
value: 'B700'
|
|
72
42
|
},
|
|
73
43
|
hover: {
|
|
74
|
-
value: 'B800'
|
|
75
|
-
attributes: {
|
|
76
|
-
group: 'paint'
|
|
77
|
-
}
|
|
44
|
+
value: 'B800'
|
|
78
45
|
},
|
|
79
46
|
pressed: {
|
|
80
|
-
value: 'B900'
|
|
81
|
-
attributes: {
|
|
82
|
-
group: 'paint'
|
|
83
|
-
}
|
|
47
|
+
value: 'B900'
|
|
84
48
|
}
|
|
85
49
|
},
|
|
86
50
|
subtleBrand: {
|
|
87
51
|
resting: {
|
|
88
|
-
value: 'B100'
|
|
89
|
-
attributes: {
|
|
90
|
-
group: 'paint'
|
|
91
|
-
}
|
|
52
|
+
value: 'B100'
|
|
92
53
|
},
|
|
93
54
|
hover: {
|
|
94
|
-
value: 'B200'
|
|
95
|
-
attributes: {
|
|
96
|
-
group: 'paint'
|
|
97
|
-
}
|
|
55
|
+
value: 'B200'
|
|
98
56
|
},
|
|
99
57
|
pressed: {
|
|
100
|
-
value: 'B300'
|
|
101
|
-
attributes: {
|
|
102
|
-
group: 'paint'
|
|
103
|
-
}
|
|
58
|
+
value: 'B300'
|
|
104
59
|
}
|
|
105
60
|
},
|
|
106
61
|
boldDanger: {
|
|
107
62
|
resting: {
|
|
108
|
-
value: 'R700'
|
|
109
|
-
attributes: {
|
|
110
|
-
group: 'paint'
|
|
111
|
-
}
|
|
63
|
+
value: 'R700'
|
|
112
64
|
},
|
|
113
65
|
hover: {
|
|
114
|
-
value: 'R800'
|
|
115
|
-
attributes: {
|
|
116
|
-
group: 'paint'
|
|
117
|
-
}
|
|
66
|
+
value: 'R800'
|
|
118
67
|
},
|
|
119
68
|
pressed: {
|
|
120
|
-
value: 'R900'
|
|
121
|
-
attributes: {
|
|
122
|
-
group: 'paint'
|
|
123
|
-
}
|
|
69
|
+
value: 'R900'
|
|
124
70
|
}
|
|
125
71
|
},
|
|
126
72
|
subtleDanger: {
|
|
127
73
|
resting: {
|
|
128
|
-
value: 'R100'
|
|
129
|
-
attributes: {
|
|
130
|
-
group: 'paint'
|
|
131
|
-
}
|
|
74
|
+
value: 'R100'
|
|
132
75
|
},
|
|
133
76
|
hover: {
|
|
134
|
-
value: 'R200'
|
|
135
|
-
attributes: {
|
|
136
|
-
group: 'paint'
|
|
137
|
-
}
|
|
77
|
+
value: 'R200'
|
|
138
78
|
},
|
|
139
79
|
pressed: {
|
|
140
|
-
value: 'R300'
|
|
141
|
-
attributes: {
|
|
142
|
-
group: 'paint'
|
|
143
|
-
}
|
|
80
|
+
value: 'R300'
|
|
144
81
|
}
|
|
145
82
|
},
|
|
146
83
|
boldWarning: {
|
|
147
84
|
resting: {
|
|
148
|
-
value: 'Y400'
|
|
149
|
-
attributes: {
|
|
150
|
-
group: 'paint'
|
|
151
|
-
}
|
|
85
|
+
value: 'Y400'
|
|
152
86
|
},
|
|
153
87
|
hover: {
|
|
154
|
-
value: 'Y500'
|
|
155
|
-
attributes: {
|
|
156
|
-
group: 'paint'
|
|
157
|
-
}
|
|
88
|
+
value: 'Y500'
|
|
158
89
|
},
|
|
159
90
|
pressed: {
|
|
160
|
-
value: 'Y600'
|
|
161
|
-
attributes: {
|
|
162
|
-
group: 'paint'
|
|
163
|
-
}
|
|
91
|
+
value: 'Y600'
|
|
164
92
|
}
|
|
165
93
|
},
|
|
166
94
|
subtleWarning: {
|
|
167
95
|
resting: {
|
|
168
|
-
value: 'Y100'
|
|
169
|
-
attributes: {
|
|
170
|
-
group: 'paint'
|
|
171
|
-
}
|
|
96
|
+
value: 'Y100'
|
|
172
97
|
},
|
|
173
98
|
hover: {
|
|
174
|
-
value: 'Y200'
|
|
175
|
-
attributes: {
|
|
176
|
-
group: 'paint'
|
|
177
|
-
}
|
|
99
|
+
value: 'Y200'
|
|
178
100
|
},
|
|
179
101
|
pressed: {
|
|
180
|
-
value: 'Y300'
|
|
181
|
-
attributes: {
|
|
182
|
-
group: 'paint'
|
|
183
|
-
}
|
|
102
|
+
value: 'Y300'
|
|
184
103
|
}
|
|
185
104
|
},
|
|
186
105
|
boldSuccess: {
|
|
187
106
|
resting: {
|
|
188
|
-
value: 'G700'
|
|
189
|
-
attributes: {
|
|
190
|
-
group: 'paint'
|
|
191
|
-
}
|
|
107
|
+
value: 'G700'
|
|
192
108
|
},
|
|
193
109
|
hover: {
|
|
194
|
-
value: 'G800'
|
|
195
|
-
attributes: {
|
|
196
|
-
group: 'paint'
|
|
197
|
-
}
|
|
110
|
+
value: 'G800'
|
|
198
111
|
},
|
|
199
112
|
pressed: {
|
|
200
|
-
value: 'G900'
|
|
201
|
-
attributes: {
|
|
202
|
-
group: 'paint'
|
|
203
|
-
}
|
|
113
|
+
value: 'G900'
|
|
204
114
|
}
|
|
205
115
|
},
|
|
206
116
|
subtleSuccess: {
|
|
207
117
|
resting: {
|
|
208
|
-
value: 'G100'
|
|
209
|
-
attributes: {
|
|
210
|
-
group: 'paint'
|
|
211
|
-
}
|
|
118
|
+
value: 'G100'
|
|
212
119
|
},
|
|
213
120
|
hover: {
|
|
214
|
-
value: 'G200'
|
|
215
|
-
attributes: {
|
|
216
|
-
group: 'paint'
|
|
217
|
-
}
|
|
121
|
+
value: 'G200'
|
|
218
122
|
},
|
|
219
123
|
pressed: {
|
|
220
|
-
value: 'G300'
|
|
221
|
-
attributes: {
|
|
222
|
-
group: 'paint'
|
|
223
|
-
}
|
|
124
|
+
value: 'G300'
|
|
224
125
|
}
|
|
225
126
|
},
|
|
226
127
|
boldDiscovery: {
|
|
227
128
|
resting: {
|
|
228
|
-
value: 'P700'
|
|
229
|
-
attributes: {
|
|
230
|
-
group: 'paint'
|
|
231
|
-
}
|
|
129
|
+
value: 'P700'
|
|
232
130
|
},
|
|
233
131
|
hover: {
|
|
234
|
-
value: 'P800'
|
|
235
|
-
attributes: {
|
|
236
|
-
group: 'paint'
|
|
237
|
-
}
|
|
132
|
+
value: 'P800'
|
|
238
133
|
},
|
|
239
134
|
pressed: {
|
|
240
|
-
value: 'P900'
|
|
241
|
-
attributes: {
|
|
242
|
-
group: 'paint'
|
|
243
|
-
}
|
|
135
|
+
value: 'P900'
|
|
244
136
|
}
|
|
245
137
|
},
|
|
246
138
|
subtleDiscovery: {
|
|
247
139
|
resting: {
|
|
248
|
-
value: 'P100'
|
|
249
|
-
attributes: {
|
|
250
|
-
group: 'paint'
|
|
251
|
-
}
|
|
140
|
+
value: 'P100'
|
|
252
141
|
},
|
|
253
142
|
hover: {
|
|
254
|
-
value: 'P200'
|
|
255
|
-
attributes: {
|
|
256
|
-
group: 'paint'
|
|
257
|
-
}
|
|
143
|
+
value: 'P200'
|
|
258
144
|
},
|
|
259
145
|
pressed: {
|
|
260
|
-
value: 'P300'
|
|
261
|
-
attributes: {
|
|
262
|
-
group: 'paint'
|
|
263
|
-
}
|
|
146
|
+
value: 'P300'
|
|
264
147
|
}
|
|
265
148
|
},
|
|
266
149
|
boldNeutral: {
|
|
267
150
|
resting: {
|
|
268
|
-
value: 'N800'
|
|
269
|
-
attributes: {
|
|
270
|
-
group: 'paint'
|
|
271
|
-
}
|
|
151
|
+
value: 'N800'
|
|
272
152
|
},
|
|
273
153
|
hover: {
|
|
274
|
-
value: 'N900'
|
|
275
|
-
attributes: {
|
|
276
|
-
group: 'paint'
|
|
277
|
-
}
|
|
154
|
+
value: 'N900'
|
|
278
155
|
},
|
|
279
156
|
pressed: {
|
|
280
|
-
value: 'N1000'
|
|
281
|
-
attributes: {
|
|
282
|
-
group: 'paint'
|
|
283
|
-
}
|
|
157
|
+
value: 'N1000'
|
|
284
158
|
}
|
|
285
159
|
},
|
|
286
160
|
transparentNeutral: {
|
|
287
161
|
hover: {
|
|
288
|
-
value: 'N200A'
|
|
289
|
-
attributes: {
|
|
290
|
-
group: 'paint'
|
|
291
|
-
}
|
|
162
|
+
value: 'N200A'
|
|
292
163
|
},
|
|
293
164
|
pressed: {
|
|
294
|
-
value: 'N300A'
|
|
295
|
-
attributes: {
|
|
296
|
-
group: 'paint'
|
|
297
|
-
}
|
|
165
|
+
value: 'N300A'
|
|
298
166
|
}
|
|
299
167
|
},
|
|
300
168
|
subtleNeutral: {
|
|
301
169
|
resting: {
|
|
302
|
-
value: 'N200A'
|
|
303
|
-
attributes: {
|
|
304
|
-
group: 'paint'
|
|
305
|
-
}
|
|
170
|
+
value: 'N200A'
|
|
306
171
|
},
|
|
307
172
|
hover: {
|
|
308
|
-
value: 'N300A'
|
|
309
|
-
attributes: {
|
|
310
|
-
group: 'paint'
|
|
311
|
-
}
|
|
173
|
+
value: 'N300A'
|
|
312
174
|
},
|
|
313
175
|
pressed: {
|
|
314
|
-
value: 'N400A'
|
|
315
|
-
attributes: {
|
|
316
|
-
group: 'paint'
|
|
317
|
-
}
|
|
176
|
+
value: 'N400A'
|
|
318
177
|
}
|
|
319
178
|
},
|
|
320
179
|
subtleBorderedNeutral: {
|
|
321
180
|
resting: {
|
|
322
|
-
value: 'N100A'
|
|
323
|
-
attributes: {
|
|
324
|
-
group: 'paint'
|
|
325
|
-
}
|
|
181
|
+
value: 'N100A'
|
|
326
182
|
},
|
|
327
183
|
pressed: {
|
|
328
|
-
value: 'N200A'
|
|
329
|
-
attributes: {
|
|
330
|
-
group: 'paint'
|
|
331
|
-
}
|
|
184
|
+
value: 'N200A'
|
|
332
185
|
}
|
|
333
186
|
}
|
|
334
187
|
}
|
|
@@ -8,34 +8,19 @@ var color = {
|
|
|
8
8
|
color: {
|
|
9
9
|
iconBorder: {
|
|
10
10
|
brand: {
|
|
11
|
-
value: 'B600'
|
|
12
|
-
attributes: {
|
|
13
|
-
group: 'paint'
|
|
14
|
-
}
|
|
11
|
+
value: 'B600'
|
|
15
12
|
},
|
|
16
13
|
danger: {
|
|
17
|
-
value: 'R600'
|
|
18
|
-
attributes: {
|
|
19
|
-
group: 'paint'
|
|
20
|
-
}
|
|
14
|
+
value: 'R600'
|
|
21
15
|
},
|
|
22
16
|
warning: {
|
|
23
|
-
value: 'O600'
|
|
24
|
-
attributes: {
|
|
25
|
-
group: 'paint'
|
|
26
|
-
}
|
|
17
|
+
value: 'O600'
|
|
27
18
|
},
|
|
28
19
|
success: {
|
|
29
|
-
value: 'G600'
|
|
30
|
-
attributes: {
|
|
31
|
-
group: 'paint'
|
|
32
|
-
}
|
|
20
|
+
value: 'G600'
|
|
33
21
|
},
|
|
34
22
|
discovery: {
|
|
35
|
-
value: 'P600'
|
|
36
|
-
attributes: {
|
|
37
|
-
group: 'paint'
|
|
38
|
-
}
|
|
23
|
+
value: 'P600'
|
|
39
24
|
}
|
|
40
25
|
}
|
|
41
26
|
}
|
|
@@ -8,90 +8,48 @@ var color = {
|
|
|
8
8
|
color: {
|
|
9
9
|
text: {
|
|
10
10
|
selected: {
|
|
11
|
-
value: 'B700'
|
|
12
|
-
attributes: {
|
|
13
|
-
group: 'paint'
|
|
14
|
-
}
|
|
11
|
+
value: 'B700'
|
|
15
12
|
},
|
|
16
13
|
highEmphasis: {
|
|
17
|
-
value: 'N1000'
|
|
18
|
-
attributes: {
|
|
19
|
-
group: 'paint'
|
|
20
|
-
}
|
|
14
|
+
value: 'N1000'
|
|
21
15
|
},
|
|
22
16
|
mediumEmphasis: {
|
|
23
|
-
value: 'N800'
|
|
24
|
-
attributes: {
|
|
25
|
-
group: 'paint'
|
|
26
|
-
}
|
|
17
|
+
value: 'N800'
|
|
27
18
|
},
|
|
28
19
|
lowEmphasis: {
|
|
29
|
-
value: 'N700'
|
|
30
|
-
attributes: {
|
|
31
|
-
group: 'paint'
|
|
32
|
-
}
|
|
20
|
+
value: 'N700'
|
|
33
21
|
},
|
|
34
22
|
onBold: {
|
|
35
|
-
value: 'N0'
|
|
36
|
-
attributes: {
|
|
37
|
-
group: 'paint'
|
|
38
|
-
}
|
|
23
|
+
value: 'N0'
|
|
39
24
|
},
|
|
40
25
|
onBoldWarning: {
|
|
41
|
-
value: 'N1000'
|
|
42
|
-
attributes: {
|
|
43
|
-
group: 'paint'
|
|
44
|
-
}
|
|
26
|
+
value: 'N1000'
|
|
45
27
|
},
|
|
46
28
|
link: {
|
|
47
29
|
resting: {
|
|
48
|
-
value: 'B700'
|
|
49
|
-
attributes: {
|
|
50
|
-
group: 'paint'
|
|
51
|
-
}
|
|
30
|
+
value: 'B700'
|
|
52
31
|
},
|
|
53
32
|
pressed: {
|
|
54
|
-
value: 'B800'
|
|
55
|
-
attributes: {
|
|
56
|
-
group: 'paint'
|
|
57
|
-
}
|
|
33
|
+
value: 'B800'
|
|
58
34
|
}
|
|
59
35
|
},
|
|
60
36
|
brand: {
|
|
61
|
-
value: 'B800'
|
|
62
|
-
attributes: {
|
|
63
|
-
group: 'paint'
|
|
64
|
-
}
|
|
37
|
+
value: 'B800'
|
|
65
38
|
},
|
|
66
39
|
warning: {
|
|
67
|
-
value: 'O800'
|
|
68
|
-
attributes: {
|
|
69
|
-
group: 'paint'
|
|
70
|
-
}
|
|
40
|
+
value: 'O800'
|
|
71
41
|
},
|
|
72
42
|
danger: {
|
|
73
|
-
value: 'R800'
|
|
74
|
-
attributes: {
|
|
75
|
-
group: 'paint'
|
|
76
|
-
}
|
|
43
|
+
value: 'R800'
|
|
77
44
|
},
|
|
78
45
|
success: {
|
|
79
|
-
value: 'G800'
|
|
80
|
-
attributes: {
|
|
81
|
-
group: 'paint'
|
|
82
|
-
}
|
|
46
|
+
value: 'G800'
|
|
83
47
|
},
|
|
84
48
|
discovery: {
|
|
85
|
-
value: 'P800'
|
|
86
|
-
attributes: {
|
|
87
|
-
group: 'paint'
|
|
88
|
-
}
|
|
49
|
+
value: 'P800'
|
|
89
50
|
},
|
|
90
51
|
disabled: {
|
|
91
|
-
value: 'N500'
|
|
92
|
-
attributes: {
|
|
93
|
-
group: 'paint'
|
|
94
|
-
}
|
|
52
|
+
value: 'N500'
|
|
95
53
|
}
|
|
96
54
|
}
|
|
97
55
|
}
|
|
@@ -23,10 +23,7 @@ var shadow = {
|
|
|
23
23
|
},
|
|
24
24
|
color: 'N1100',
|
|
25
25
|
opacity: 0.31
|
|
26
|
-
}]
|
|
27
|
-
attributes: {
|
|
28
|
-
group: 'shadow'
|
|
29
|
-
}
|
|
26
|
+
}]
|
|
30
27
|
},
|
|
31
28
|
overlay: {
|
|
32
29
|
value: [{
|
|
@@ -45,10 +42,7 @@ var shadow = {
|
|
|
45
42
|
},
|
|
46
43
|
color: 'N1100',
|
|
47
44
|
opacity: 0.31
|
|
48
|
-
}]
|
|
49
|
-
attributes: {
|
|
50
|
-
group: 'shadow'
|
|
51
|
-
}
|
|
45
|
+
}]
|
|
52
46
|
}
|
|
53
47
|
}
|
|
54
48
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var utility = {
|
|
8
|
+
UNSAFE_util: {
|
|
9
|
+
transparent: {
|
|
10
|
+
value: 'transparent'
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
var _default = {
|
|
15
|
+
utility: utility
|
|
16
|
+
};
|
|
17
|
+
exports.default = _default;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var color = {
|
|
8
|
+
color: {
|
|
9
|
+
accent: {
|
|
10
|
+
boldBlue: {
|
|
11
|
+
attributes: {
|
|
12
|
+
group: 'paint',
|
|
13
|
+
description: 'Use for blue backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
boldGreen: {
|
|
17
|
+
attributes: {
|
|
18
|
+
group: 'paint',
|
|
19
|
+
description: 'Use for green backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
boldOrange: {
|
|
23
|
+
attributes: {
|
|
24
|
+
group: 'paint',
|
|
25
|
+
description: 'Use for orange backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
boldPurple: {
|
|
29
|
+
attributes: {
|
|
30
|
+
group: 'paint',
|
|
31
|
+
description: 'Use for purple backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
boldRed: {
|
|
35
|
+
attributes: {
|
|
36
|
+
group: 'paint',
|
|
37
|
+
description: 'Use for red backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
boldTeal: {
|
|
41
|
+
attributes: {
|
|
42
|
+
group: 'paint',
|
|
43
|
+
description: 'Use for teal backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
subtleBlue: {
|
|
47
|
+
attributes: {
|
|
48
|
+
group: 'paint',
|
|
49
|
+
description: 'Use for blue subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
subtleGreen: {
|
|
53
|
+
attributes: {
|
|
54
|
+
group: 'paint',
|
|
55
|
+
description: 'Use for green subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
subtleMagenta: {
|
|
59
|
+
attributes: {
|
|
60
|
+
group: 'paint',
|
|
61
|
+
description: 'Use for magenta subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
subtleOrange: {
|
|
65
|
+
attributes: {
|
|
66
|
+
group: 'paint',
|
|
67
|
+
description: 'Use for orange subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
subtlePurple: {
|
|
71
|
+
attributes: {
|
|
72
|
+
group: 'paint',
|
|
73
|
+
description: 'Use for purple subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
subtleRed: {
|
|
77
|
+
attributes: {
|
|
78
|
+
group: 'paint',
|
|
79
|
+
description: 'Use for red subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
subtleTeal: {
|
|
83
|
+
attributes: {
|
|
84
|
+
group: 'paint',
|
|
85
|
+
description: 'Use for teal subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
};
|
|
91
|
+
var _default = color;
|
|
92
|
+
exports.default = _default;
|