@jobber/design 0.63.0 → 0.64.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/README.md +29 -15
- package/dist/{icons/iconMap.d.ts → assets/icon.map.d.ts} +166 -165
- package/{foundation.native.d.ts → dist/assets/tokens.all.colors.d.ts} +55 -143
- package/{foundation.android.d.ts → dist/assets/tokens.android.d.ts} +175 -175
- package/dist/assets/tokens.color.d.ts +80 -0
- package/dist/assets/tokens.dark.d.ts +79 -0
- package/{foundation.ios.d.ts → dist/assets/tokens.ios.d.ts} +175 -175
- package/dist/assets/tokens.semantic.d.ts +46 -0
- package/{foundation.d.ts → dist/assets/tokens.web.d.ts} +178 -171
- package/dist/color.css +79 -0
- package/dist/colors.cjs +79 -0
- package/dist/colors.mjs +79 -0
- package/dist/dark.mode.css +115 -0
- package/dist/dark.theme.css +78 -0
- package/dist/foundation.css +369 -0
- package/dist/icon.map.js +562 -0
- package/dist/iconStyles/iconColors.d.ts +148 -0
- package/dist/iconStyles/iconSizes.d.ts +16 -0
- package/dist/iconStyles/iconStyles.mobile.d.ts +1 -0
- package/dist/iconStyles/iconStyles.web.d.ts +2 -0
- package/dist/index.cjs +2462 -0
- package/dist/index.d.ts +50 -3
- package/dist/index.mjs +2447 -0
- package/dist/semantic.css +45 -0
- package/package.json +60 -41
- package/rollup.config.mjs +19 -0
- package/dist/icons/Icon.css.d.ts +0 -40
- package/dist/icons/IconColors.css.d.ts +0 -52
- package/dist/icons/Sizes.css.d.ts +0 -7
- package/dist/icons/getIcon.d.ts +0 -31
- package/dist/icons/getIcon.test.d.ts +0 -1
- package/dist/icons/iconStyles.d.ts +0 -278
- package/dist/index.js +0 -1305
- package/foundation.android.js +0 -352
- package/foundation.css +0 -440
- package/foundation.ios.js +0 -352
- package/foundation.js +0 -317
- package/foundation.native.js +0 -352
- package/foundation.scss +0 -319
- package/icons/Icon.css +0 -125
- package/icons/IconColors.css +0 -193
- package/icons/Sizes.css +0 -16
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,2447 @@
|
|
|
1
|
+
const webIconStyles = {
|
|
2
|
+
icon: {
|
|
3
|
+
fill: "{color.icon}",
|
|
4
|
+
display: "inline-block",
|
|
5
|
+
verticalAlign: "middle",
|
|
6
|
+
},
|
|
7
|
+
longArrowUp: {
|
|
8
|
+
transform: "rotate(90deg)",
|
|
9
|
+
},
|
|
10
|
+
longArrowDown: {
|
|
11
|
+
transform: "rotate(-90deg)",
|
|
12
|
+
},
|
|
13
|
+
longArrowRight: {
|
|
14
|
+
transform: "rotate(180deg)",
|
|
15
|
+
},
|
|
16
|
+
longArrowLeft: {
|
|
17
|
+
transform: "rotate(0deg)",
|
|
18
|
+
},
|
|
19
|
+
thumbsDown: {
|
|
20
|
+
transform: "scaleY(-1)",
|
|
21
|
+
},
|
|
22
|
+
person: {
|
|
23
|
+
fill: "{color.client}",
|
|
24
|
+
},
|
|
25
|
+
clients: {
|
|
26
|
+
fill: "{color.client}",
|
|
27
|
+
},
|
|
28
|
+
company: {
|
|
29
|
+
fill: "{color.client}",
|
|
30
|
+
},
|
|
31
|
+
property: {
|
|
32
|
+
fill: "{color.client}",
|
|
33
|
+
},
|
|
34
|
+
job: {
|
|
35
|
+
fill: "{color.job}",
|
|
36
|
+
},
|
|
37
|
+
jobOnHold: {
|
|
38
|
+
fill: "{color.job}",
|
|
39
|
+
},
|
|
40
|
+
visit: {
|
|
41
|
+
fill: "{color.lime}",
|
|
42
|
+
},
|
|
43
|
+
moveVisits: {
|
|
44
|
+
fill: "{color.lime}",
|
|
45
|
+
},
|
|
46
|
+
event: {
|
|
47
|
+
fill: "{color.yellow}",
|
|
48
|
+
},
|
|
49
|
+
quote: {
|
|
50
|
+
fill: "{color.quote}",
|
|
51
|
+
},
|
|
52
|
+
request: {
|
|
53
|
+
fill: "{color.request}",
|
|
54
|
+
},
|
|
55
|
+
task: {
|
|
56
|
+
fill: "{color.navy}",
|
|
57
|
+
},
|
|
58
|
+
userUnassigned: {
|
|
59
|
+
fill: "{color.destructive}",
|
|
60
|
+
},
|
|
61
|
+
reminder: {
|
|
62
|
+
fill: "{color.destructive}",
|
|
63
|
+
},
|
|
64
|
+
trash: {
|
|
65
|
+
fill: "{color.destructive}",
|
|
66
|
+
},
|
|
67
|
+
checkmark: {
|
|
68
|
+
fill: "{color.success}",
|
|
69
|
+
},
|
|
70
|
+
timer: {
|
|
71
|
+
fill: "{color.lightBlue}",
|
|
72
|
+
},
|
|
73
|
+
invoice: {
|
|
74
|
+
fill: "{color.invoice}",
|
|
75
|
+
},
|
|
76
|
+
invoiceLater: {
|
|
77
|
+
fill: "{color.invoice}",
|
|
78
|
+
},
|
|
79
|
+
sendInvoice: {
|
|
80
|
+
fill: "{color.invoice}",
|
|
81
|
+
},
|
|
82
|
+
paidInvoice: {
|
|
83
|
+
fill: "{color.invoice}",
|
|
84
|
+
},
|
|
85
|
+
badInvoice: {
|
|
86
|
+
fill: "{color.critical}",
|
|
87
|
+
},
|
|
88
|
+
payment: {
|
|
89
|
+
fill: "{color.orange}",
|
|
90
|
+
},
|
|
91
|
+
expense: {
|
|
92
|
+
fill: "{color.orange}",
|
|
93
|
+
},
|
|
94
|
+
video: {
|
|
95
|
+
fill: "{color.lightBlue}",
|
|
96
|
+
},
|
|
97
|
+
excel: {
|
|
98
|
+
fill: "rgb(31, 115, 71)",
|
|
99
|
+
},
|
|
100
|
+
pdf: {
|
|
101
|
+
fill: "rgb(195, 27, 0)",
|
|
102
|
+
},
|
|
103
|
+
word: {
|
|
104
|
+
fill: "rgb(41, 86, 154)",
|
|
105
|
+
},
|
|
106
|
+
runningTimer: {
|
|
107
|
+
animationDuration: "5s",
|
|
108
|
+
animationIterationCount: "infinite",
|
|
109
|
+
animationName: "spinning",
|
|
110
|
+
animationTimingFunction: "linear",
|
|
111
|
+
},
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
const mobileIconStyles = Object.assign(Object.assign({}, webIconStyles), { longArrowUp: {
|
|
115
|
+
transform: [
|
|
116
|
+
{
|
|
117
|
+
rotate: "90deg",
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
}, longArrowDown: {
|
|
121
|
+
transform: [
|
|
122
|
+
{
|
|
123
|
+
rotate: "-90deg",
|
|
124
|
+
},
|
|
125
|
+
],
|
|
126
|
+
}, longArrowRight: {
|
|
127
|
+
transform: [
|
|
128
|
+
{
|
|
129
|
+
rotate: "180deg",
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
}, longArrowLeft: {
|
|
133
|
+
transform: [
|
|
134
|
+
{
|
|
135
|
+
rotate: "0deg",
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
}, thumbsDown: {
|
|
139
|
+
transform: [
|
|
140
|
+
{
|
|
141
|
+
scaleY: -1,
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
} });
|
|
145
|
+
|
|
146
|
+
const iconSizes = {
|
|
147
|
+
tokens: {
|
|
148
|
+
small: {
|
|
149
|
+
width: 16,
|
|
150
|
+
height: 16,
|
|
151
|
+
},
|
|
152
|
+
base: {
|
|
153
|
+
width: 24,
|
|
154
|
+
height: 24,
|
|
155
|
+
},
|
|
156
|
+
large: {
|
|
157
|
+
width: 32,
|
|
158
|
+
height: 32,
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
const iconColors = {
|
|
164
|
+
tokens: {
|
|
165
|
+
white: {
|
|
166
|
+
value: "{color.white}",
|
|
167
|
+
},
|
|
168
|
+
grey: {
|
|
169
|
+
value: "{color.grey}",
|
|
170
|
+
},
|
|
171
|
+
greyBlue: {
|
|
172
|
+
value: "{color.greyBlue}",
|
|
173
|
+
},
|
|
174
|
+
greyBlueDark: {
|
|
175
|
+
value: "{color.greyBlue-.dark}",
|
|
176
|
+
},
|
|
177
|
+
greyBlueLighter: {
|
|
178
|
+
value: "{color.greyBlue-.lighter}",
|
|
179
|
+
},
|
|
180
|
+
blue: {
|
|
181
|
+
value: "{color.blue}",
|
|
182
|
+
},
|
|
183
|
+
lightBlue: {
|
|
184
|
+
value: "{color.lightBlue}",
|
|
185
|
+
},
|
|
186
|
+
green: {
|
|
187
|
+
value: "{color.green}",
|
|
188
|
+
},
|
|
189
|
+
yellow: {
|
|
190
|
+
value: "{color.yellow}",
|
|
191
|
+
},
|
|
192
|
+
red: {
|
|
193
|
+
value: "{color.red}",
|
|
194
|
+
},
|
|
195
|
+
navy: {
|
|
196
|
+
value: "{color.navy}",
|
|
197
|
+
},
|
|
198
|
+
orange: {
|
|
199
|
+
value: "{color.orange}",
|
|
200
|
+
},
|
|
201
|
+
interactive: {
|
|
202
|
+
value: "{color.interactive}",
|
|
203
|
+
},
|
|
204
|
+
interactiveHover: {
|
|
205
|
+
value: "{color.interactive-.hover}",
|
|
206
|
+
},
|
|
207
|
+
destructive: {
|
|
208
|
+
value: "{color.destructive}",
|
|
209
|
+
},
|
|
210
|
+
destructiveHover: {
|
|
211
|
+
value: "{color.destructive-.hover}",
|
|
212
|
+
},
|
|
213
|
+
interactiveSubtle: {
|
|
214
|
+
value: "{color.interactive-.subtle}",
|
|
215
|
+
},
|
|
216
|
+
interactiveSubtleHover: {
|
|
217
|
+
value: "{color.interactive-.subtle-.hover}",
|
|
218
|
+
},
|
|
219
|
+
disabled: {
|
|
220
|
+
value: "{color.disabled}",
|
|
221
|
+
},
|
|
222
|
+
disabledSecondary: {
|
|
223
|
+
value: "{color.disabled-.secondary}",
|
|
224
|
+
},
|
|
225
|
+
focus: {
|
|
226
|
+
value: "{color.focus}",
|
|
227
|
+
},
|
|
228
|
+
critical: {
|
|
229
|
+
value: "{color.critical}",
|
|
230
|
+
},
|
|
231
|
+
criticalSurface: {
|
|
232
|
+
value: "{color.critical-.surface}",
|
|
233
|
+
},
|
|
234
|
+
criticalOnSurface: {
|
|
235
|
+
value: "{color.critical-.onSurface}",
|
|
236
|
+
},
|
|
237
|
+
warning: {
|
|
238
|
+
value: "{color.warning}",
|
|
239
|
+
},
|
|
240
|
+
warningSurface: {
|
|
241
|
+
value: "{color.warning-.surface}",
|
|
242
|
+
},
|
|
243
|
+
warningOnSurface: {
|
|
244
|
+
value: "{color.warning-.onSurface}",
|
|
245
|
+
},
|
|
246
|
+
success: {
|
|
247
|
+
value: "{color.success}",
|
|
248
|
+
},
|
|
249
|
+
successSurface: {
|
|
250
|
+
value: "{color.success-.surface}",
|
|
251
|
+
},
|
|
252
|
+
successOnSurface: {
|
|
253
|
+
value: "{color.success-.onSurface}",
|
|
254
|
+
},
|
|
255
|
+
informative: {
|
|
256
|
+
value: "{color.informative}",
|
|
257
|
+
},
|
|
258
|
+
informativeSurface: {
|
|
259
|
+
value: "{color.informative-.surface}",
|
|
260
|
+
},
|
|
261
|
+
informativeOnSurface: {
|
|
262
|
+
value: "{color.informative-.onSurface}",
|
|
263
|
+
},
|
|
264
|
+
inactive: {
|
|
265
|
+
value: "{color.inactive}",
|
|
266
|
+
},
|
|
267
|
+
inactiveSurface: {
|
|
268
|
+
value: "{color.inactive-.surface}",
|
|
269
|
+
},
|
|
270
|
+
inactiveOnSurface: {
|
|
271
|
+
value: "{color.inactive-.onSurface}",
|
|
272
|
+
},
|
|
273
|
+
heading: {
|
|
274
|
+
value: "{color.heading}",
|
|
275
|
+
},
|
|
276
|
+
text: {
|
|
277
|
+
value: "{color.text}",
|
|
278
|
+
},
|
|
279
|
+
textSecondary: {
|
|
280
|
+
value: "{color.text-.secondary}",
|
|
281
|
+
},
|
|
282
|
+
textReverse: {
|
|
283
|
+
value: "{color.text-.reverse}",
|
|
284
|
+
},
|
|
285
|
+
textReverseSecondary: {
|
|
286
|
+
value: "{color.text-.reverse-.secondary}",
|
|
287
|
+
},
|
|
288
|
+
surface: {
|
|
289
|
+
value: "{color.surface}",
|
|
290
|
+
},
|
|
291
|
+
surfaceHover: {
|
|
292
|
+
value: "{color.surface-.hover}",
|
|
293
|
+
},
|
|
294
|
+
surfaceActive: {
|
|
295
|
+
value: "{color.surface-.active}",
|
|
296
|
+
},
|
|
297
|
+
surfaceBackground: {
|
|
298
|
+
value: "{color.surface-.background}",
|
|
299
|
+
},
|
|
300
|
+
surfaceReverse: {
|
|
301
|
+
value: "{color.surface-.reverse}",
|
|
302
|
+
},
|
|
303
|
+
brand: {
|
|
304
|
+
value: "{color.brand}",
|
|
305
|
+
},
|
|
306
|
+
brandHighlight: {
|
|
307
|
+
value: "{color.brand-.highlight}",
|
|
308
|
+
},
|
|
309
|
+
},
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
var iconMap = {
|
|
313
|
+
"icons": {
|
|
314
|
+
"add": [
|
|
315
|
+
"M12 5a1 1 0 0 0-1 1v5H6a1 1 0 1 0 0 2h5v5a1 1 0 1 0 2 0v-5h5a1 1 0 1 0 0-2h-5V6a1 1 0 0 0-1-1Z"
|
|
316
|
+
],
|
|
317
|
+
"addNote": [
|
|
318
|
+
"M8 2a2 2 0 0 0-2 2v2h2V4h8.586L20 7.414V20H8v-2H6v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 21.414 6L18 2.586A2 2 0 0 0 16.586 2H8Z",
|
|
319
|
+
"M6 8a1 1 0 0 0-1 1v2H3a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2H7V9a1 1 0 0 0-1-1Z"
|
|
320
|
+
],
|
|
321
|
+
"addTag": [
|
|
322
|
+
"M8 13a1 1 0 1 1 0-2h2V9a1 1 0 1 1 2 0v2h2a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2H8Z",
|
|
323
|
+
"M2 7a2 2 0 0 1 2-2h11.809a2 2 0 0 1 1.506.685l4.364 5S22 11 22 12s-.32 1.315-.32 1.315l-4.365 5A2 2 0 0 1 15.81 19H4a2 2 0 0 1-2-2V7Zm13.809 0H4v10h11.809l4.364-5-4.364-5Z"
|
|
324
|
+
],
|
|
325
|
+
"address": [
|
|
326
|
+
"M12.774 21.6C14.595 19.094 19 13.068 19 10a7 7 0 1 0-14 0c0 3.067 4.405 9.093 6.226 11.6a.952.952 0 0 0 1.548 0ZM12 19.5S7 12.761 7 10a5 5 0 0 1 10 0c0 2.761-5 9.5-5 9.5Z",
|
|
327
|
+
"M14 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"
|
|
328
|
+
],
|
|
329
|
+
"afterDate": [
|
|
330
|
+
"M7.001 14.952a.997.997 0 0 1 .292-.66l2-2a1 1 0 0 1 1.414 1.415c-.043.043-.14.15-.269.293H16a1 1 0 1 1 0 2h-5.546c.08.09.133.154.171.2.036.042.06.07.082.093a1 1 0 0 1-1.414 1.414l-2-2A.997.997 0 0 1 7 15.011l.001-.059Z",
|
|
331
|
+
"M15 4a1 1 0 1 1 2 0v1h2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2V4a1 1 0 0 1 2 0v1h6V4Zm4 3H5v2h14V7ZM5 11v8h14v-8H5Z"
|
|
332
|
+
],
|
|
333
|
+
"alert": [
|
|
334
|
+
"M12 7a1 1 0 0 0-1 1v5a1 1 0 1 0 2 0V8a1 1 0 0 0-1-1Zm-1 10a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z",
|
|
335
|
+
"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-2 0a8 8 0 1 0-16 0 8 8 0 0 0 16 0Z"
|
|
336
|
+
],
|
|
337
|
+
"angieslist": [
|
|
338
|
+
"M9.87 19.42 11.417 15H17a5 5 0 0 0 0-10H7a5 5 0 0 0-.252 9.994l1.549 4.425a.833.833 0 0 0 1.573 0Zm.247-5.752-1.034 2.954-1.021-2.92a.5.5 0 0 0-.448-.334l-.784-.039A3.333 3.333 0 0 1 7 6.667h10a3.333 3.333 0 0 1 0 6.666h-6.411a.5.5 0 0 0-.472.335Z"
|
|
339
|
+
],
|
|
340
|
+
"apple": [
|
|
341
|
+
"M18.467 12.754c-.027-2.996 2.453-4.453 2.566-4.52-1.404-2.048-3.581-2.328-4.346-2.35-1.828-.193-3.601 1.094-4.533 1.094-.95 0-2.384-1.076-3.93-1.044-1.988.03-3.849 1.182-4.87 2.97C1.25 12.55 2.82 17.91 4.838 20.856c1.01 1.443 2.189 3.055 3.733 2.998 1.51-.062 2.074-.963 3.897-.963 1.806 0 2.335.963 3.91.927 1.62-.026 2.641-1.45 3.615-2.907 1.166-1.654 1.635-3.283 1.653-3.367-.038-.013-3.147-1.2-3.178-4.79Zm-2.974-8.81c.812-1.015 1.368-2.397 1.213-3.8-1.175.053-2.646.814-3.492 1.807-.75.876-1.418 2.31-1.246 3.66 1.321.099 2.677-.666 3.525-1.666Z"
|
|
342
|
+
],
|
|
343
|
+
"apps": [
|
|
344
|
+
"M3 5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2 0v4h4V5H5Zm8 0a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V5Zm2 0v4h4V5h-4ZM5 13a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2H5Zm4 2v4H5v-4h4Zm7-1a1 1 0 1 1 2 0v2h2a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2h-2a1 1 0 1 1 0-2h2v-2Z"
|
|
345
|
+
],
|
|
346
|
+
"archive": [
|
|
347
|
+
"M5 5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2H5Zm1 1a2 2 0 0 0-2 2h16a2 2 0 0 0-2-2H6Zm3 7a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H9Z",
|
|
348
|
+
"M2 11a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8Zm2 0v8h16v-8H4Z"
|
|
349
|
+
],
|
|
350
|
+
"arrowDown": [
|
|
351
|
+
"M7.703 8.291a.996.996 0 0 0-1.41.001.994.994 0 0 0 0 1.41l5 5.005a.998.998 0 0 0 1.415 0l5-5a.994.994 0 0 0 0-1.41.995.995 0 0 0-1.411-.001L12 12.584 7.703 8.291Z"
|
|
352
|
+
],
|
|
353
|
+
"arrowLeft": [
|
|
354
|
+
"M15.209 15.797a.996.996 0 0 1-.001 1.41.994.994 0 0 1-1.41 0l-5.005-5a.998.998 0 0 1 0-1.415l5-5a.994.994 0 0 1 1.41 0 .996.996 0 0 1 .001 1.411L10.916 11.5l4.293 4.297Z"
|
|
355
|
+
],
|
|
356
|
+
"arrowRight": [
|
|
357
|
+
"M8.791 15.797a.996.996 0 0 0 .001 1.41.994.994 0 0 0 1.41 0l5.005-5a.998.998 0 0 0 0-1.415l-5-5a.994.994 0 0 0-1.41 0 .995.995 0 0 0-.001 1.411l4.288 4.297-4.293 4.297Z"
|
|
358
|
+
],
|
|
359
|
+
"arrowUp": [
|
|
360
|
+
"M16.297 14.709a.996.996 0 0 0 1.41-.001.994.994 0 0 0 0-1.41l-5-5.005a.998.998 0 0 0-1.415 0l-5 5a.994.994 0 0 0 0 1.41.996.996 0 0 0 1.411.001L12 10.416l4.297 4.293Z"
|
|
361
|
+
],
|
|
362
|
+
"automate": [
|
|
363
|
+
"M13.848 3.53a1 1 0 0 0-1.696-1.06l-2.5 4A1 1 0 0 0 10.5 8h2.196l-1.544 2.47a1 1 0 0 0 1.696 1.06l2.5-4A1 1 0 0 0 14.5 6h-2.196l1.544-2.47ZM8 13a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm10 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-8.857 2.045a1 1 0 0 1 1.366-.363c.06.034.615.318 1.492.318.869 0 1.432-.281 1.533-.334a1 1 0 1 1 .932 1.77c-.273.143-1.163.564-2.465.564-1.292 0-2.19-.411-2.495-.588a1 1 0 0 1-.363-1.367Z",
|
|
364
|
+
"M4 6h4v2H4v11h16V8h-3V6h3a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Z"
|
|
365
|
+
],
|
|
366
|
+
"availability": [
|
|
367
|
+
"M2 5a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm0 14a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM4 8a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2H4Zm5 2v4H4v-4h5Zm6-2a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2v-1a2 2 0 0 0-2-2h-5Zm5 2v1h-5v-1h5Z"
|
|
368
|
+
],
|
|
369
|
+
"backArrow": [
|
|
370
|
+
"M7.414 13 10 15.586A1 1 0 0 1 8.586 17l-4.293-4.293a1 1 0 0 1 0-1.414L8.586 7A1 1 0 1 1 10 8.414L7.414 11H19a1 1 0 0 1 0 2H7.414Z"
|
|
371
|
+
],
|
|
372
|
+
"badInvoice": [
|
|
373
|
+
"M13.977 9c.026 0 .65.04 1.316.707a1 1 0 0 0 1.414-1.414A4.487 4.487 0 0 0 15 7.2V7a1 1 0 0 0-2 0v.184A2.996 2.996 0 0 0 11 10c0 2.28 1.727 2.713 2.758 2.97C14.873 13.25 15 13.354 15 14c0 .552-.448 1-.976 1-.026 0-.65-.04-1.317-.707a1 1 0 1 0-1.414 1.415A4.502 4.502 0 0 0 13 16.798v.2a1 1 0 0 0 2 0v-.184A2.995 2.995 0 0 0 17 14c0-2.28-1.726-2.712-2.757-2.97C13.128 10.752 13 10.646 13 10c0-.55.45-1 .977-1Zm-9.265 3-1.445-1.445a.911.911 0 0 1 1.288-1.288L6 10.712l1.445-1.445a.911.911 0 1 1 1.288 1.288L7.288 12l1.445 1.445a.911.911 0 0 1-1.288 1.288L6 13.288l-1.445 1.445a.911.911 0 0 1-1.288-1.288L4.712 12Z",
|
|
374
|
+
"M8 2a2 2 0 0 0-2 2v2h2V4h8.586L20 7.414V20H8v-2H6v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 21.414 6L18 2.586A2 2 0 0 0 16.586 2H8Z",
|
|
375
|
+
"M6 6h2v1H6V6Zm2 11H6v1h2v-1Z"
|
|
376
|
+
],
|
|
377
|
+
"batch": [
|
|
378
|
+
"M9 6a2 2 0 0 1 2-2h4.586A2 2 0 0 1 17 4.586L20.414 8A2 2 0 0 1 21 9.414V18a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2V6Zm2 0v12h8V9.414L15.586 6H11ZM6 7a2 2 0 0 1 2-2v14a2 2 0 0 1-2-2V7ZM5 6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2V6Z"
|
|
379
|
+
],
|
|
380
|
+
"beforeDate": [
|
|
381
|
+
"M16 3a1 1 0 0 0-1 1v1H9V4a1 1 0 0 0-2 0v1H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2V4a1 1 0 0 0-1-1Zm3 4v2H5V7h14ZM5 19v-8h14v8H5Z",
|
|
382
|
+
"M16.999 15.048a.996.996 0 0 1-.292.66l-2 2a1 1 0 0 1-1.414-1.415c.043-.043.14-.15.269-.293H8a1 1 0 1 1 0-2h5.546a5.632 5.632 0 0 1-.171-.2 1.473 1.473 0 0 0-.082-.093 1 1 0 0 1 1.414-1.414l2 2a.997.997 0 0 1 .293.696l-.001.059Z"
|
|
383
|
+
],
|
|
384
|
+
"calendar": [
|
|
385
|
+
"M15 4a1 1 0 1 1 2 0v1h2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2V4a1 1 0 0 1 2 0v1h6V4ZM5 7v2h14V7H5Zm14 4H5v8h14v-8Z"
|
|
386
|
+
],
|
|
387
|
+
"camera": [
|
|
388
|
+
"M8.618 4a2 2 0 0 0-1.789 1.106L6.382 6H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-2.382l-.447-.894A2 2 0 0 0 15.382 4H8.618Zm-1 4 1-2h6.764l1 2H20v10H4V8h3.618ZM16 13a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-2 0a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z"
|
|
389
|
+
],
|
|
390
|
+
"chat": [
|
|
391
|
+
"M3 2a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2v2a1 1 0 0 0 1.65.76L9.87 10H15a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Zm1 6V4h10v4H9.13L7 9.826V8H4Z",
|
|
392
|
+
"M21 12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-2v2a1 1 0 0 1-1.65.76L14.13 20H9a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h12Zm-1 6v-4H10v4h4.87L17 19.826V18h3Z"
|
|
393
|
+
],
|
|
394
|
+
"checkbox": [
|
|
395
|
+
"M8.72 11.211a1 1 0 1 0-1.415 1.414l2.68 3.086a1 1 0 0 0 1.414 0l5.274-4.992a1 1 0 1 0-1.414-1.414l-4.567 4.285-1.973-2.379Z",
|
|
396
|
+
"M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm14 2v14H5V5h14Z"
|
|
397
|
+
],
|
|
398
|
+
"checkmark": [
|
|
399
|
+
"M4.703 12.029a1 1 0 1 0-1.414 1.414l4.699 5.293a1 1 0 0 0 1.414 0L20.695 7.443a1 1 0 1 0-1.414-1.414L8.695 16.615l-3.992-4.586Z"
|
|
400
|
+
],
|
|
401
|
+
"chemical": [
|
|
402
|
+
"M8 4a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2v3.783l4.91 10.803A1 1 0 0 1 19 21H5a1 1 0 0 1-.91-1.414L9 8.783V5a1 1 0 0 1-1-1Zm3 5.217L9.735 12H11a1 1 0 1 1 0 2H9a1.01 1.01 0 0 1-.168-.014L8.372 15H12a1 1 0 1 1 0 2H7.462l-.909 2h10.894L13 9.217V5h-2v4.217Z"
|
|
403
|
+
],
|
|
404
|
+
"clearFilters": [
|
|
405
|
+
"M4.705 4.291a.998.998 0 0 0-1.414 0 .996.996 0 0 0 0 1.414L8.5 11.418V21a1 1 0 0 0 1.6.8l4-3a1 1 0 0 0 .4-.8v-.582l3.793 3.29a.996.996 0 0 0 .679.293.997.997 0 0 0 1.019-1.138.996.996 0 0 0-.284-.569L14.5 14.59v-.008l-2-2v.008l-2.24-2.24-.047-.054L4.705 4.29Zm5.795 9.127 2 2V17.5l-2 1.5v-5.582ZM7.95 5 6 3.05V3h14a1 1 0 0 1 .76 1.65L15 11.37v.68l-1.732-1.732L17.826 5H7.95Z"
|
|
406
|
+
],
|
|
407
|
+
"clients": [
|
|
408
|
+
"M13 14a3.008 3.008 0 0 0-3 2.735c-.01.145.11.265.256.265h5.492c.145 0 .266-.12.25-.265A3.008 3.008 0 0 0 13 14Zm0-1a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z",
|
|
409
|
+
"M4 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2H3a1 1 0 1 1 0-2h1v-3H3a1 1 0 1 1 0-2h1V8H3a1 1 0 0 1 0-2h1V5Zm2 0v15h14V5H6Z"
|
|
410
|
+
],
|
|
411
|
+
"clockIn": [
|
|
412
|
+
"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-2a8 8 0 1 1 0-16 8 8 0 0 1 0 16Z",
|
|
413
|
+
"M9 9a1 1 0 0 1 1.514-.857l5 3a1 1 0 0 1 0 1.714l-5 3A1 1 0 0 1 9 15V9Z"
|
|
414
|
+
],
|
|
415
|
+
"clockOut": [
|
|
416
|
+
"M9 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-4Z",
|
|
417
|
+
"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-2 0a8 8 0 1 0-16 0 8 8 0 0 0 16 0Z"
|
|
418
|
+
],
|
|
419
|
+
"cog": [
|
|
420
|
+
"M13.207 4.017v1.939l1.248.51c.51.209.99.489 1.439.828l1.059.83 1.169-.67.51-.3.998 1.729-.51.3-1.168.669.18 1.329c.05.33.07.589.07.829s-.02.5-.07.829l-.18 1.329 1.169.669.51.3-1 1.728-.51-.3-1.168-.67-1.059.83c-.44.35-.93.63-1.439.83l-1.248.509v1.938l-2.433-.02v-1.938l-1.249-.51a6.44 6.44 0 0 1-1.438-.828l-1.06-.82-1.168.67-.51.3-.999-1.729.51-.3 1.169-.669-.18-1.329c-.05-.34-.07-.599-.07-.839s.02-.5.07-.829l.18-1.329-1.16-.679-.509-.3 1-1.728.509.3 1.159.67 1.059-.83c.45-.34.929-.62 1.438-.83l1.25-.509V3.998l2.432.02Zm-1.212 11.97c2.208 0 4.209-1.77 4.209-3.977 0-2.208-2.001-4.016-4.21-4.016-2.207 0-4.217 1.788-4.217 3.996s2.02 3.996 4.218 3.996Zm2.21-13.968L9.786 2c-.55 0-.999.45-.999.999v1.578c-.7.29-1.339.66-1.918 1.12l-1.379-.8a1.01 1.01 0 0 0-1.368.37l-2 3.456a1.011 1.011 0 0 0 .37 1.37l1.379.798c-.05.36-.09.72-.09 1.1 0 .379.03.739.09 1.108l-1.379.8a1.005 1.005 0 0 0-.492.74.984.984 0 0 0 .122.618l1.999 3.467c.18.32.519.5.859.5.17 0 .34-.04.5-.13l1.378-.8c.58.45 1.219.83 1.918 1.11v1.578c0 .55.45.999 1 .999l4.42.019c.55 0 .999-.45.999-.999v-1.579a8.18 8.18 0 0 0 1.918-1.108l1.378.799c.16.09.33.13.5.13.35 0 .68-.18.87-.5l1.997-3.456a.985.985 0 0 0 .095-.78 1.022 1.022 0 0 0-.464-.59l-1.38-.798c.05-.36.09-.73.09-1.11 0-.379-.03-.739-.09-1.108l1.38-.8c.282-.164.453-.443.492-.74a.984.984 0 0 0-.123-.618L19.86 5.276a.99.99 0 0 0-.859-.5c-.17 0-.34.04-.5.13l-1.378.8a7.942 7.942 0 0 0-1.918-1.11V3.019c0-.55-.45-.999-1-.999Zm-2.21 11.97c-1.1 0-2.22-.9-2.22-1.999 0-1.099 1.12-1.998 2.22-1.998 1.099 0 2.21.919 2.21 2.018 0 1.099-1.101 1.978-2.21 1.978Z"
|
|
421
|
+
],
|
|
422
|
+
"company": [
|
|
423
|
+
"M6 6h2v2H6V6Zm6 0h-2v2h2V6Zm-2 3h2v2h-2V9ZM8 9H6v2h2V9Zm2 3h2v2h-2v-2Zm-2 0H6v2h2v-2Z",
|
|
424
|
+
"M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10V5a2 2 0 0 0-2-2H5Zm8 2v14h-3v-2a1 1 0 1 0-2 0v2H5V5h8Zm3 0h3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-3v-2h3V7h-3V5Z",
|
|
425
|
+
"M16 9h2v2h-2V9Zm2 3h-2v2h2v-2Z"
|
|
426
|
+
],
|
|
427
|
+
"compose": [
|
|
428
|
+
"M9.586 10.417A2 2 0 0 0 9 11.83v3.171h3.172a2 2 0 0 0 1.414-.585l7.83-7.831c.416-.416.61-.968.584-1.512a1.993 1.993 0 0 0-.583-1.317l-1.172-1.171a1.993 1.993 0 0 0-1.317-.584 1.995 1.995 0 0 0-1.511.584l-7.831 7.83ZM11 13.002v-1.171L18.83 4l1.172 1.172-7.83 7.83H11Z",
|
|
429
|
+
"M5 3h8v2H5v14h14v-8h2v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Z"
|
|
430
|
+
],
|
|
431
|
+
"condition": [
|
|
432
|
+
"M4 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm3 4a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm3 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"
|
|
433
|
+
],
|
|
434
|
+
"copy": [
|
|
435
|
+
"M8 4a2 2 0 0 1 2-2h5a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 21 8v8a2 2 0 0 1-2 2V8l-4-4H8ZM6 6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-9.5a2 2 0 0 0-.586-1.414l-2.5-2.5A2 2 0 0 0 12.5 6H6Zm0 14V8h6.5l2.5 2.5V20H6Z"
|
|
436
|
+
],
|
|
437
|
+
"cross": [
|
|
438
|
+
"M12 10.586 6.707 5.293a1 1 0 0 0-1.414 1.414L10.586 12l-5.293 5.293a1 1 0 0 0 1.414 1.414L12 13.414l5.293 5.293a1 1 0 0 0 1.414-1.414L13.414 12l5.293-5.293a1 1 0 1 0-1.414-1.414L12 10.586Z"
|
|
439
|
+
],
|
|
440
|
+
"customize": [
|
|
441
|
+
"M14.707 3.88A2.987 2.987 0 0 1 16.83 3a2.99 2.99 0 0 1 2.121.88l1.172 1.175c.585.587.878 1.357.878 2.126 0 .77-.293 1.54-.878 2.127l-9.22 9.291a1 1 0 0 1-.313.213l-4.795 2.02a2.017 2.017 0 0 1-.788.168 1.988 1.988 0 0 1-1.414-.593A2 2 0 0 1 3 19.037a2.021 2.021 0 0 1 .168-.837l2.108-4.714c.05-.117.122-.223.212-.314l9.22-9.291Zm2.829 1.418a.998.998 0 0 0-1.414 0l-.879.881 2.586 2.592.878-.88a1.004 1.004 0 0 0 0-1.418l-1.171-1.175Zm-1.121 4.89-2.586-2.591-6.22 6.284 2.586 2.592 6.22-6.285Zm-7.972 7.364-1.911-1.915-1.526 3.352 3.437-1.437Z",
|
|
442
|
+
"M8.26 2.611a2.086 2.086 0 0 0-2.951 0L2.61 5.31a2.086 2.086 0 0 0 0 2.95l3.89 3.89L8 10.697 6.694 9.392l.612-.611A1.043 1.043 0 1 0 5.83 7.306l-.61.61-1.134-1.132 2.698-2.698L10.637 8 12 6.637 8.26 2.611Zm9.24 9.123-1.5 1.45 3.914 4.032-2.698 2.698-1.133-1.133.611-.611a1.043 1.043 0 0 0-1.475-1.476l-.611.611L13 15.5 11.5 17l4.24 4.389a2.086 2.086 0 0 0 2.951 0l2.698-2.698a2.086 2.086 0 0 0 0-2.95L17.5 11.734Z"
|
|
443
|
+
],
|
|
444
|
+
"dashboard": [
|
|
445
|
+
"M19.99 4H4.02C2.9 4 2 4.9 2 6.02v11.97c0 1.11.9 2.02 2.02 2.02h15.97c1.11 0 2.02-.9 2.02-2.02V6.02A2.027 2.027 0 0 0 19.99 4ZM8 18H4V6h4v12Zm12 0H10v-8h10v8Zm0-10H10V6h10v2Z"
|
|
446
|
+
],
|
|
447
|
+
"directions": [
|
|
448
|
+
"M2.293 12.707a1 1 0 0 1 0-1.414l9-9a1 1 0 0 1 1.414 0l2.5 2.5-1.414 1.414L12 4.414 4.414 12 12 19.586l3.793-3.793 1.414 1.414-4.5 4.5a1 1 0 0 1-1.414 0l-9-9Z",
|
|
449
|
+
"M17.293 6.293a1 1 0 0 1 1.414 0l3 3a1 1 0 0 1 0 1.414l-3 3a1 1 0 0 1-1.414-1.414L18.586 11H13a1 1 0 0 0-1 1v2.5a1 1 0 1 1-2 0V12a3 3 0 0 1 3-3h5.586l-1.293-1.293a1 1 0 0 1 0-1.414Z"
|
|
450
|
+
],
|
|
451
|
+
"download": [
|
|
452
|
+
"M2 10.5C2 13.538 4.686 16 8 16v-2c-2.21 0-4-1.567-4-3.5S5.79 7 8 7a4.5 4.5 0 0 1 1.414.225A4 4 0 0 1 17 9h.5a2.5 2.5 0 0 1 0 5H16v2h1.5a4.5 4.5 0 0 0 1.215-8.834A6.003 6.003 0 0 0 8.51 5.02 6.633 6.633 0 0 0 8 5c-3.314 0-6 2.462-6 5.5Z",
|
|
453
|
+
"M11 12v5.586L10.414 17A1 1 0 0 0 9 18.414l2.293 2.293a1 1 0 0 0 1.414 0L15 18.414A1 1 0 0 0 13.586 17l-.586.586V12a1 1 0 1 0-2 0Z"
|
|
454
|
+
],
|
|
455
|
+
"drag": [
|
|
456
|
+
"M8 4 7 5v2l1 1h2l1-1V5l-1-1H8Zm0 6-1 1v2l1 1h2l1-1v-2l-1-1H8Zm0 6-1 1v2l1 1h2l1-1v-2l-1-1H8Zm6-12-1 1v2l1 1h2l1-1V5l-1-1h-2Zm0 6-1 1v2l1 1h2l1-1v-2l-1-1h-2Zm0 6-1 1v2l1 1h2l1-1v-2l-1-1h-2Z"
|
|
457
|
+
],
|
|
458
|
+
"dropdown": [
|
|
459
|
+
"m12 12.586-2.293-2.294a.997.997 0 0 0-1.414 0 .997.997 0 0 0 0 1.414l3 3.001a.997.997 0 0 0 1.414 0l3.005-3a.996.996 0 0 0 0-1.414.997.997 0 0 0-1.414 0L12 12.586Z",
|
|
460
|
+
"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-2 0a8 8 0 1 0-16 0 8 8 0 0 0 16 0Z"
|
|
461
|
+
],
|
|
462
|
+
"edit": [
|
|
463
|
+
"M14.707 3.923a2.987 2.987 0 0 1 2.121-.88c.768 0 1.536.293 2.122.88l1.171 1.174c.586.588.879 1.357.879 2.127 0 .77-.293 1.539-.879 2.126l-9.22 9.292a1 1 0 0 1-.313.212l-4.794 2.02a2.017 2.017 0 0 1-.788.168 1.988 1.988 0 0 1-1.415-.593A2 2 0 0 1 3 19.08a2.021 2.021 0 0 1 .167-.837l2.108-4.713a.99.99 0 0 1 .212-.314l9.22-9.292Zm2.828 1.418a.998.998 0 0 0-1.414 0l-.878.88 2.585 2.592.88-.88c.39-.392.39-1.027 0-1.418L17.535 5.34Zm-1.12 4.89-2.587-2.592-6.22 6.285 2.586 2.591 6.22-6.284Zm-7.972 7.364-1.911-1.916-1.526 3.353 3.437-1.437Z"
|
|
464
|
+
],
|
|
465
|
+
"email": [
|
|
466
|
+
"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7Zm16.667 0H5.333L12 14l6.667-7ZM4 8.517V19h16V8.517l-6.545 6.94a2 2 0 0 1-2.91 0L4 8.517Z"
|
|
467
|
+
],
|
|
468
|
+
"embed": [
|
|
469
|
+
"M6 4a2 2 0 0 0-2 2v2h2V6h12v2h2V6a2 2 0 0 0-2-2H6ZM4 18v-2h2v2h12v-2h2v2a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z",
|
|
470
|
+
"M10.184 15.579a.996.996 0 0 0 1.235.33.997.997 0 0 0 .53-.592l2-6.001a1 1 0 1 0-1.897-.632l-2 6a.998.998 0 0 0 .132.895ZM7.446 9.168a.995.995 0 0 1 .887-.111.996.996 0 0 1 .667.98.999.999 0 0 1-.445.795L6.803 12l1.752 1.168a.999.999 0 0 1-.325 1.806.997.997 0 0 1-.784-.141l-3-2.001a1 1 0 0 1 0-1.664l3-2ZM16 15c.191 0 .384-.054.555-.167l3-2a1 1 0 0 0 0-1.664l-3-2.001a.997.997 0 0 0-1.387.277.999.999 0 0 0 .277 1.387l1.753 1.169-1.753 1.168A.999.999 0 0 0 16.001 15Z"
|
|
471
|
+
],
|
|
472
|
+
"engine": [
|
|
473
|
+
"M7.007 5.935a1.001 1.001 0 0 0 0 2.002h3.003v1.001H7.007a2.002 2.002 0 0 0-2.002 2.002v1.001H4.004V9.94a1.001 1.001 0 0 0-2.002 0v6.006a1.001 1.001 0 0 0 2.002 0v-2.002h1v1.001c0 1.106.897 2.002 2.003 2.002h1v1.001c0 .553.449 1.001 1.002 1.001h10.01v-3.003h1v3.003h1.002a1 1 0 0 0 1-1V11.94a1 1 0 0 0-1-1H20.02v3.002h-1.001V10.94a2.002 2.002 0 0 0-2.002-2.002h-5.005v-1h3.003a1.001 1.001 0 1 0 0-2.003H7.007Zm0 9.01V10.94h10.01v6.006H10.01v-2.002H7.007Z"
|
|
474
|
+
],
|
|
475
|
+
"event": [
|
|
476
|
+
"M14 13a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-2Z",
|
|
477
|
+
"M16 3a1 1 0 0 0-1 1v1H9V4a1 1 0 0 0-2 0v1H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2V4a1 1 0 0 0-1-1Zm3 4v2H5V7h14ZM5 11h14v8H5v-8Z"
|
|
478
|
+
],
|
|
479
|
+
"excel": [
|
|
480
|
+
"M11 11v-1h2a1 1 0 1 0 0-2h-3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h3a1 1 0 1 0 0-2h-2v-1h2a1 1 0 1 0 0-2h-2Z",
|
|
481
|
+
"M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 19.414 6L16 2.586A2 2 0 0 0 14.586 2H6Zm0 18V4h8.586L18 7.414V20H6Z"
|
|
482
|
+
],
|
|
483
|
+
"expense": [
|
|
484
|
+
"M13.293 8.707C12.626 8.04 12.003 8 11.977 8 11.45 8 11 8.45 11 9c0 .646.128.752 1.243 1.03C13.274 10.288 15 10.72 15 13a2.995 2.995 0 0 1-2 2.814v.184a1 1 0 0 1-2 0v-.2a4.502 4.502 0 0 1-1.707-1.09 1 1 0 1 1 1.414-1.415c.667.667 1.291.707 1.317.707.528 0 .976-.448.976-1 0-.646-.127-.75-1.242-1.03C10.728 11.713 9 11.28 9 9a2.996 2.996 0 0 1 2-2.816V6a1 1 0 0 1 2 0v.2a4.49 4.49 0 0 1 1.707 1.093 1 1 0 0 1-1.414 1.414Z",
|
|
485
|
+
"M4 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v17a1 1 0 0 1-1.555.832l-2.318-1.545-1.42 1.42a1 1 0 0 1-1.414 0L12 20.414l-1.293 1.293a1 1 0 0 1-1.414 0l-1.42-1.42-2.318 1.545A1 1 0 0 1 4 21V4Zm2 0v15.131l1.445-.963a1 1 0 0 1 1.262.125L10 19.586l1.293-1.293a1 1 0 0 1 1.414 0L14 19.586l1.293-1.293a1 1 0 0 1 1.262-.125L18 19.13V4H6Z"
|
|
486
|
+
],
|
|
487
|
+
"export": [
|
|
488
|
+
"M13 5a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V7.414L8.707 16.71a.996.996 0 0 1-1.414 0 .997.997 0 0 1 0-1.414L16.586 6H14a1 1 0 0 1-1-1Z",
|
|
489
|
+
"M3 5a2 2 0 0 1 2-2h6v2H5v14h14v-6h2v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"
|
|
490
|
+
],
|
|
491
|
+
"eye": [
|
|
492
|
+
"M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-2 0a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z",
|
|
493
|
+
"M21.863 12.477C20.794 14.2 16.703 20 12 20c-4.702 0-8.795-5.8-9.863-7.523a.903.903 0 0 1 0-.954C3.205 9.8 7.297 4 12 4c4.703 0 8.794 5.8 9.863 7.523a.903.903 0 0 1 0 .954ZM20 12s-3.582-6-8-6-8 6-8 6 3.582 6 8 6 8-6 8-6Z"
|
|
494
|
+
],
|
|
495
|
+
"eyeCrossed": [
|
|
496
|
+
"M6.695 6.285 4.703 4.29A.996.996 0 0 0 4 3.996a.997.997 0 0 0-1 1.086c.02.226.116.448.29.621l1.953 1.958c-1.433 1.514-2.63 3.093-3.106 3.862a.903.903 0 0 0 0 .954C3.205 14.2 7.297 20 12 20c1.484 0 2.893-.578 4.16-1.422l2.15 2.13A.996.996 0 0 0 19 21a.997.997 0 0 0 1-1.184.996.996 0 0 0-.276-.523l-1.98-1.96L6.694 6.285ZM12 18c-4.418 0-8-6-8-6s.944-1.582 2.46-3.12l1.773 1.771a4 4 0 0 0 5.116 5.115l1.464 1.465C13.938 17.7 12.99 18 12 18Zm-1.943-5.525a2.003 2.003 0 0 0 1.468 1.468l-1.468-1.468Zm1.242-4.414 4.64 4.64a4 4 0 0 0-4.64-4.64Z",
|
|
497
|
+
"M17.939 14.7A18.455 18.455 0 0 0 20 12s-3.582-6-8-6c-.785 0-1.544.19-2.261.501L8.344 5.106C9.476 4.436 10.71 4 12 4c4.703 0 8.794 5.8 9.863 7.523a.903.903 0 0 1 0 .954c-.432.697-1.481 2.059-2.713 3.435l-1.211-1.211Z"
|
|
498
|
+
],
|
|
499
|
+
"facebook": [
|
|
500
|
+
"M14.188 6.375H17V3h-2.812a3.942 3.942 0 0 0-3.938 3.938v1.688H8v3.375h2.25v9h3.375v-9h2.812L17 8.626h-3.375V6.938a.57.57 0 0 1 .563-.563Z"
|
|
501
|
+
],
|
|
502
|
+
"file": [
|
|
503
|
+
"M14 9a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v6a1 1 0 1 0 2 0v-1.5h2a1 1 0 1 0 0-2h-2V10h2a1 1 0 0 0 1-1Z",
|
|
504
|
+
"M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 19.414 6L16 2.586A2 2 0 0 0 14.586 2H6Zm0 18V4h8.586L18 7.414V20H6Z"
|
|
505
|
+
],
|
|
506
|
+
"filter": [
|
|
507
|
+
"M16 9a3.001 3.001 0 0 0 2.83-2H20a1 1 0 1 0 0-2h-1.17a3.001 3.001 0 0 0-5.66 0H4a1 1 0 0 0 0 2h9.17A3.001 3.001 0 0 0 16 9Zm1-3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-8.17 7a3.001 3.001 0 1 1 0-2H20a1 1 0 1 1 0 2H8.83ZM7 12a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.17 7a3.001 3.001 0 0 0 5.66 0H20a1 1 0 1 0 0-2h-6.17a3.001 3.001 0 0 0-5.66 0H4a1 1 0 1 0 0 2h4.17ZM11 19a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"
|
|
508
|
+
],
|
|
509
|
+
"fuel": [
|
|
510
|
+
"M7 7h6v5H7V7Z",
|
|
511
|
+
"M4 6a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v10h4v-5h-2v-1h-.5a.5.5 0 0 1 0-1H20a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1v1H2v-1a1 1 0 0 1 1-1h1V6Zm10 0H6v14h8V6Z"
|
|
512
|
+
],
|
|
513
|
+
"future": [
|
|
514
|
+
"M12.406 3.22a1.005 1.005 0 0 1 1.41.155l3.512 4.376c.586.73.586 1.768 0 2.498l-3.512 4.376a1.005 1.005 0 0 1-1.41.156.998.998 0 0 1-.157-1.406L14.96 10H9.52a4.507 4.507 0 0 0-4.514 4.5c0 2.485 2.02 4.5 4.514 4.5h3.476c.554 0 1.003.448 1.003 1s-.45 1-1.003 1H9.52C5.92 21 3 18.09 3 14.5S5.92 8 9.521 8h5.437L12.25 4.625a.998.998 0 0 1 .157-1.406Zm4.232 0a1.006 1.006 0 0 1 1.41.155l3.512 4.376c.587.73.587 1.768 0 2.498l-3.511 4.376a1.006 1.006 0 0 1-1.41.156.998.998 0 0 1-.157-1.406L19.994 9l-3.512-4.375a.998.998 0 0 1 .157-1.406Z"
|
|
515
|
+
],
|
|
516
|
+
"gift": [
|
|
517
|
+
"M6 5.5a3.5 3.5 0 0 1 6.363-2.014A3 3 0 0 1 16.83 7H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-7H3a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h3.337A3.486 3.486 0 0 1 6 5.5ZM13 20h5v-7h-5v7Zm-2-7H6v7h5v-7Zm2-2h7V9h-7v2Zm-2-2H4v2h7V9Zm0-2V5.5A1.5 1.5 0 1 0 9.5 7H11Zm2-1v1h1a1 1 0 1 0-1-1Z"
|
|
518
|
+
],
|
|
519
|
+
"google": [
|
|
520
|
+
"M12.648 10.488v2.623h4.336c-.174 1.126-1.31 3.298-4.336 3.298-2.608 0-4.738-2.163-4.738-4.828 0-2.665 2.13-4.828 4.738-4.828 1.488 0 2.478.634 3.045 1.178l2.074-1.998c-1.332-1.244-3.059-2-5.119-2a7.643 7.643 0 0 0-7.643 7.65 7.635 7.635 0 0 0 7.643 7.643c4.41 0 7.338-3.101 7.338-7.47 0-.503-.056-.888-.122-1.268h-7.216Z"
|
|
521
|
+
],
|
|
522
|
+
"googlePlay": [
|
|
523
|
+
"M20.561 11.159 4.505 2.19c-.339-.189-.651-.232-.904-.154H3.6c-.364.115-.6.49-.6 1.057l.002 17.812c0 .56.229.928.58 1.051.256.088.575.046.922-.145L20.56 12.84c.828-.466.828-1.22 0-1.682h.001Z"
|
|
524
|
+
],
|
|
525
|
+
"grid": [
|
|
526
|
+
"M4 2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm8 2v2H4V4h8Zm0 5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-8Zm8 4h-8v-2h8v2ZM5 18a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-2Zm2 0v2h8v-2H7ZM4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2H4Zm2 2v2H4v-2h2Zm10-7a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V4Zm2 0v2h2V4h-2Z"
|
|
527
|
+
],
|
|
528
|
+
"happyFace": [
|
|
529
|
+
"M8.5 11a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM17 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-7.072 4.129a1 1 0 1 0-1.856.742c.688 1.72 2.376 2.504 3.928 2.504s3.24-.784 3.928-2.504a1 1 0 0 0-1.857-.742c-.312.78-1.123 1.246-2.071 1.246-.948 0-1.76-.466-2.072-1.246Z",
|
|
530
|
+
"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-2 0a8 8 0 1 0-16 0 8 8 0 0 0 16 0Z"
|
|
531
|
+
],
|
|
532
|
+
"help": [
|
|
533
|
+
"M11.969 7c-1.375 0-2.575 1.161-2.707 1.293a1.001 1.001 0 0 0 1.41 1.417c.291-.286.904-.71 1.296-.71a1 1 0 0 1 .591 1.808c-1.01.74-1.59 1.808-1.59 2.929V14a1 1 0 0 0 2 0v-.263c0-.653.484-1.105.773-1.317A3.013 3.013 0 0 0 14.968 10c0-1.654-1.345-3-3-3ZM12 16a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
|
|
534
|
+
"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-2 0a8 8 0 1 0-16 0 8 8 0 0 0 16 0Z"
|
|
535
|
+
],
|
|
536
|
+
"home": [
|
|
537
|
+
"M13.147 3.582a2 2 0 0 0-2.294 0l-9.426 6.599a1 1 0 1 0 1.147 1.638L5 10.121V18a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-7.88l2.427 1.7a1 1 0 0 0 1.146-1.64l-9.426-6.598ZM17 8.721V18a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V8.72l5-3.5 5 3.5Z"
|
|
538
|
+
],
|
|
539
|
+
"image": [
|
|
540
|
+
"M10.5 8.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm7.5 5.819-2.616-3.14a.5.5 0 0 0-.768 0L11 15.52l-1.116-1.34a.5.5 0 0 0-.768 0L5.933 18H18v-3.681Z",
|
|
541
|
+
"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2 0v14h14V5H5Z"
|
|
542
|
+
],
|
|
543
|
+
"import": [
|
|
544
|
+
"M19.71 4.292a.998.998 0 0 1 0 1.414L10.414 15H13a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1v-5a1 1 0 1 1 2 0v2.586l9.295-9.294A.995.995 0 0 1 18.961 4a.997.997 0 0 1 .749.292Z",
|
|
545
|
+
"M3 5a2 2 0 0 1 2-2h9v2H5v14h14v-9h2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"
|
|
546
|
+
],
|
|
547
|
+
"instagram": [
|
|
548
|
+
"M12 2c-2.716 0-3.056.012-4.123.06-1.064.049-1.791.218-2.427.465a4.901 4.901 0 0 0-1.772 1.153A4.901 4.901 0 0 0 2.525 5.45c-.247.636-.416 1.363-.465 2.427C2.012 8.944 2 9.284 2 12s.012 3.056.06 4.123c.049 1.064.218 1.791.465 2.427a4.902 4.902 0 0 0 1.153 1.772 4.902 4.902 0 0 0 1.772 1.153c.636.247 1.363.416 2.427.465 1.067.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.064-.049 1.791-.218 2.427-.465a4.902 4.902 0 0 0 1.772-1.153 4.902 4.902 0 0 0 1.153-1.772c.247-.636.416-1.363.465-2.427.048-1.067.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.902 4.902 0 0 0-1.153-1.772 4.902 4.902 0 0 0-1.772-1.153c-.636-.247-1.363-.416-2.427-.465C15.056 2.012 14.716 2 12 2Zm0 1.802c2.67 0 2.986.01 4.04.058.976.045 1.505.207 1.858.344.466.182.8.399 1.15.748.35.35.566.684.748 1.15.137.353.3.882.344 1.857.048 1.055.058 1.37.058 4.041 0 2.67-.01 2.986-.058 4.04-.045.976-.207 1.505-.344 1.858-.182.466-.398.8-.748 1.15-.35.35-.683.566-1.15.748-.353.137-.882.3-1.857.344-1.054.048-1.37.058-4.041.058-2.67 0-2.987-.01-4.04-.058-.976-.045-1.505-.207-1.858-.344a3.097 3.097 0 0 1-1.15-.748 3.098 3.098 0 0 1-.748-1.15c-.137-.353-.3-.882-.344-1.857-.048-1.055-.058-1.37-.058-4.041 0-2.67.01-2.986.058-4.04.045-.976.207-1.505.344-1.858.182-.466.399-.8.748-1.15.35-.35.684-.566 1.15-.748.353-.137.882-.3 1.857-.344 1.055-.048 1.37-.058 4.041-.058ZM6.865 12a5.135 5.135 0 1 1 10.27 0 5.135 5.135 0 0 1-10.27 0ZM12 15.333a3.333 3.333 0 1 0 0-6.666 3.333 3.333 0 0 0 0 6.666Zm5.338-7.471a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Z"
|
|
549
|
+
],
|
|
550
|
+
"invoice": [
|
|
551
|
+
"M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 19.414 6L16 2.586A2 2 0 0 0 14.586 2H6Zm0 18V4h8.586L18 7.414V20H6Zm7.293-10.293C12.626 9.04 12.003 9 11.977 9 11.45 9 11 9.45 11 10c0 .646.128.752 1.243 1.03C13.274 11.288 15 11.72 15 14a2.995 2.995 0 0 1-2 2.814v.184a1 1 0 0 1-2 0v-.2a4.502 4.502 0 0 1-1.707-1.09 1 1 0 1 1 1.414-1.415c.667.667 1.291.707 1.317.707.528 0 .976-.448.976-1 0-.646-.127-.75-1.242-1.03C10.728 12.713 9 12.28 9 10a2.996 2.996 0 0 1 2-2.816V7a1 1 0 0 1 2 0v.2a4.49 4.49 0 0 1 1.707 1.093 1 1 0 0 1-1.414 1.414Z"
|
|
552
|
+
],
|
|
553
|
+
"invoiceLater": [
|
|
554
|
+
"M6 4a2 2 0 0 1 2-2h8.586A2 2 0 0 1 18 2.586L21.414 6A2 2 0 0 1 22 7.414V20a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-2h2v2h12V7.414L16.586 4H8v2H6V4Z",
|
|
555
|
+
"M15.293 9.707C14.626 9.04 14.003 9 13.977 9 13.45 9 13 9.45 13 10c0 .646.128.752 1.243 1.03C15.274 11.288 17 11.72 17 14a2.995 2.995 0 0 1-2 2.814v.184a1 1 0 0 1-2 0v-.2a4.502 4.502 0 0 1-1.707-1.09 1 1 0 0 1 1.414-1.415c.667.667 1.291.707 1.317.707.528 0 .976-.448.976-1 0-.646-.127-.75-1.242-1.03C12.728 12.713 11 12.28 11 10a2.996 2.996 0 0 1 2-2.816V7a1 1 0 0 1 2 0v.2a4.49 4.49 0 0 1 1.707 1.093 1 1 0 0 1-1.414 1.414ZM3 10a1 1 0 0 1 2 0v4a1 1 0 1 1-2 0v-4Zm4-1a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0v-4a1 1 0 0 0-1-1Z"
|
|
556
|
+
],
|
|
557
|
+
"job": [
|
|
558
|
+
"M8.899 5.757A5.99 5.99 0 0 1 13.227 4a5.98 5.98 0 0 1 4.157 1.757L22 10.373l-4.243 4.242-3.479-3.479-1.171 1.172 1.414 1.414-6.693 6.692c-.39.39-.902.586-1.414.586A1.994 1.994 0 0 1 5 20.414L3.586 19A1.994 1.994 0 0 1 3 17.586c0-.512.195-1.024.586-1.414l6.692-6.693 1.414 1.414 1.172-1.171-3.965-3.965Zm8.858 6.03 1.415-1.414L15.97 7.17a3.999 3.999 0 0 0-3.864-1.036l5.651 5.652Zm-6.065 1.935-1.414-1.414L5 17.586 6.414 19l5.278-5.278Z"
|
|
559
|
+
],
|
|
560
|
+
"jobForms": [
|
|
561
|
+
"M8 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm3-3a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Z",
|
|
562
|
+
"M10 2a1 1 0 0 0-.707.293L7.586 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.586l-1.707-1.707A1 1 0 0 0 14 2h-4Zm6.414 4H18v14H6V6h1.586l1.707 1.707A1 1 0 0 0 10 8h4a1 1 0 0 0 .707-.293L16.414 6Zm-7-1 1-1h3.172l1 1-1 1h-3.172l-1-1Z"
|
|
563
|
+
],
|
|
564
|
+
"jobOnHold": [
|
|
565
|
+
"M8.899 5.757A5.99 5.99 0 0 1 13.227 4a5.98 5.98 0 0 1 4.157 1.757L22 10.373l-4.243 4.242-3.479-3.479-1.35 1.35 1.417 1.412-6.517 6.516c-.39.39-.902.586-1.414.586A1.994 1.994 0 0 1 5 20.414L3.586 19A1.994 1.994 0 0 1 3 17.586c0-.512.195-1.024.586-1.414l6.511-6.512 1.403 1.403 1.364-1.341-3.965-3.965Zm8.858 6.03 1.415-1.414L15.97 7.17a3.998 3.998 0 0 0-3.864-1.036l5.651 5.652Zm-6.065 1.935-1.414-1.414L5 17.586 6.414 19l5.278-5.278Z",
|
|
566
|
+
"M3.293 4.293a.997.997 0 0 1 1.414 0L19.72 19.255a.947.947 0 0 1 .28.565c.038.325-.094.663-.345.914a.905.905 0 0 1-1.284 0L3.293 5.707A.996.996 0 0 1 3 5.008a.997.997 0 0 1 .293-.715Z"
|
|
567
|
+
],
|
|
568
|
+
"knot": [
|
|
569
|
+
"M15 16.35c0-.713.399-1.354.937-1.822a6 6 0 1 0-7.874 0C8.6 14.996 9 15.637 9 16.35c0 .358.29.649.65.649h4.7a.65.65 0 0 0 .65-.65Zm-1-2.308c0 .529-.43.958-.958.958h-2.084a.958.958 0 0 1-.958-.958c0-.357-.197-.68-.477-.9a4 4 0 1 1 4.954 0c-.28.22-.477.543-.477.9ZM10 18a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"
|
|
570
|
+
],
|
|
571
|
+
"link": [
|
|
572
|
+
"M4.469 12.415a4.996 4.996 0 0 0-1.466 3.578 4.995 4.995 0 0 0 1.466 3.506 4.987 4.987 0 0 0 3.503 1.467 4.988 4.988 0 0 0 3.575-1.467l2.175-1.833a1 1 0 0 0 0-1.417.997.997 0 0 0-1.416 0l-2.175 1.833a3.001 3.001 0 0 1-4.247 0 3.007 3.007 0 0 1 0-4.25l1.832-2.178a1 1 0 0 0 0-1.416.998.998 0 0 0-1.416 0l-1.83 2.177Zm13.246 1.125a.997.997 0 0 1-1.415 0 1.001 1.001 0 0 1 0-1.417l1.84-2.04a3.008 3.008 0 0 0 0-4.25 3.001 3.001 0 0 0-4.248 0L11.72 7.665a.998.998 0 0 1-1.416 0 .999.999 0 0 1 0-1.417l2.174-1.832a4.987 4.987 0 0 1 3.574-1.467 4.987 4.987 0 0 1 3.504 1.467 4.996 4.996 0 0 1 1.465 3.506 4.996 4.996 0 0 1-1.465 3.578l-1.84 2.04Zm-8.42-.288a1.001 1.001 0 1 0 1.416 1.417l4.015-4.02a1 1 0 0 0-1.416-1.416l-4.015 4.019Z"
|
|
573
|
+
],
|
|
574
|
+
"linkedIn": [
|
|
575
|
+
"M4.928 7.924c1.066 0 1.929-.879 1.929-1.962C6.857 4.878 5.994 4 4.928 4s-1.929.879-1.929 1.962c0 1.084.863 1.962 1.929 1.962ZM3 9.231h3.857V21H3V9.231Zm6.429 0h3.558v1.855h.051c.495-.903 1.707-1.855 3.512-1.855 3.756 0 4.45 2.378 4.45 5.471v6.299h-3.709v-5.584c0-1.332-.027-3.045-1.929-3.045-1.932 0-2.226 1.45-2.226 2.948v5.681H9.429V9.231Z"
|
|
576
|
+
],
|
|
577
|
+
"list": [
|
|
578
|
+
"M19.296 10.557H4.798a1.209 1.209 0 0 0 0 2.416h14.498a1.208 1.208 0 1 0 0-2.416ZM4.798 8.14h14.498a1.208 1.208 0 1 0 0-2.416H4.798a1.209 1.209 0 0 0 0 2.416Zm14.498 7.25H4.798a1.208 1.208 0 1 0 0 2.416h14.498a1.207 1.207 0 1 0 0-2.416Z"
|
|
579
|
+
],
|
|
580
|
+
"loadingCheck": [
|
|
581
|
+
"M14.319 20.694c.142.534-.174 1.089-.72 1.177a9.999 9.999 0 0 1-9.077-16.51 10 10 0 0 1 13.04-1.671c.46.307.516.943.165 1.37-.352.425-.98.481-1.447.186a7.996 7.996 0 1 0-3.199 14.677c.547-.075 1.096.238 1.238.771Zm4.906-3.214a1 1 0 0 1 .032 1.414 9.598 9.598 0 0 1-1.94 1.578 1 1 0 1 1-1.062-1.695 7.606 7.606 0 0 0 1.556-1.264 1 1 0 0 1 1.414-.033Zm1.832-4.685a1 1 0 0 1 .76 1.193c-.15.673-.313 1.168-.467 1.586a1 1 0 1 1-1.877-.69c.132-.359.266-.765.391-1.33a1 1 0 0 1 1.193-.759Zm-.622-4.392a1 1 0 0 1 1.217.72c.046.18.137.589.192.961a1 1 0 1 1-1.979.29 8.788 8.788 0 0 0-.15-.754 1 1 0 0 1 .72-1.217Z",
|
|
582
|
+
"M17.733 8.293a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414l2.293 2.293 5.293-5.293a1 1 0 0 1 1.415 0Z"
|
|
583
|
+
],
|
|
584
|
+
"lock-1": [
|
|
585
|
+
"M12.012 13.943a1 1 0 0 0-1.001 1.001v1.001a1.001 1.001 0 0 0 2.002 0v-1a1 1 0 0 0-1.001-1.002Zm0-11.01a4.004 4.004 0 0 1 4.004 4.003V9.94h2.002c1.105 0 2.002.897 2.002 2.002v7.007a2.002 2.002 0 0 1-2.002 2.002H6.006a2.002 2.002 0 0 1-2.002-2.002v-7.007c0-1.105.896-2.002 2.002-2.002h2.002V6.936a4.004 4.004 0 0 1 4.004-4.003Zm2.002 4.003a2.002 2.002 0 0 0-4.004 0V9.94h4.004V6.936Zm-8.008 5.005v7.007h12.012v-7.007H6.006Z"
|
|
586
|
+
],
|
|
587
|
+
"lock": [
|
|
588
|
+
"M12 14a1 1 0 0 0-1 1v1a1 1 0 1 0 2 0v-1a1 1 0 0 0-1-1Z",
|
|
589
|
+
"M12 3a4 4 0 0 0-4 4v3H6a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7a2 2 0 0 0-2-2h-2V7a4 4 0 0 0-4-4Zm2 4v3h-4V7a2 2 0 1 1 4 0Zm-8 5h12v7H6v-7Z"
|
|
590
|
+
],
|
|
591
|
+
"logout": [
|
|
592
|
+
"M3 5a2 2 0 0 1 2-2h7v2H5v14h7v2H5a2 2 0 0 1-2-2V5Z",
|
|
593
|
+
"M18.414 9A1 1 0 1 0 17 10.414l.586.586H8a1 1 0 1 0 0 2h9.586l-.586.586A1 1 0 0 0 18.414 15l2.293-2.293a1 1 0 0 0 0-1.414L18.414 9Z"
|
|
594
|
+
],
|
|
595
|
+
"markSent": [
|
|
596
|
+
"M3.72 13.301a1 1 0 1 0-1.415 1.414l1.586 1.992a1 1 0 0 0 1.414 0l3.39-3.201a1 1 0 1 0-1.414-1.414l-2.683 2.494-.879-1.285Z",
|
|
597
|
+
"M6 10V7.414l6.293 6.293a1 1 0 0 0 1.414 0L20 7.414V17a1 1 0 0 1-1 1H4.17A3.001 3.001 0 0 0 7 20h12a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v3h2Zm7 1.586L7.414 6h11.172L13 11.586Z"
|
|
598
|
+
],
|
|
599
|
+
"marketing": [
|
|
600
|
+
"M19 4.024c0-.91-1.1-1.366-1.742-.723L16.121 4.44A8.65 8.65 0 0 1 10 6.979H5c-1.657 0-3 1.345-3 3.004v2.003a3.002 3.002 0 0 0 3 3.004v4.006A3.002 3.002 0 0 0 8 22c1.657 0 3-1.345 3-3.004v-3.948a8.652 8.652 0 0 1 5.121 2.481l1.137 1.139c.643.643 1.742.188 1.742-.723v-3.081a4.006 4.006 0 0 0 3-3.88 4.006 4.006 0 0 0-3-3.879V4.024Zm0 5.226a2.003 2.003 0 0 1 0 3.47V9.25ZM7 18.996V14.99h2v4.006a1 1 0 1 1-2 0Zm10-3.384a10.65 10.65 0 0 0-6-2.578v-4.1a10.65 10.65 0 0 0 6-2.577v9.255Zm-8-2.625H5a1 1 0 0 1-1-1.001V9.983a1 1 0 0 1 1-1.001h4v4.005Z"
|
|
601
|
+
],
|
|
602
|
+
"menu": [
|
|
603
|
+
"M4 7a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm0 10a1 1 0 0 0 1 1h10a1 1 0 1 0 0-2H5a1 1 0 0 0-1 1Zm14.414-8A1 1 0 1 0 17 10.414l.586.586H5a1 1 0 1 0 0 2h12.586l-.586.586A1 1 0 0 0 18.414 15l2.293-2.293a1 1 0 0 0 0-1.414L18.414 9Z"
|
|
604
|
+
],
|
|
605
|
+
"minus": [
|
|
606
|
+
"M12.047 1.616c-5.606 0-10.15 4.545-10.15 10.149 0 5.606 4.545 10.15 10.15 10.15s10.15-4.545 10.15-10.15-4.545-10.15-10.15-10.15Zm6.102 8.914v2.471H5.945v-2.47H18.15Z"
|
|
607
|
+
],
|
|
608
|
+
"minus2": [
|
|
609
|
+
"M18.329 10.557H5.764c-.668 0-.725.541-.725 1.208 0 .667.057 1.208.725 1.208H18.33c.668 0 .726-.541.726-1.208 0-.667-.058-1.208-.726-1.208Z"
|
|
610
|
+
],
|
|
611
|
+
"money": [
|
|
612
|
+
"M7 11h6a1 1 0 1 0 0-2H7a1 1 0 0 0 0 2Z",
|
|
613
|
+
"M2 4a2 2 0 0 1 2-2h12a1 1 0 1 1 0 2H4.5a.5.5 0 0 0-.5.5V5h14a2 2 0 0 1 2 2v4.05a2.5 2.5 0 0 1 0 4.9V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm16 7V7.5a.5.5 0 0 0-.5-.5h-13a.5.5 0 0 0-.5.5v11a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5V16h-.5a2.5 2.5 0 0 1 0-5h.5Zm1.5 2h-2a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1Z"
|
|
614
|
+
],
|
|
615
|
+
"more": [
|
|
616
|
+
"M4 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm6 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm8-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z"
|
|
617
|
+
],
|
|
618
|
+
"moveMarker": [
|
|
619
|
+
"M4 12a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm2 3a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z",
|
|
620
|
+
"m13.84 21.51-.066.09a.952.952 0 0 1-1.548 0l-.066-.09c-.777-1.07-1.979-2.725-3.116-4.51h2.228A57.251 57.251 0 0 0 13 19.5s5-6.739 5-9.5a5 5 0 0 0-10 0H6a7 7 0 0 1 14 0c0 3.03-4.3 8.95-6.16 11.51Z",
|
|
621
|
+
"M11 10a2 2 0 1 0 4 0 2 2 0 0 0-4 0Z"
|
|
622
|
+
],
|
|
623
|
+
"moveVisits": [
|
|
624
|
+
"M4 4a2 2 0 0 0-2 2h10v10h-1.17a3.001 3.001 0 0 0-5.66 0H2a2 2 0 0 0 2 2h1.17a3.001 3.001 0 0 0 5.66 0h3.34a3.001 3.001 0 0 0 5.66 0H20a2 2 0 0 0 2-2v-6l-2.903-4.147A2 2 0 0 0 17.46 5h-3.727A2 2 0 0 0 12 4H4Zm15.83 12a3.001 3.001 0 0 0-5.66 0H14v-4h6v4h-.17ZM9 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm8.25-10L19 10h-5V7h3.25ZM18 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z",
|
|
625
|
+
"M2 8a1 1 0 0 1 1-1h4a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1Zm2 3a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Z"
|
|
626
|
+
],
|
|
627
|
+
"note": [
|
|
628
|
+
"M4 4a2 2 0 0 1 2-2h8.586A2 2 0 0 1 16 2.586L19.414 6A2 2 0 0 1 20 7.414V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm2 0v16h12V7.414L14.586 4H6Z"
|
|
629
|
+
],
|
|
630
|
+
"offline": [
|
|
631
|
+
"M18.17 10.714h.973A2.852 2.852 0 0 1 22 13.571c0 1.36-.713 2.555-1.786 3.229l1.438 1.438A5.8 5.8 0 0 0 24 13.57a4.859 4.859 0 0 0-3.953-4.773 7.24 7.24 0 0 0-11.85-4.016L9.614 6.2a5.239 5.239 0 0 1 8.554 4.514Zm-.79 8.666h-5.856l-.095.001h-5.62a5.81 5.81 0 0 1-.047-11.619L4.707 6.707a1 1 0 1 1 1.414-1.414l14.586 14.586a1 1 0 0 1-1.414 1.414L17.38 19.38ZM7.739 9.739l-.002.024H5.81a3.81 3.81 0 1 0 0 7.619h5.619c.031 0 .063 0 .095-.002a2 2 0 0 0 .095.002h3.762L7.738 9.738Z"
|
|
632
|
+
],
|
|
633
|
+
"onlineBooking": [
|
|
634
|
+
"M7 3v1H5a2 2 0 0 0-2 2v3a1 1 0 0 0 2 0V6h15v2h-8a1 1 0 1 0 0 2h8v7h-7a1 1 0 1 0 0 2h7a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V3a1 1 0 1 0-2 0v1H9V3a1 1 0 0 0-2 0Z",
|
|
635
|
+
"M10.628 12.303 8.822 7.639c-.223-.852-1.474-.852-1.698 0l-1.752 4.663-2.903 1.37a.835.835 0 0 0 0 1.5l2.903 1.37L7.15 21.36c.224.852 1.475.852 1.698 0l1.78-4.82 2.902-1.368a.835.835 0 0 0 0-1.502l-2.903-1.368Zm-6.132 2.12 1.752-.849.876-.848L8 10.183l.876 2.543.876.848 1.752.848-1.752.848-.876.848L8 18.662l-.876-2.544-.876-.848-1.752-.848Z"
|
|
636
|
+
],
|
|
637
|
+
"paidInvoice": [
|
|
638
|
+
"M8 2a2 2 0 0 0-2 2v4h2V4h8.586L20 7.414V20H8v-3H6v3a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 21.414 6L18 2.586A2 2 0 0 0 16.586 2H8Z",
|
|
639
|
+
"M13.977 9c.026 0 .65.04 1.316.707a1 1 0 0 0 1.414-1.414A4.487 4.487 0 0 0 15 7.2V7a1 1 0 0 0-2 0v.184A2.996 2.996 0 0 0 11 10c0 2.28 1.727 2.713 2.758 2.97C14.873 13.25 15 13.354 15 14c0 .552-.448 1-.976 1-.026 0-.65-.04-1.317-.707a1 1 0 1 0-1.414 1.415A4.502 4.502 0 0 0 13 16.798v.2a1 1 0 0 0 2 0v-.184A2.995 2.995 0 0 0 17 14c0-2.28-1.726-2.712-2.757-2.97C13.128 10.752 13 10.646 13 10c0-.55.45-1 .977-1Zm-5.684 2.707a1 1 0 1 0-1.414-1.414l-2.586 2.586-.586-.586a1 1 0 0 0-1.414 1.414L3.586 15A1 1 0 0 0 5 15l3.293-3.293Z"
|
|
640
|
+
],
|
|
641
|
+
"paperclip": [
|
|
642
|
+
"M13.982 4.853a4.461 4.461 0 1 1 6.358 6.26l-7.833 7.913a6.093 6.093 0 1 1-8.625-8.608L9.54 4.797a1 1 0 1 1 1.41 1.419l-5.658 5.62a4.093 4.093 0 1 0 5.793 5.783l7.833-7.914a2.461 2.461 0 1 0-3.507-3.453l-7.473 7.63a.778.778 0 0 0 1.109 1.092l7.193-7.267a1 1 0 0 1 1.421 1.407l-7.193 7.267a2.778 2.778 0 0 1-3.959-3.898l7.473-7.63Z"
|
|
643
|
+
],
|
|
644
|
+
"payment": [
|
|
645
|
+
"M13 13a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",
|
|
646
|
+
"M4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4Zm16 2v2H4V7h16ZM4 17v-6h16v6H4Z"
|
|
647
|
+
],
|
|
648
|
+
"pdf": [
|
|
649
|
+
"M12.038 10.807c.487-1.64.553-2.779.155-3.347-.199-.307-.53-.46-.907-.46-.442 0-.796.197-.95.59-.332.767.176 2.167.774 3.305a17.46 17.46 0 0 1-.642 1.75c-.133.35-.31.7-.486 1.029-1.327.503-2.787 1.27-2.963 2.188a.901.901 0 0 0 .353.92.877.877 0 0 0 .597.218c.089 0 .177-.022.266-.044.818-.197 1.68-1.4 2.344-2.582a22.18 22.18 0 0 1 1.282-.416 21.548 21.548 0 0 1 1.504-.372c.818.657 1.548 1.007 2.167 1.007.442.022.84-.153 1.15-.481.487-.482.288-.92.221-1.05-.354-.591-1.548-.723-3.295-.395a35.2 35.2 0 0 1-.884-.897 5.224 5.224 0 0 1-.686-.963Zm-4.157 5.208c.044-.219.464-.634 1.371-1.072-.464.657-.907 1.116-1.216 1.182-.067.022-.089 0-.155-.11Zm3.233-8.083c.018-.038.027-.057.15-.057.133 0 .177.044.2.088.154.219.154.788-.023 1.685-.287-.744-.464-1.423-.332-1.707l.005-.01Zm.423 5.224a4.788 4.788 0 0 0-.405.124c.044-.11.088-.219.132-.306l.091-.23c.123-.31.24-.605.33-.886a5.025 5.025 0 0 0 .397.503c.177.175.354.35.51.525-.288.066-.62.153-.952.24l-.103.03Zm4.04.562c-.266 0-.62-.132-.996-.35 1.084-.11 1.637-.066 1.526.13-.11.198-.287.22-.53.22Z",
|
|
650
|
+
"M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 19.414 6L16 2.586A2 2 0 0 0 14.586 2H6Zm0 18V4h8.586L18 7.414V20H6Z"
|
|
651
|
+
],
|
|
652
|
+
"percent": [
|
|
653
|
+
"M18.707 5.29a.997.997 0 0 1 0 1.414L6.703 18.708a.997.997 0 0 1-1.414 0 .996.996 0 0 1 0-1.414L17.293 5.29a.996.996 0 0 1 1.414 0ZM8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm11 7a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-2 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z"
|
|
654
|
+
],
|
|
655
|
+
"person": [
|
|
656
|
+
"M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0-2a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM5.29 19h13.42a7.004 7.004 0 0 0-13.42 0Zm-2.245.016C3.949 15 7.711 12 12 12s8.054 3 8.957 7.016a1.567 1.567 0 0 1 .022.574c-.124.807-.901 1.41-1.802 1.41H4.825c-.914 0-1.701-.622-1.807-1.447a1.543 1.543 0 0 1 .027-.537Z"
|
|
657
|
+
],
|
|
658
|
+
"phone": [
|
|
659
|
+
"M2.007 5.06C1.89 3.35 3.3 2 4.947 2h2.368a3.004 3.004 0 0 1 2.95 2.4l.458 2.268A2.471 2.471 0 0 1 9.39 9.369a.429.429 0 0 0-.197.19.198.198 0 0 0-.014.156c.587 1.765 2.087 4.156 5.01 5.021a.248.248 0 0 0 .184-.02.452.452 0 0 0 .2-.204 2.5 2.5 0 0 1 2.722-1.32l2.285.453A2.992 2.992 0 0 1 22 16.573v2.558c0 1.492-1.149 2.876-2.799 2.869-3.168-.013-7.23-.854-10.634-3.418-3.44-2.59-6.106-6.864-6.56-13.521Zm2.94-1.07c-.568 0-.972.454-.939.936.42 6.14 2.838 9.86 5.772 12.07 2.968 2.236 6.569 3.002 9.43 3.013.394.002.784-.34.784-.878v-2.558a.997.997 0 0 0-.807-.976l-2.284-.454a.491.491 0 0 0-.534.26c-.476.943-1.586 1.586-2.752 1.241-3.775-1.116-5.635-4.179-6.342-6.304-.39-1.169.27-2.28 1.22-2.752a.485.485 0 0 0 .26-.53L8.3 4.791a1.001 1.001 0 0 0-.984-.8H4.947Z"
|
|
660
|
+
],
|
|
661
|
+
"pinned": [
|
|
662
|
+
"M14.607 3.293a1 1 0 1 0-1.415 1.414l.707.707-3.242 3.243H4a1 1 0 0 0-.707 1.707l4.596 4.596-3.535 3.536a1 1 0 1 0 1.414 1.414l3.535-3.536 4.596 4.597a1 1 0 0 0 1.708-.707v-6.657l3.242-3.243.99.99a1 1 0 0 0 1.415-1.414l-6.647-6.647Z"
|
|
663
|
+
],
|
|
664
|
+
"plus": [
|
|
665
|
+
"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM11 7a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2h-4v4a1 1 0 1 1-2 0v-4H7a1 1 0 1 1 0-2h4V7Z"
|
|
666
|
+
],
|
|
667
|
+
"plus2": [
|
|
668
|
+
"M12 5a1 1 0 0 0-1 1v5H6a1 1 0 1 0 0 2h5v5a1 1 0 1 0 2 0v-5h5a1 1 0 1 0 0-2h-5V6a1 1 0 0 0-1-1Z"
|
|
669
|
+
],
|
|
670
|
+
"presentation": [
|
|
671
|
+
"M2.015 5.012v11.011c0 1.106.896 2.002 2.002 2.002H20.02a2.002 2.002 0 0 0 2.001-2.002V5.013A2.002 2.002 0 0 0 20.02 3.01H4.018a2.002 2.002 0 0 0-2.002 2.001Zm2.002 0H20.02v11.011H4.017V5.013Zm2.61 16.016a1 1 0 0 1 1.002-1h8.766a1.001 1.001 0 1 1 0 2.001H7.629a1.001 1.001 0 0 1-1.001-1Zm7.489-11.667a2.104 2.104 0 1 1-4.208 0 2.104 2.104 0 0 1 4.208 0Zm2.76 6.662H7.143c0-.473 1.296-3.656 4.87-3.656s4.865 3.184 4.865 3.656Z"
|
|
672
|
+
],
|
|
673
|
+
"printer": [
|
|
674
|
+
"M18 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
|
|
675
|
+
"M6 4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v4h2a2 2 0 0 1 2 2v8h-5v2a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2v-2H2v-8a2 2 0 0 1 2-2h2V4Zm10 0H8v4h8V4Zm-1 12H9v4h6v-4Zm-8-2h10v2h3v-6H4v6h3v-2Z"
|
|
676
|
+
],
|
|
677
|
+
"property": [
|
|
678
|
+
"M19.394 11c.917 0 1.35-1.13.669-1.743l-7.394-6.655a1 1 0 0 0-1.338 0L3.937 9.257C3.256 9.87 3.689 11 4.606 11H5v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-9h.394ZM17 9.197V20h-2v-3.385a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2V20H7V9.197l5-4.506 5 4.506ZM11 16v1h2v3h-2v-4Z"
|
|
679
|
+
],
|
|
680
|
+
"quickbooks": [
|
|
681
|
+
"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm2.779 6.112h.555a3.888 3.888 0 1 1 0 7.778h-2.78V5.445c.799 0 1.445.647 1.445 1.445v7.554h1.335a2.447 2.447 0 0 0 2.445-2.443 2.447 2.447 0 0 0-2.445-2.445h-.555V8.112Zm-6.113 7.777a3.888 3.888 0 1 1 0-7.778h2.78v10.445A1.445 1.445 0 0 1 10 17.11V9.556H8.666A2.447 2.447 0 0 0 6.22 12a2.447 2.447 0 0 0 2.445 2.444h.555v1.445h-.555Z"
|
|
682
|
+
],
|
|
683
|
+
"quote": [
|
|
684
|
+
"M14 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-2 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z",
|
|
685
|
+
"M3.586 6C3.196 6.39 3 6.902 3 7.414c0 .512.195 1.024.586 1.414l.99.991C4.315 10.554 4 11.175 4 12a7 7 0 0 0 7 7h9v1a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1h-3v-5a7 7 0 0 0-7-7c-.825 0-1.446.314-2.18.577l-.992-.991A1.994 1.994 0 0 0 6.414 4c-.512 0-1.023.195-1.414.586L3.586 6Zm3.393.565A7.041 7.041 0 0 0 5.565 7.98L5 7.414 6.414 6l.565.565ZM11 7a5 5 0 0 1 5 5v5h-5a5 5 0 0 1 0-10Z"
|
|
686
|
+
],
|
|
687
|
+
"recurring": [
|
|
688
|
+
"M7.007 2.933a1 1 0 0 0-1.001 1v1.002H5.005a2.002 2.002 0 0 0-2.002 2.001v9.01c0 1.105.896 2.001 2.002 2.001h11.01a2.002 2.002 0 0 0 2.002-2.002V6.936a2.002 2.002 0 0 0-2.001-2.002h-1.001v-1a1.001 1.001 0 1 0-2.002 0v1H8.008v-1c0-.553-.448-1.002-1.001-1.002Zm9.009 4.003v2.002H5.005V6.936h11.01Zm-11.011 9.01V10.94h11.01v5.005H5.006Zm2.002 5.004a2.002 2.002 0 0 1-2.002-2.002h13.013a1 1 0 0 0 1-1V6.935c1.106 0 2.003.897 2.003 2.002v10.01a2.002 2.002 0 0 1-2.002 2.002H7.007Z"
|
|
689
|
+
],
|
|
690
|
+
"redo": [
|
|
691
|
+
"M13 19A7 7 0 1 0 7.255 8H9a1 1 0 0 1 0 2H5a.997.997 0 0 1-.702-.288l-.006.005.002-.008A.997.997 0 0 1 4 9V5a1 1 0 0 1 2 0v1.343a9 9 0 1 1 3.496 13.95c-.598-.254-.693-1.025-.234-1.484l.053-.053c.307-.306.773-.374 1.177-.219A6.983 6.983 0 0 0 13 19ZM6.01 8h.012l-.006-.006L6.009 8Z"
|
|
692
|
+
],
|
|
693
|
+
"reminder": [
|
|
694
|
+
"M11 3a1 1 0 1 1 2 0v1a.977.977 0 0 1-.003.082A6.002 6.002 0 0 1 18 10v6l1.793 1.793a.707.707 0 0 1-.5 1.207H4.707a.707.707 0 0 1-.5-1.207L6 16v-6a6.002 6.002 0 0 1 5.003-5.918A.977.977 0 0 1 11 4V3Zm1 3a4 4 0 0 0-4 4v7h8v-7a4 4 0 0 0-4-4Zm2 14a2 2 0 1 1-4 0h4Z"
|
|
695
|
+
],
|
|
696
|
+
"reports": [
|
|
697
|
+
"M3 4v16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7.767a2 2 0 0 0-.513-1.337l-3.391-3.768A2 2 0 0 0 15.609 2H5a2 2 0 0 0-2 2Zm2 13.414 3-3 1.793 1.793a1 1 0 0 0 1.414 0L15 12.414V13a1 1 0 1 0 2 0v-3a1 1 0 0 0-1-1h-3a1 1 0 1 0 0 2h.586L10.5 14.086l-1.793-1.793a1 1 0 0 0-1.414 0L5 14.586V4h10.61L19 7.767V20H5v-2.586Z"
|
|
698
|
+
],
|
|
699
|
+
"request": [
|
|
700
|
+
"M12 2a1 1 0 0 0-1 1v5.586L9.707 7.285A.998.998 0 0 0 8 8c.002.253.1.506.293.699l3 3.008a.997.997 0 0 0 1.414 0l3.022-3.293a.996.996 0 0 0 0-1.414.997.997 0 0 0-1.414 0L13 8.586V3a1 1 0 0 0-1-1Z",
|
|
701
|
+
"M2 5a2 2 0 0 1 2-2h4v2H4v9h5a1 1 0 0 1 .894.553L10.618 16h2.764l.724-1.447A1 1 0 0 1 15 14h5V5h-4V3h4a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm18 11h-4.382l-.724 1.447A1 1 0 0 1 14 18h-4a1 1 0 0 1-.894-.553L8.382 16H4v4h16v-4Z"
|
|
702
|
+
],
|
|
703
|
+
"runningTimer": [
|
|
704
|
+
"M12 6a1 1 0 0 0-1 1v5a1 1 0 1 0 2 0V7a1 1 0 0 0-1-1Z",
|
|
705
|
+
"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-18a8 8 0 1 1 0 16 8 8 0 0 1 0-16Z"
|
|
706
|
+
],
|
|
707
|
+
"schedule": [
|
|
708
|
+
"M7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3-9a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2h-8Zm-1 5a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2h-8a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-8Z",
|
|
709
|
+
"M4 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Zm16 2v14H4V5h16Z"
|
|
710
|
+
],
|
|
711
|
+
"search": [
|
|
712
|
+
"M15.906 17.32a8 8 0 1 1 1.414-1.414l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387ZM17 11a6 6 0 1 0-12 0 6 6 0 0 0 12 0Z"
|
|
713
|
+
],
|
|
714
|
+
"sendInvoice": [
|
|
715
|
+
"M13.977 9c.026 0 .65.04 1.316.707a1 1 0 0 0 1.414-1.414A4.487 4.487 0 0 0 15 7.2V7a1 1 0 0 0-2 0v.184A2.996 2.996 0 0 0 11 10c0 2.28 1.727 2.713 2.758 2.97C14.873 13.25 15 13.354 15 14c0 .552-.448 1-.976 1-.026 0-.65-.04-1.317-.707a1 1 0 1 0-1.414 1.415A4.502 4.502 0 0 0 13 16.798v.2a1 1 0 0 0 2 0v-.184A2.995 2.995 0 0 0 17 14c0-2.28-1.726-2.712-2.757-2.97C13.128 10.752 13 10.646 13 10c0-.55.45-1 .977-1Z",
|
|
716
|
+
"M8 2a2 2 0 0 0-2 2v2h2V4h8.586L20 7.414V20H8v-2H6v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 21.414 6L18 2.586A2 2 0 0 0 16.586 2H8Z",
|
|
717
|
+
"M2 11a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm2 3a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm2-8h2v2H6V6Zm0 11h2v1H6v-1Z"
|
|
718
|
+
],
|
|
719
|
+
"sendMessage": [
|
|
720
|
+
"M3.398 3.202a1 1 0 0 1 1.05-.096l16 8a1 1 0 0 1 0 1.788l-16 8a1 1 0 0 1-1.43-1.078L4.482 12 3.017 4.184a1 1 0 0 1 .38-.982ZM6.33 13l-.976 5.205L17.764 12 5.354 5.795 6.33 11H11a1 1 0 1 1 0 2H6.33Z"
|
|
721
|
+
],
|
|
722
|
+
"share": [
|
|
723
|
+
"M20 7a3 3 0 0 1-5.01 2.227l-4.072 1.963a4.022 4.022 0 0 1-.01 1.665l3.968 2.026a3 3 0 1 1-.86 1.812l-4.022-2.04a4 4 0 1 1 .062-5.234l3.982-1.943A3 3 0 1 1 20 7Zm-2 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-9.863 3.354a2 2 0 0 0-3.134 1.761v.007a2 2 0 1 0 3.134-1.768ZM17 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
|
|
724
|
+
],
|
|
725
|
+
"signature": [
|
|
726
|
+
"M9 13.83a2 2 0 0 1 .586-1.413l7.83-7.831a1.996 1.996 0 0 1 2.829 0l1.172 1.171c.365.366.56.838.583 1.317a1.995 1.995 0 0 1-.583 1.512l-7.831 7.83a2 2 0 0 1-1.414.586H9v-3.171Zm3.172 1.172 7.83-7.83L18.831 6 11 13.83v1.172h1.172Zm-6.39 2c-.33 0-.65.091-.957.226h-.001c-.261.116-.52.268-.776.442a7.548 7.548 0 0 0-.75.589c-.375.343-.398 1.073-.058 1.445l.002.002a.917.917 0 0 0 1.294.055c.108-.099.306-.263.546-.426a3.18 3.18 0 0 1 .482-.279c.067-.029.12-.047.161-.058.04-.01.057-.012.057-.012.038 0 .17.025.415.125.227.093.503.231.804.404.554.32 1.179.487 1.817.487h4.19c.506 0 .916-.41.916-.916s-.418-1.084-.924-1.084H8.819a1.8 1.8 0 0 1-.903-.242l-.001-.001c-.756-.434-1.503-.757-2.133-.757Z"
|
|
727
|
+
],
|
|
728
|
+
"sliderCenter": [
|
|
729
|
+
"M21.707 5.707A.996.996 0 0 0 22 5.048v-.059a.995.995 0 0 0-.293-.696l-2-2a1 1 0 1 0-1.414 1.414l.293.293H16a1 1 0 1 0 0 2h2.586l-.293.293a1 1 0 0 0 1.414 1.414l2-2ZM11 10H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h7v2a1 1 0 1 0 2 0v-2h7a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-7V8a1 1 0 1 0-2 0v2Zm0 2v5H4v-5h7Zm2 0h7v5h-7v-5ZM8 6H5.414l.293.293a1 1 0 0 1-1.414 1.414l-2-2a.997.997 0 0 1-.002-1.412l.002-.002 2-2a1 1 0 0 1 1.414 1.414L5.414 4H8a1 1 0 1 1 0 2Z"
|
|
730
|
+
],
|
|
731
|
+
"sliderStart": [
|
|
732
|
+
"M8 8a1 1 0 0 0-2 0v2H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h2v2a1 1 0 1 0 2 0v-2h12a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2H8V8Zm-2 4v5H4v-5h2Zm2 5v-5h12v5H8Zm6.707-9.293 2-2a1 1 0 0 0 0-1.415l-2-2a1 1 0 1 0-1.414 1.415l.293.293H11a1 1 0 1 0 0 2h2.586l-.293.293a1 1 0 0 0 1.414 1.414Z"
|
|
733
|
+
],
|
|
734
|
+
"sms": [
|
|
735
|
+
"M3 4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v4h5a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-5v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4Zm10 13.603-1.35 1.156A1 1 0 0 1 10 18v-2H8a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h5V7H5v13h8v-2.397ZM5 4v1h8V4H5Zm4 10h3v1.826L14.13 14H19v-4H9v4Z"
|
|
736
|
+
],
|
|
737
|
+
"sms2": [
|
|
738
|
+
"M4 2a2 2 0 0 0-2 2v15.586c0 .89 1.077 1.337 1.707.707L6 18h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm16 2v12H5l-1 1V4h16ZM6 7a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm1 2a1 1 0 0 0 0 2h10a1 1 0 1 0 0-2H7Zm0 3a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H7Z"
|
|
739
|
+
],
|
|
740
|
+
"sneaker": [
|
|
741
|
+
"M6 11.014c.552 0 1-.45 1-1.003a1.001 1.001 0 1 0-1 1.003Z",
|
|
742
|
+
"M10.575 5.045c.392-.049.79.02 1.143.196l9.176 4.6A2.005 2.005 0 0 1 22 11.632v3.39a3.003 3.003 0 0 1-3 3.007H5c-1.657 0-3-1.346-3-3.007V7.889c0-1.01.751-1.863 1.752-1.989l6.824-.855ZM5 16.025h14c.552 0 1-.449 1-1.002H4c0 .553.448 1.002 1 1.002Zm15-4.392-3.225-1.616-.346.868a1 1 0 1 1-1.857-.745l.408-1.023-.622-.311-.43 1.076a1 1 0 1 1-1.857-.744l.492-1.232-1.74-.872L4 7.89v5.13h16v-1.386Z"
|
|
743
|
+
],
|
|
744
|
+
"sort": [
|
|
745
|
+
"M16 8a2 2 0 0 1 2 2v1a2 2 0 0 1 2 2v1a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1a2 2 0 0 1-2-2v-1a2 2 0 0 1 2-2h10Zm-.5 3a.5.5 0 0 0 0-1h-9a.5.5 0 0 0 0 1h9ZM8 13v1h10v-1H8Zm3.293-9.707a.997.997 0 0 1 1.414 0l2.293 2a1 1 0 0 1-1.414 1.414L12 5.414l-1.586 1.293A1 1 0 1 1 9 5.293l2.293-2ZM12 18.586l-1.586-1.293a.997.997 0 0 0-1.414 0 1 1 0 0 0 0 1.414l2.293 2a.997.997 0 0 0 1.414 0l2.293-2a1 1 0 0 0-1.414-1.414L12 18.586Z"
|
|
746
|
+
],
|
|
747
|
+
"sparkles": [
|
|
748
|
+
"M6 2a1 1 0 0 1 1 1v1l1 1h1a1 1 0 1 1 0 2H8L7 8v1a1 1 0 1 1-2 0V8L4 7H3a1 1 0 1 1 0-2h1l1-1V3a1 1 0 0 1 1-1Zm1 12a1 1 0 0 1 1 1v1l1 1h1a1 1 0 1 1 0 2H9l-1 1v1a1 1 0 1 1-2 0v-1l-1-1H4a1 1 0 1 1 0-2h1l1-1v-1a1 1 0 0 1 1-1Zm7-10c.255-1.005 1.683-1.005 1.938 0L18 9.5l3.314 1.615a1 1 0 0 1 0 1.77L18 14.5l-2.03 5.684c-.256 1.005-1.684 1.005-1.94 0L12 14.5l-3.314-1.615a1 1 0 0 1 0-1.77L12 9.5 14 4Zm-3 8 2 1 1 1 1 3 1-3 1-1 2-1-2-1-1-1-1-3-1 3-1 1-2 1Z"
|
|
749
|
+
],
|
|
750
|
+
"star": [
|
|
751
|
+
"m15.673 13.337 3.673-3.58-5.076-.738-2.27-4.6-2.27 4.6-5.076.738 3.673 3.58-.867 5.176L12 16.006l4.54 2.386-.867-5.055ZM12 18.335l-4.505 2.49a1.546 1.546 0 0 1-2.244-1.63l.86-5.137-3.644-3.553a1.546 1.546 0 0 1 .857-2.637l5.037-.732 2.252-4.273a1.547 1.547 0 0 1 2.774 0l2.252 4.273 5.037.732a1.546 1.546 0 0 1 .857 2.637l-3.645 3.553.86 5.139a1.547 1.547 0 0 1-2.243 1.63L12 18.334Z"
|
|
752
|
+
],
|
|
753
|
+
"starFill": [
|
|
754
|
+
"m12 18.626-4.505 2.196a1.546 1.546 0 0 1-2.244-1.63l.86-4.843-3.644-3.553a1.546 1.546 0 0 1 .857-2.637l5.037-.732 2.252-4.564a1.547 1.547 0 0 1 2.774 0l2.252 4.564 5.037.732a1.546 1.546 0 0 1 .857 2.637l-3.645 3.553.86 4.844a1.547 1.547 0 0 1-2.243 1.63L12 18.626Z"
|
|
755
|
+
],
|
|
756
|
+
"starHalf": [
|
|
757
|
+
"M15.6728 13.3369L19.3458 9.75693L14.2698 9.01893L11.9998 4.41993V16.0059L16.5398 18.3919L15.6728 13.3369ZM11.9998 18.3349L7.49485 20.8259C7.23947 20.9604 6.95153 21.0207 6.66365 21C6.37576 20.9793 6.09941 20.8785 5.86589 20.7088C5.63236 20.5392 5.45098 20.3076 5.34229 20.0402C5.23359 19.7728 5.20192 19.4804 5.25085 19.1959L6.11085 14.0579L2.46685 10.5049C2.26027 10.3036 2.11416 10.0484 2.04504 9.76833C1.97591 9.48825 1.98653 9.19442 2.0757 8.92006C2.16486 8.6457 2.32901 8.40176 2.54959 8.21583C2.77016 8.02989 3.03836 7.90939 3.32385 7.86793L8.36085 7.13593L10.6128 2.8631C10.7404 2.60408 10.9379 2.38594 11.183 2.23339C11.4282 2.08085 11.7111 2 11.9998 2C12.2886 2 12.5715 2.08085 12.8167 2.23339C13.0618 2.38594 13.2593 2.60408 13.3868 2.8631L15.6388 7.13593L20.6758 7.86793C20.9613 7.90939 21.2295 8.02989 21.4501 8.21583C21.6707 8.40176 21.8348 8.6457 21.924 8.92006C22.0132 9.19442 22.0238 9.48825 21.9547 9.76833C21.8855 10.0484 21.7394 10.3036 21.5328 10.5049L17.8878 14.0579L18.7478 19.1965C18.7966 19.4809 18.7649 19.7732 18.6563 20.0404C18.5476 20.3076 18.3663 20.5391 18.133 20.7087C17.8996 20.8783 17.6235 20.9792 17.3357 21C17.048 21.0208 16.7602 20.9608 16.5048 20.8265L11.9998 18.3349Z"
|
|
758
|
+
],
|
|
759
|
+
"starburst": [
|
|
760
|
+
"M12 2a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0V3a1 1 0 0 0-1-1Zm0 14a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0v-4a1 1 0 0 0-1-1ZM2 12a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm15-1a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4ZM5.292 5.292a.997.997 0 0 1 1.414 0l2.002 2.002a.997.997 0 0 1 0 1.414.996.996 0 0 1-1.414 0L5.292 6.707a.996.996 0 0 1 0-1.415Zm13.416 0a.997.997 0 0 0-1.414 0l-2.002 2.002a.997.997 0 0 0 0 1.414.996.996 0 0 0 1.414 0l2.002-2.001a.996.996 0 0 0 0-1.415ZM5.292 18.708a.997.997 0 0 0 1.414 0l2.002-2.002a.997.997 0 0 0 0-1.414.996.996 0 0 0-1.414 0l-2.002 2.001a.997.997 0 0 0 0 1.415Zm13.416-.048a.997.997 0 0 1-1.414 0l-2.002-1.954a.997.997 0 0 1 0-1.414.996.996 0 0 1 1.414 0l2.002 1.954a.996.996 0 0 1 0 1.415Z"
|
|
761
|
+
],
|
|
762
|
+
"sun": [
|
|
763
|
+
"M12 7c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1Zm4.58 8H19a1 1 0 1 1 0 2H5a1 1 0 1 1 0-2h2.42A4.94 4.94 0 0 1 7 13c0-2.76 2.24-5 5-5s5 2.24 5 5c0 .71-.15 1.39-.42 2ZM12 10c-1.66 0-3 1.34-3 3 0 .77.3 1.47.78 2h4.44c.48-.53.78-1.23.78-2 0-1.66-1.34-3-3-3Zm-5 9a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Z",
|
|
764
|
+
"M5 14H3c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1Zm14 0c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1h-2ZM7.71 8.709A.995.995 0 0 1 6.95 9a1.021 1.021 0 0 1-.66-.291l-2.05-2.06a1 1 0 0 1 1.41-1.41l2.06 2.05A.972.972 0 0 1 8 8.14a.992.992 0 0 1-.28.559l-.01.01Z",
|
|
765
|
+
"M7.71 8.709A.995.995 0 0 1 6.95 9a1.021 1.021 0 0 1-.66-.291l-2.05-2.06a1 1 0 0 1 1.41-1.41l2.06 2.05A.972.972 0 0 1 8 8.14a.992.992 0 0 1-.28.559l-.01.01Zm8.58 0a.996.996 0 0 0 .76.291 1.02 1.02 0 0 0 .66-.291l2.05-2.06a1 1 0 0 0-1.41-1.41l-2.06 2.05a.974.974 0 0 0-.29.851c.03.205.124.402.28.559l.01.01Z",
|
|
766
|
+
"M16.29 8.709a.996.996 0 0 0 .76.291 1.02 1.02 0 0 0 .66-.291l2.05-2.06a1 1 0 0 0-1.41-1.41l-2.06 2.05a.974.974 0 0 0-.29.851c.03.205.124.402.28.559l.01.01Z"
|
|
767
|
+
],
|
|
768
|
+
"sync": [
|
|
769
|
+
"M9.65 3.384a1 1 0 0 1 1.403-.172l2.556 1.996a1 1 0 0 1 .172 1.404l-1.996 2.555a1 1 0 0 1-1.576-1.231l.386-.598a5.002 5.002 0 0 0-1.851 8.592l-1.418 1.418A7.003 7.003 0 0 1 10.48 5.303l-.659-.515a1 1 0 0 1-.172-1.404Zm3.641 13.314.49-.627a1 1 0 1 0-1.576-1.231l-1.996 2.555a1 1 0 0 0 .172 1.404l2.555 1.996a1 1 0 0 0 1.231-1.576l-.659-.515a7.003 7.003 0 0 0 3.103-12.092l-1.419 1.419a5.002 5.002 0 0 1-1.901 8.667Z"
|
|
770
|
+
],
|
|
771
|
+
"syncAlert": [
|
|
772
|
+
"M11 5.07a7 7 0 0 1 6 11.828V16a1 1 0 1 0-2 0v3a1 1 0 0 0 1 1h3.5a1 1 0 1 0 0-2h-.792A9 9 0 0 0 11 3.055V5.07ZM12 19c.34 0 .673-.024 1-.07v2.015A9 9 0 0 1 5.292 6H4.5a1 1 0 0 1 0-2H8a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0v-.899A7 7 0 0 0 12 19Z",
|
|
773
|
+
"M11 8a1 1 0 1 1 2 0v5a1 1 0 1 1-2 0V8Zm1 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"
|
|
774
|
+
],
|
|
775
|
+
"tableColumns": [
|
|
776
|
+
"M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14ZM6 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h2V6H6Zm4 12h4V6h-4v12Zm6 0h2a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-2v12Z"
|
|
777
|
+
],
|
|
778
|
+
"tag": [
|
|
779
|
+
"M2 7a2 2 0 0 1 2-2h11.809a2 2 0 0 1 1.506.685l4.364 5S22 11 22 12s-.32 1.315-.32 1.315l-4.365 5A2 2 0 0 1 15.81 19H4a2 2 0 0 1-2-2V7Zm13.809 0H4v10h11.809l4.364-5-4.364-5Z"
|
|
780
|
+
],
|
|
781
|
+
"task": [
|
|
782
|
+
"M9.72 13.305a1 1 0 1 0-1.415 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 1 0-1.414-1.414l-3.293 3.293-1.293-1.293Z",
|
|
783
|
+
"M9.293 2.293A1 1 0 0 1 10 2h4a1 1 0 0 1 .707.293L16.414 4H18a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1.586l1.707-1.707Zm5.414 5.414A1 1 0 0 1 14 8h-4a1 1 0 0 1-.707-.293L7.586 6H6v14h12V6h-1.586l-1.707 1.707ZM10.414 4l-1 1 1 1h3.172l1-1-1-1h-3.172Z"
|
|
784
|
+
],
|
|
785
|
+
"textBox": [
|
|
786
|
+
"M4 8a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm11 0a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2h-3a1 1 0 0 1-1-1ZM5 11a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H5Zm6 1a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Zm-7 4a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm10-1a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2h-5Z"
|
|
787
|
+
],
|
|
788
|
+
"textField": [
|
|
789
|
+
"M5 9a1 1 0 1 0 0 2h7a1 1 0 1 0 0-2H5Zm11 0a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-3ZM4 14a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm8-1a1 1 0 1 0 0 2h7a1 1 0 1 0 0-2h-7Z"
|
|
790
|
+
],
|
|
791
|
+
"thumbsUp": [
|
|
792
|
+
"M8 11.78V19h8l3-5.76v-1.29h-7.639l1.036-7.944L8 11.78ZM6.134 11l4.555-8.034c1.124-1.846 3.971-.844 3.691 1.299l-.74 5.685h6.86a.5.5 0 0 1 .5.5v3a1 1 0 0 1-.084.4l-3.276 6.648a.95.95 0 0 1-.44.453c-.132.065-.276.049-.423.049H4c-1.105 0-2-1.045-2-2.15V13a2 2 0 0 1 2-2h2.134ZM6 13H4v6h2v-6Z"
|
|
793
|
+
],
|
|
794
|
+
"timeline": [
|
|
795
|
+
"M8 5a3.001 3.001 0 0 1-2 2.83v1.34a3.001 3.001 0 0 1 0 5.66v1.34a3.001 3.001 0 1 1-2 0v-1.34a3.001 3.001 0 0 1 0-5.66V7.83A3.001 3.001 0 1 1 8 5ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 6a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm0 7a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm6-16a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-8Zm8 2v4h-8V5h8Zm-8 8a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-8Zm8 2v4h-8v-4h8Z"
|
|
796
|
+
],
|
|
797
|
+
"timer": [
|
|
798
|
+
"M12 6a1 1 0 0 0-1 1v5.622l3.293 3.112a.996.996 0 0 0 1.415 0 .997.997 0 0 0 0-1.415L13 11.794V7a1 1 0 0 0-1-1Z",
|
|
799
|
+
"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-2 0a8 8 0 1 0-16 0 8 8 0 0 0 16 0Z"
|
|
800
|
+
],
|
|
801
|
+
"today": [
|
|
802
|
+
"M16 3a1 1 0 0 0-1 1v1H9V4a1 1 0 0 0-2 0v1H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2V4a1 1 0 0 0-1-1Zm3 4v2H5V7h14ZM5 11h14v8H5v-8Zm11.5 4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"
|
|
803
|
+
],
|
|
804
|
+
"transfer": [
|
|
805
|
+
"M15.293 2.293a1 1 0 0 1 1.414 0l4 4a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L17.586 8H4a1 1 0 0 1 0-2h13.586l-2.293-2.293a1 1 0 0 1 0-1.414ZM6.414 18l2.293 2.293a1 1 0 1 1-1.414 1.414l-4-4a1 1 0 0 1 0-1.414l4-4a1 1 0 0 1 1.414 1.414L6.414 16H20a1 1 0 1 1 0 2H6.414Z"
|
|
806
|
+
],
|
|
807
|
+
"trash": [
|
|
808
|
+
"M9 11a1 1 0 1 1 2 0v6a1 1 0 1 1-2 0v-6Zm5-1a1 1 0 0 0-1 1v6a1 1 0 1 0 2 0v-6a1 1 0 0 0-1-1Z",
|
|
809
|
+
"M8 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2h3a1 1 0 1 1 0 2h-1v12a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8H5a1 1 0 0 1 0-2h3V4Zm6 2V5h-4v1h4ZM8 8v12h8V8H8Z"
|
|
810
|
+
],
|
|
811
|
+
"twitter": [
|
|
812
|
+
"M19.18 4h-1.384l-5.072 5.883L8.671 4H4l6.126 8.896L4 20h1.384l5.357-6.212L15.019 20h4.672l-6.353-9.225L19.18 4ZM5.883 5.04H8.01l9.787 13.968H15.67L5.883 5.04Z"
|
|
813
|
+
],
|
|
814
|
+
"unPinned": [
|
|
815
|
+
"M13.192 3.293a1 1 0 0 1 1.415 0l6.647 6.647a1 1 0 0 1-1.414 1.414l-.99-.99-3.243 3.243v6.657a1 1 0 0 1-1.707.707l-4.597-4.597-3.535 3.536a1 1 0 0 1-1.414-1.414l3.535-3.536-4.596-4.596A1 1 0 0 1 4 8.657h6.657l3.242-3.243-.707-.707a1 1 0 0 1 0-1.414Zm2.122 3.535-3.536 3.536a1 1 0 0 1-.707.293H6.414l7.193 7.192v-4.657a1 1 0 0 1 .293-.707l3.535-3.535-2.121-2.122Z"
|
|
816
|
+
],
|
|
817
|
+
"unscheduled": [
|
|
818
|
+
"M19 9h-5.258l2.357 2H19v2.46l2 1.697V7a2 2 0 0 0-2-2h-2V4a1 1 0 1 0-2 0v1H9.026l2.358 2H19v2ZM3.483 5.696l-.857-.736A1 1 0 1 1 3.93 3.443l18.399 15.79a1 1 0 0 1-1.303 1.518l-.514-.441c-.366.423-.907.69-1.511.69H5a2 2 0 0 1-2-2V7c0-.498.182-.954.483-1.304ZM18.985 19l-9.322-8H5v8h13.985ZM7.333 9l-2.33-2L5 9h2.333Z"
|
|
819
|
+
],
|
|
820
|
+
"updateStatus": [
|
|
821
|
+
"M4 5h11a4.977 4.977 0 0 0-.9 2H4v10h16v-4.1a4.977 4.977 0 0 0 2-.9v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Z",
|
|
822
|
+
"M16.17 7a3.001 3.001 0 1 1 5.66 2.002A3.001 3.001 0 0 1 16.17 7Z"
|
|
823
|
+
],
|
|
824
|
+
"upload": [
|
|
825
|
+
"M2 10.5C2 13.538 4.686 16 8 16v-2c-2.21 0-4-1.567-4-3.5S5.79 7 8 7a4.5 4.5 0 0 1 1.414.225A4 4 0 0 1 17 9h.5a2.5 2.5 0 0 1 0 5H16v2h1.5a4.5 4.5 0 0 0 1.215-8.834A6.003 6.003 0 0 0 8.51 5.02 6.633 6.633 0 0 0 8 5c-3.314 0-6 2.462-6 5.5Z",
|
|
826
|
+
"M12.707 9.293a1 1 0 0 0-1.414 0L9 11.586A1 1 0 0 0 10.414 13l.586-.586V18a1 1 0 1 0 2 0v-5.586l.586.586A1 1 0 0 0 15 11.586l-2.293-2.293Z"
|
|
827
|
+
],
|
|
828
|
+
"user": [
|
|
829
|
+
"M16 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-2 0a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z",
|
|
830
|
+
"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-10 8c1.47 0 2.846-.396 4.03-1.087-2.079-1.865-3.826-2.087-5.175-1.766-1.134.27-2.138.955-2.951 1.726A7.963 7.963 0 0 0 12 20Zm-1.608-4.799c2.206-.525 4.682.056 7.245 2.475a8 8 0 1 0-11.322-.047c1.018-1.016 2.396-2.028 4.077-2.428Z"
|
|
831
|
+
],
|
|
832
|
+
"userSwitch": [
|
|
833
|
+
"M8 6C6.348 6 5 7.348 5 9s1.348 3 3 3 3-1.348 3-3a3 3 0 0 0-3-3Zm0 4.154a1.154 1.154 0 1 1 0-2.309 1.154 1.154 0 0 1 0 2.309ZM13 9c0-1.652 1.348-3 3-3a3 3 0 1 1-3 3Zm1.846 0a1.154 1.154 0 1 0 2.309 0 1.154 1.154 0 0 0-2.309 0Zm6.65 10H15a5.99 5.99 0 0 0-.341-2h4.81A4.015 4.015 0 0 0 16 15c-.754 0-1.464.212-2.07.578a6.035 6.035 0 0 0-1.435-1.456A6.004 6.004 0 0 1 16 13c3.15 0 5.728 2.41 5.998 5.47.03.29-.21.53-.501.53Zm-19.495-.53A6.017 6.017 0 0 1 8 13c3.15 0 5.728 2.41 5.999 5.47.03.29-.211.53-.502.53H2.513A.505.505 0 0 1 2 18.47ZM11.47 17A4.015 4.015 0 0 0 8 15c-1.475 0-2.78.81-3.471 2h6.94Z"
|
|
834
|
+
],
|
|
835
|
+
"userUnassigned": [
|
|
836
|
+
"m5.14 4.724.01-.009L6.563 6.13a3.788 3.788 0 0 0-.009.009l1.937 1.937.007-.012 1.54 1.54c0 .006-.002.01-.003.016l2.345 2.344.014-.003 1.54 1.54a.624.624 0 0 1-.01.007l3.937 3.937.008-.01 1.415 1.416-.008.008.433.434A.998.998 0 0 1 19 21a.997.997 0 0 1-.704-.293l-.534-.533A9.954 9.954 0 0 1 12 22C6.477 22 2 17.523 2 12c0-2.146.676-4.133 1.826-5.762l-.534-.533a.997.997 0 0 1 0-1.415.996.996 0 0 1 1.415 0l.433.434Zm.126 2.955A7.963 7.963 0 0 0 4 12c0 2.195.884 4.183 2.315 5.629 1.018-1.016 2.396-2.028 4.077-2.428a6.413 6.413 0 0 1 2.266-.132l-1.093-1.092a4.001 4.001 0 0 1-3.542-3.542L5.266 7.68ZM12 20c1.47 0 2.846-.396 4.03-1.087-2.079-1.865-3.826-2.087-5.175-1.766-1.134.27-2.138.955-2.951 1.726A7.963 7.963 0 0 0 12 20ZM9.94 6.57l1.507 1.507a2 2 0 0 1 2.476 2.476l1.507 1.507a4 4 0 0 0-5.49-5.49Z",
|
|
837
|
+
"M20 12c0 1.342-.33 2.606-.914 3.717l1.467 1.467A9.954 9.954 0 0 0 22 12c0-5.523-4.477-10-10-10a9.953 9.953 0 0 0-5.184 1.447l1.467 1.467A8 8 0 0 1 20 12Z"
|
|
838
|
+
],
|
|
839
|
+
"vcard": [
|
|
840
|
+
"M14 9a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Zm-1 7a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm1-4a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Zm-6 2a3.008 3.008 0 0 0-3 2.735c-.01.145.11.265.256.265h5.492c.145 0 .266-.12.25-.265A3.008 3.008 0 0 0 8 14Zm0-1a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z",
|
|
841
|
+
"M2 8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8Zm2 0v10h16V8H4Z"
|
|
842
|
+
],
|
|
843
|
+
"video": [
|
|
844
|
+
"M9 9a1 1 0 0 1 1.514-.857l5 3a1 1 0 0 1 0 1.714l-5 3A1 1 0 0 1 9 15V9Z",
|
|
845
|
+
"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-2 0a8 8 0 1 0-16 0 8 8 0 0 0 16 0Z"
|
|
846
|
+
],
|
|
847
|
+
"visit": [
|
|
848
|
+
"M4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h1.17a3.001 3.001 0 0 0 5.66 0h3.34a3.001 3.001 0 0 0 5.66 0H20a2 2 0 0 0 2-2v-6l-2.903-4.147A2 2 0 0 0 17.46 6h-3.727A2 2 0 0 0 12 5H4Zm15.83 12a3.001 3.001 0 0 0-5.66 0H14v-4h6v4h-.17ZM12 7v10h-1.17a3.001 3.001 0 0 0-5.66 0H4V7h8ZM9 18a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm8.25-10L19 11h-5V8h3.25ZM18 18a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
849
|
+
],
|
|
850
|
+
"wallet": [
|
|
851
|
+
"M17 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
|
|
852
|
+
"M2 4a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm2 4v12h16v-2h-6a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h6V8H4Zm0-3a1 1 0 0 0 1 1h13V4H5a1 1 0 0 0-1 1Zm10 7v4h6v-4h-6Z"
|
|
853
|
+
],
|
|
854
|
+
"word": [
|
|
855
|
+
"M16.973 10.082a.865.865 0 1 0-1.686-.379l-1.138 4.665-.995-3.632a1 1 0 0 0-.965-.736h-.357a1 1 0 0 0-.961.726l-1.04 3.641-1.12-4.663a.863.863 0 1 0-1.684.37l1.556 5.172a1 1 0 0 0 .97.754h.536a1 1 0 0 0 .96-.719l.946-3.23.91 3.221a1 1 0 0 0 .963.728h.535a1 1 0 0 0 .967-.748l1.603-5.17Z",
|
|
856
|
+
"M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.414A2 2 0 0 0 19.414 6L16 2.586A2 2 0 0 0 14.586 2H6Zm0 18V4h8.586L18 7.414V20H6Z"
|
|
857
|
+
],
|
|
858
|
+
"work": [
|
|
859
|
+
"M9 3a2 2 0 0 0-2 2v2H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3V5a2 2 0 0 0-2-2H9Zm6 4H9V5h6v2Zm5 2v4h-5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2H4V9h16Zm0 6v5H4v-5h5v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h5Zm-9-2h2v3h-2v-3Z"
|
|
860
|
+
],
|
|
861
|
+
"xero": [
|
|
862
|
+
"M9.296 11.61v.017h3.14a1.617 1.617 0 0 0-3.14-.024v.007Z",
|
|
863
|
+
"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM8.576 10.286l-1.703 1.71 1.701 1.709a.306.306 0 1 1-.437.426l-1.7-1.701-1.707 1.707a.306.306 0 1 1-.428-.436l1.702-1.706-1.703-1.705a.305.305 0 0 1 .214-.524c.081 0 .157.031.215.088l1.71 1.707 1.7-1.704a.306.306 0 0 1 .434.429Zm5.705-.228a1.27 1.27 0 0 1 .781-.264h.094-.002c.169 0 .306.137.306.306 0 .169-.129.293-.309.3-.005 0-.069 0-.129.006-.661.083-.732.396-.732 1.17v2.321a.305.305 0 0 1-.61 0v-3.775c0-.168.134-.304.301-.304a.31.31 0 0 1 .3.24Zm-4.705.115a2.25 2.25 0 0 1 2.494-.067c.518.329.86.841.99 1.465v-.001c.065.352-.17.661-.606.671H9.267l.005.047c.016.089.038.174.068.258.169.442.644 1.063 1.531 1.073.272-.002.527-.07.752-.19a1.76 1.76 0 0 0 .441-.356 1.8 1.8 0 0 0 .107-.14c.149-.191.338-.156.45-.07.134.103.157.319.035.47l-.002.002-.002.002-.004.005-.002.003a2.42 2.42 0 0 1-.573.543 2.208 2.208 0 0 1-.67.286 2.108 2.108 0 0 1-.804.054 2.258 2.258 0 0 1-1.9-1.675 2.266 2.266 0 0 1 .877-2.38Zm7.976 4.066a2.242 2.242 0 0 1 0-4.483 2.243 2.243 0 0 1 0 4.483Z",
|
|
864
|
+
"M17.552 10.388a1.61 1.61 0 0 0 0 3.218 1.61 1.61 0 0 0 0-3.218Zm0 .969a.64.64 0 0 1 0 1.28.64.64 0 0 1 0-1.28Z"
|
|
865
|
+
],
|
|
866
|
+
"yelp": [
|
|
867
|
+
"M12.1 10.638c-.053-1.26-.426-6.877-.47-7.138-.064-.235-.245-.403-.506-.47-.799-.202-3.854.669-4.421 1.263-.182.192-.25.43-.195.64.088.186 3.876 6.239 3.876 6.239.56.922 1.016.78 1.166.732.15-.048.602-.192.55-1.266Zm3.146 2.628c3.132-.77 3.253-.812 3.377-.895.19-.128.284-.346.268-.61v-.029c-.08-.78-1.428-2.814-2.092-3.143-.235-.115-.471-.107-.665.025-.12.08-.21.202-1.887 2.531l-.767 1.06c-.2.246-.202.6-.008.904.202.314.544.467.857.379 0 0-.013.022-.017.026.155-.06.432-.128.934-.25Zm3.745 3.95c-.106.755-1.626 2.718-2.322 3-.241.099-.473.075-.654-.07-.118-.094-.243-.285-1.88-2.985l-.487-.805c-.186-.288-.15-.668.083-.957.224-.283.56-.388.851-.273.016.007 1.225.413 1.225.413 2.755.919 2.846.954 2.962 1.043.178.144.259.371.222.634Zm-7.005 4.024c.049-.14.054-.238.062-3.182l.008-1.314c.02-.318-.183-.608-.516-.74-.343-.133-.711-.05-.918.213 0 0-.604.729-.607.729-2.077 2.477-2.162 2.591-2.213 2.738a.596.596 0 0 0-.032.27c.012.131.07.262.167.382.481.582 2.79 1.446 3.527 1.318.257-.048.443-.194.522-.414Zm-6.951-6.222c-.102-1.015.023-2.546.322-3.031.14-.225.344-.342.573-.333.15.002.282.05 3.246 1.293l.865.358c.313.119.504.45.484.823-.02.365-.226.651-.531.73l-1.231.399c-2.758.901-2.85.927-2.996.918-.229-.007-.43-.145-.55-.375-.085-.167-.145-.446-.182-.782Z"
|
|
868
|
+
],
|
|
869
|
+
"youtube": [
|
|
870
|
+
"M19.825 5.428a2.507 2.507 0 0 1 1.763 1.763c.428 1.565.412 4.827.412 4.827s0 3.245-.412 4.81a2.506 2.506 0 0 1-1.763 1.763c-1.565.412-7.825.412-7.825.412s-6.244 0-7.825-.428a2.506 2.506 0 0 1-1.763-1.763C2 15.263 2 12.002 2 12.002s0-3.246.412-4.81a2.557 2.557 0 0 1 1.763-1.78C5.74 5 12 5 12 5s6.26 0 7.825.428Zm-9.818 3.575V15l5.206-2.998-5.206-2.999Z"
|
|
871
|
+
]
|
|
872
|
+
}
|
|
873
|
+
};
|
|
874
|
+
|
|
875
|
+
var tokens_web = {
|
|
876
|
+
"base-unit": "16px",
|
|
877
|
+
"border-base": 1,
|
|
878
|
+
"border-thick": 2,
|
|
879
|
+
"border-thicker": 4,
|
|
880
|
+
"border-thickest": 8,
|
|
881
|
+
"color-base-grey--100": "hsl(0, 0%, 97%)",
|
|
882
|
+
"color-base-grey--200": "hsl(0, 0%, 93%)",
|
|
883
|
+
"color-base-grey--300": "hsl(0, 0%, 87%)",
|
|
884
|
+
"color-base-grey--400": "hsl(0, 0%, 72%)",
|
|
885
|
+
"color-base-grey--500": "hsl(0, 0%, 58%)",
|
|
886
|
+
"color-base-grey--600": "hsl(0, 0%, 47%)",
|
|
887
|
+
"color-base-grey--700": "hsl(0, 0%, 35%)",
|
|
888
|
+
"color-base-grey--800": "hsl(0, 0%, 24%)",
|
|
889
|
+
"color-base-grey--900": "hsl(0, 0%, 15%)",
|
|
890
|
+
"color-base-grey--1000": "hsl(0, 0%, 11%)",
|
|
891
|
+
"color-base-taupe--100": "hsl(45, 20%, 97%)",
|
|
892
|
+
"color-base-taupe--200": "hsl(53, 21%, 93%)",
|
|
893
|
+
"color-base-taupe--300": "hsl(51, 17%, 85%)",
|
|
894
|
+
"color-base-taupe--400": "hsl(49, 7%, 70%)",
|
|
895
|
+
"color-base-taupe--500": "hsl(47, 4%, 57%)",
|
|
896
|
+
"color-base-taupe--600": "hsl(43, 3%, 46%)",
|
|
897
|
+
"color-base-taupe--700": "hsl(48, 3%, 34%)",
|
|
898
|
+
"color-base-taupe--800": "hsl(40, 3%, 23%)",
|
|
899
|
+
"color-base-taupe--900": "hsl(30, 3%, 15%)",
|
|
900
|
+
"color-base-taupe--1000": "hsl(30, 4%, 11%)",
|
|
901
|
+
"color-base-red--100": "hsl(10, 60%, 98%)",
|
|
902
|
+
"color-base-red--200": "hsl(7, 63%, 95%)",
|
|
903
|
+
"color-base-red--300": "hsl(5, 65%, 90%)",
|
|
904
|
+
"color-base-red--400": "hsl(6, 64%, 76%)",
|
|
905
|
+
"color-base-red--500": "hsl(6, 64%, 65%)",
|
|
906
|
+
"color-base-red--600": "hsl(6, 64%, 51%)",
|
|
907
|
+
"color-base-red--700": "hsl(6, 100%, 35%)",
|
|
908
|
+
"color-base-red--800": "hsl(6, 100%, 24%)",
|
|
909
|
+
"color-base-red--900": "hsl(6, 100%, 16%)",
|
|
910
|
+
"color-base-red--1000": "hsl(6, 100%, 12%)",
|
|
911
|
+
"color-base-green--100": "hsl(108, 29%, 97%)",
|
|
912
|
+
"color-base-green--200": "hsl(109, 28%, 92%)",
|
|
913
|
+
"color-base-green--300": "hsl(106, 28%, 85%)",
|
|
914
|
+
"color-base-green--400": "hsl(107, 29%, 65%)",
|
|
915
|
+
"color-base-green--500": "hsl(107, 30%, 49%)",
|
|
916
|
+
"color-base-green--600": "hsl(107, 58%, 33%)",
|
|
917
|
+
"color-base-green--700": "hsl(107, 65%, 24%)",
|
|
918
|
+
"color-base-green--800": "hsl(107, 64%, 16%)",
|
|
919
|
+
"color-base-green--900": "hsl(108, 63%, 11%)",
|
|
920
|
+
"color-base-green--1000": "hsl(108, 64%, 8%)",
|
|
921
|
+
"color-base-blue--100": "hsl(210, 17%, 98%)",
|
|
922
|
+
"color-base-blue--200": "hsl(195, 12%, 94%)",
|
|
923
|
+
"color-base-blue--300": "hsl(200, 13%, 87%)",
|
|
924
|
+
"color-base-blue--400": "hsl(196, 12%, 70%)",
|
|
925
|
+
"color-base-blue--500": "hsl(198, 12%, 57%)",
|
|
926
|
+
"color-base-blue--600": "hsl(197, 15%, 45%)",
|
|
927
|
+
"color-base-blue--700": "hsl(198, 25%, 33%)",
|
|
928
|
+
"color-base-blue--800": "hsl(198, 35%, 21%)",
|
|
929
|
+
"color-base-blue--900": "hsl(197, 90%, 12%)",
|
|
930
|
+
"color-base-blue--1000": "hsl(198, 96%, 9%)",
|
|
931
|
+
"color-base-yellow--100": "hsl(49, 67%, 95%)",
|
|
932
|
+
"color-base-yellow--200": "hsl(52, 64%, 89%)",
|
|
933
|
+
"color-base-yellow--300": "hsl(51, 64%, 77%)",
|
|
934
|
+
"color-base-yellow--400": "hsl(51, 64%, 49%)",
|
|
935
|
+
"color-base-yellow--500": "hsl(51, 64%, 40%)",
|
|
936
|
+
"color-base-yellow--600": "hsl(51, 64%, 32%)",
|
|
937
|
+
"color-base-yellow--700": "hsl(51, 64%, 24%)",
|
|
938
|
+
"color-base-yellow--800": "hsl(51, 64%, 16%)",
|
|
939
|
+
"color-base-yellow--900": "hsl(51, 63%, 11%)",
|
|
940
|
+
"color-base-yellow--1000": "hsl(50, 64%, 8%)",
|
|
941
|
+
"color-base-lime--100": "hsl(80, 53%, 97%)",
|
|
942
|
+
"color-base-lime--200": "hsl(79, 49%, 90%)",
|
|
943
|
+
"color-base-lime--300": "hsl(79, 51%, 78%)",
|
|
944
|
+
"color-base-lime--400": "hsl(79, 51%, 51%)",
|
|
945
|
+
"color-base-lime--500": "hsl(79, 85%, 34%)",
|
|
946
|
+
"color-base-lime--600": "hsl(79, 86%, 27%)",
|
|
947
|
+
"color-base-lime--700": "hsl(79, 85%, 21%)",
|
|
948
|
+
"color-base-lime--800": "hsl(79, 86%, 14%)",
|
|
949
|
+
"color-base-lime--900": "hsl(78, 87%, 9%)",
|
|
950
|
+
"color-base-lime--1000": "hsl(79, 82%, 7%)",
|
|
951
|
+
"color-base-lightBlue--100": "hsl(205, 86%, 97%)",
|
|
952
|
+
"color-base-lightBlue--200": "hsl(207, 87%, 94%)",
|
|
953
|
+
"color-base-lightBlue--300": "hsl(206, 91%, 87%)",
|
|
954
|
+
"color-base-lightBlue--400": "hsl(207, 89%, 71%)",
|
|
955
|
+
"color-base-lightBlue--500": "hsl(207, 79%, 57%)",
|
|
956
|
+
"color-base-lightBlue--600": "hsl(207, 61%, 45%)",
|
|
957
|
+
"color-base-lightBlue--700": "hsl(207, 61%, 34%)",
|
|
958
|
+
"color-base-lightBlue--800": "hsl(206, 61%, 23%)",
|
|
959
|
+
"color-base-lightBlue--900": "hsl(207, 61%, 15%)",
|
|
960
|
+
"color-base-lightBlue--1000": "hsl(207, 60%, 11%)",
|
|
961
|
+
"color-base-pink--100": "hsl(345, 40%, 98%)",
|
|
962
|
+
"color-base-pink--200": "hsl(347, 33%, 95%)",
|
|
963
|
+
"color-base-pink--300": "hsl(348, 36%, 89%)",
|
|
964
|
+
"color-base-pink--400": "hsl(349, 34%, 75%)",
|
|
965
|
+
"color-base-pink--500": "hsl(349, 34%, 64%)",
|
|
966
|
+
"color-base-pink--600": "hsl(348, 34%, 53%)",
|
|
967
|
+
"color-base-pink--700": "hsl(348, 40%, 41%)",
|
|
968
|
+
"color-base-pink--800": "hsl(348, 40%, 27%)",
|
|
969
|
+
"color-base-pink--900": "hsl(347, 41%, 18%)",
|
|
970
|
+
"color-base-pink--1000": "hsl(349, 40%, 13%)",
|
|
971
|
+
"color-base-orange--100": "hsl(36, 71%, 97%)",
|
|
972
|
+
"color-base-orange--200": "hsl(34, 76%, 92%)",
|
|
973
|
+
"color-base-orange--300": "hsl(32, 78%, 84%)",
|
|
974
|
+
"color-base-orange--400": "hsl(33, 77%, 63%)",
|
|
975
|
+
"color-base-orange--500": "hsl(33, 71%, 48%)",
|
|
976
|
+
"color-base-orange--600": "hsl(33, 71%, 38%)",
|
|
977
|
+
"color-base-orange--700": "hsl(33, 71%, 29%)",
|
|
978
|
+
"color-base-orange--800": "hsl(33, 72%, 20%)",
|
|
979
|
+
"color-base-orange--900": "hsl(33, 72%, 13%)",
|
|
980
|
+
"color-base-orange--1000": "hsl(33, 70%, 9%)",
|
|
981
|
+
"color-indigo": "rgb(85, 106, 203)",
|
|
982
|
+
"color-indigo--light": "rgb(136, 151, 219)",
|
|
983
|
+
"color-indigo--lighter": "rgb(187, 195, 234)",
|
|
984
|
+
"color-indigo--lightest": "rgb(230, 233, 247)",
|
|
985
|
+
"color-indigo--dark": "rgb(55, 69, 132)",
|
|
986
|
+
"color-white--rgb": "255, 255, 255",
|
|
987
|
+
"color-black--rgb": "0, 0, 0",
|
|
988
|
+
"color-brand--highlight": "hsl(86, 100%, 46%)",
|
|
989
|
+
"color-greyBlue--rgb": "101, 120, 132",
|
|
990
|
+
"color-purple--light": "rgb(172, 155, 214)",
|
|
991
|
+
"color-purple--lighter": "rgb(207, 198, 231)",
|
|
992
|
+
"color-purple--lightest": "rgb(237, 234, 246)",
|
|
993
|
+
"color-teal": "rgb(62, 173, 146)",
|
|
994
|
+
"color-teal--light": "rgb(120, 198, 179)",
|
|
995
|
+
"color-teal--lighter": "rgb(178, 222, 211)",
|
|
996
|
+
"color-teal--lightest": "rgb(226, 243, 239)",
|
|
997
|
+
"color-teal--dark": "rgb(40, 112, 95)",
|
|
998
|
+
"color-blue": "hsl(197, 90%, 12%)",
|
|
999
|
+
"color-blue--light": "hsl(198, 25%, 33%)",
|
|
1000
|
+
"color-blue--lighter": "hsl(198, 12%, 57%)",
|
|
1001
|
+
"color-blue--lightest": "hsl(200, 13%, 87%)",
|
|
1002
|
+
"color-blue--dark": "hsl(198, 96%, 9%)",
|
|
1003
|
+
"color-taupe": "hsl(53, 21%, 93%)",
|
|
1004
|
+
"color-taupe--light": "hsl(45, 20%, 97%)",
|
|
1005
|
+
"color-taupe--dark": "hsl(51, 17%, 85%)",
|
|
1006
|
+
"color-green": "hsl(107, 58%, 33%)",
|
|
1007
|
+
"color-green--light": "hsl(107, 30%, 49%)",
|
|
1008
|
+
"color-green--lighter": "hsl(107, 29%, 65%)",
|
|
1009
|
+
"color-green--lightest": "hsl(109, 28%, 92%)",
|
|
1010
|
+
"color-green--dark": "hsl(107, 64%, 16%)",
|
|
1011
|
+
"color-lime": "hsl(79, 85%, 34%)",
|
|
1012
|
+
"color-lime--light": "hsl(79, 51%, 51%)",
|
|
1013
|
+
"color-lime--lighter": "hsl(79, 51%, 78%)",
|
|
1014
|
+
"color-lime--lightest": "hsl(79, 49%, 90%)",
|
|
1015
|
+
"color-lime--dark": "hsl(79, 85%, 21%)",
|
|
1016
|
+
"color-yellowGreen": "hsl(79, 85%, 34%)",
|
|
1017
|
+
"color-yellowGreen--light": "hsl(79, 51%, 51%)",
|
|
1018
|
+
"color-yellowGreen--lighter": "hsl(79, 51%, 78%)",
|
|
1019
|
+
"color-yellowGreen--lightest": "hsl(79, 49%, 90%)",
|
|
1020
|
+
"color-yellowGreen--dark": "hsl(79, 86%, 27%)",
|
|
1021
|
+
"color-yellow": "hsl(51, 64%, 49%)",
|
|
1022
|
+
"color-yellow--light": "hsl(51, 64%, 77%)",
|
|
1023
|
+
"color-yellow--lighter": "hsl(52, 64%, 89%)",
|
|
1024
|
+
"color-yellow--lightest": "hsl(49, 67%, 95%)",
|
|
1025
|
+
"color-yellow--dark": "hsl(51, 64%, 32%)",
|
|
1026
|
+
"color-red": "hsl(6, 64%, 51%)",
|
|
1027
|
+
"color-red--light": "hsl(6, 64%, 76%)",
|
|
1028
|
+
"color-red--lighter": "hsl(5, 65%, 90%)",
|
|
1029
|
+
"color-red--lightest": "hsl(7, 63%, 95%)",
|
|
1030
|
+
"color-red--dark": "hsl(6, 100%, 24%)",
|
|
1031
|
+
"color-grey": "hsl(0, 0%, 72%)",
|
|
1032
|
+
"color-grey--light": "hsl(0, 0%, 87%)",
|
|
1033
|
+
"color-grey--lighter": "hsl(0, 0%, 93%)",
|
|
1034
|
+
"color-grey--lightest": "hsl(0, 0%, 97%)",
|
|
1035
|
+
"color-grey--dark": "hsl(0, 0%, 47%)",
|
|
1036
|
+
"color-overlay": "rgba(0, 0, 0, 0.32)",
|
|
1037
|
+
"color-overlay--dimmed": "rgba(255, 255, 255, 0.6)",
|
|
1038
|
+
"color-white": "rgba(255, 255, 255, 1)",
|
|
1039
|
+
"color-black": "rgba(0, 0, 0, 1)",
|
|
1040
|
+
"color-greyBlue": "hsl(197, 15%, 45%)",
|
|
1041
|
+
"color-greyBlue--light": "hsl(198, 12%, 57%)",
|
|
1042
|
+
"color-greyBlue--lighter": "hsl(196, 12%, 70%)",
|
|
1043
|
+
"color-greyBlue--lightest": "hsl(195, 12%, 94%)",
|
|
1044
|
+
"color-greyBlue--dark": "hsl(198, 35%, 21%)",
|
|
1045
|
+
"color-lightBlue": "hsl(207, 79%, 57%)",
|
|
1046
|
+
"color-lightBlue--light": "hsl(207, 89%, 71%)",
|
|
1047
|
+
"color-lightBlue--lighter": "hsl(206, 91%, 87%)",
|
|
1048
|
+
"color-lightBlue--lightest": "hsl(207, 87%, 94%)",
|
|
1049
|
+
"color-lightBlue--dark": "hsl(207, 61%, 45%)",
|
|
1050
|
+
"color-purple": "hsl(348, 40%, 27%)",
|
|
1051
|
+
"color-purple--dark": "hsl(347, 41%, 18%)",
|
|
1052
|
+
"color-pink": "hsl(348, 34%, 53%)",
|
|
1053
|
+
"color-pink--light": "hsl(349, 34%, 64%)",
|
|
1054
|
+
"color-pink--lighter": "hsl(349, 34%, 75%)",
|
|
1055
|
+
"color-pink--lightest": "hsl(347, 33%, 95%)",
|
|
1056
|
+
"color-pink--dark": "hsl(348, 40%, 27%)",
|
|
1057
|
+
"color-orange": "hsl(33, 71%, 48%)",
|
|
1058
|
+
"color-orange--light": "hsl(33, 77%, 63%)",
|
|
1059
|
+
"color-orange--lighter": "hsl(32, 78%, 84%)",
|
|
1060
|
+
"color-orange--lightest": "hsl(34, 76%, 92%)",
|
|
1061
|
+
"color-orange--dark": "hsl(33, 71%, 38%)",
|
|
1062
|
+
"color-brown": "hsl(33, 71%, 29%)",
|
|
1063
|
+
"color-brown--light": "hsl(33, 71%, 38%)",
|
|
1064
|
+
"color-brown--lighter": "hsl(51, 17%, 85%)",
|
|
1065
|
+
"color-brown--lightest": "hsl(53, 21%, 93%)",
|
|
1066
|
+
"color-brown--dark": "hsl(33, 72%, 20%)",
|
|
1067
|
+
"color-navy": "hsl(207, 61%, 34%)",
|
|
1068
|
+
"color-navy--light": "hsl(207, 61%, 45%)",
|
|
1069
|
+
"color-navy--lighter": "hsl(200, 13%, 87%)",
|
|
1070
|
+
"color-navy--lightest": "hsl(195, 12%, 94%)",
|
|
1071
|
+
"color-navy--dark": "hsl(206, 61%, 23%)",
|
|
1072
|
+
"color-base-white": "rgba(255, 255, 255, 1)",
|
|
1073
|
+
"color-base-black": "rgba(0, 0, 0, 1)",
|
|
1074
|
+
"color-interactive": "hsl(107, 58%, 33%)",
|
|
1075
|
+
"color-interactive--hover": "hsl(107, 65%, 24%)",
|
|
1076
|
+
"color-interactive--subtle": "hsl(198, 35%, 21%)",
|
|
1077
|
+
"color-interactive--subtle--hover": "hsl(197, 90%, 12%)",
|
|
1078
|
+
"color-destructive": "hsl(6, 64%, 51%)",
|
|
1079
|
+
"color-destructive--hover": "hsl(6, 100%, 35%)",
|
|
1080
|
+
"color-disabled": "hsl(0, 0%, 72%)",
|
|
1081
|
+
"color-disabled--secondary": "hsl(0, 0%, 93%)",
|
|
1082
|
+
"color-focus": "hsl(198, 12%, 57%)",
|
|
1083
|
+
"color-critical": "hsl(6, 64%, 51%)",
|
|
1084
|
+
"color-critical--surface": "hsl(7, 63%, 95%)",
|
|
1085
|
+
"color-critical--onSurface": "hsl(6, 100%, 24%)",
|
|
1086
|
+
"color-warning": "hsl(51, 64%, 49%)",
|
|
1087
|
+
"color-warning--surface": "hsl(52, 64%, 89%)",
|
|
1088
|
+
"color-warning--onSurface": "hsl(51, 64%, 24%)",
|
|
1089
|
+
"color-success": "hsl(107, 58%, 33%)",
|
|
1090
|
+
"color-success--surface": "hsl(109, 28%, 92%)",
|
|
1091
|
+
"color-success--onSurface": "hsl(107, 64%, 16%)",
|
|
1092
|
+
"color-informative": "hsl(207, 79%, 57%)",
|
|
1093
|
+
"color-informative--surface": "hsl(207, 87%, 94%)",
|
|
1094
|
+
"color-informative--onSurface": "hsl(207, 61%, 34%)",
|
|
1095
|
+
"color-inactive": "hsl(198, 25%, 33%)",
|
|
1096
|
+
"color-inactive--surface": "hsl(195, 12%, 94%)",
|
|
1097
|
+
"color-inactive--onSurface": "hsl(197, 90%, 12%)",
|
|
1098
|
+
"color-heading": "hsl(197, 90%, 12%)",
|
|
1099
|
+
"color-text": "hsl(198, 35%, 21%)",
|
|
1100
|
+
"color-text--secondary": "hsl(197, 15%, 45%)",
|
|
1101
|
+
"color-text--reverse": "rgba(255, 255, 255, 1)",
|
|
1102
|
+
"color-text--reverse--secondary": "hsl(200, 13%, 87%)",
|
|
1103
|
+
"color-icon": "hsl(198, 35%, 21%)",
|
|
1104
|
+
"color-surface": "rgba(255, 255, 255, 1)",
|
|
1105
|
+
"color-surface--hover": "hsl(53, 21%, 93%)",
|
|
1106
|
+
"color-surface--reverse": "hsl(197, 90%, 12%)",
|
|
1107
|
+
"color-surface--active": "hsl(51, 17%, 85%)",
|
|
1108
|
+
"color-surface--background": "hsl(53, 21%, 93%)",
|
|
1109
|
+
"color-surface--background--hover": "hsl(51, 17%, 85%)",
|
|
1110
|
+
"color-surface--background--subtle": "hsl(45, 20%, 97%)",
|
|
1111
|
+
"color-surface--background--subtle--hover": "hsl(51, 17%, 85%)",
|
|
1112
|
+
"color-border": "hsl(200, 13%, 87%)",
|
|
1113
|
+
"color-border--interactive": "hsl(200, 13%, 87%)",
|
|
1114
|
+
"color-border--section": "hsl(197, 90%, 12%)",
|
|
1115
|
+
"color-brand": "hsl(79, 85%, 34%)",
|
|
1116
|
+
"color-request": "hsl(33, 71%, 38%)",
|
|
1117
|
+
"color-request--surface": "hsl(34, 76%, 92%)",
|
|
1118
|
+
"color-request--onSurface": "hsl(33, 72%, 20%)",
|
|
1119
|
+
"color-quote": "hsl(348, 40%, 41%)",
|
|
1120
|
+
"color-quote--surface": "hsl(347, 33%, 95%)",
|
|
1121
|
+
"color-quote--onSurface": "hsl(348, 40%, 27%)",
|
|
1122
|
+
"color-job": "hsl(107, 58%, 33%)",
|
|
1123
|
+
"color-job--surface": "hsl(109, 28%, 92%)",
|
|
1124
|
+
"color-job--onSurface": "hsl(107, 65%, 24%)",
|
|
1125
|
+
"color-task": "hsl(206, 61%, 23%)",
|
|
1126
|
+
"color-task--surface": "hsl(195, 12%, 94%)",
|
|
1127
|
+
"color-task--onSurface": "hsl(198, 35%, 21%)",
|
|
1128
|
+
"color-invoice": "hsl(207, 61%, 34%)",
|
|
1129
|
+
"color-invoice--surface": "hsl(207, 87%, 94%)",
|
|
1130
|
+
"color-invoice--onSurface": "hsl(206, 61%, 23%)",
|
|
1131
|
+
"color-visit": "hsl(107, 58%, 33%)",
|
|
1132
|
+
"color-visit--surface": "hsl(109, 28%, 92%)",
|
|
1133
|
+
"color-visit--onSurface": "hsl(107, 65%, 24%)",
|
|
1134
|
+
"color-event": "hsl(51, 64%, 49%)",
|
|
1135
|
+
"color-event--surface": "hsl(52, 64%, 89%)",
|
|
1136
|
+
"color-event--onSurface": "hsl(51, 64%, 24%)",
|
|
1137
|
+
"color-payments": "hsl(207, 61%, 34%)",
|
|
1138
|
+
"color-payments--surface": "hsl(207, 87%, 94%)",
|
|
1139
|
+
"color-payments--onSurface": "hsl(207, 87%, 94%)",
|
|
1140
|
+
"color-client": "hsl(48, 3%, 34%)",
|
|
1141
|
+
"radius-base": 8,
|
|
1142
|
+
"radius-small": 4,
|
|
1143
|
+
"radius-large": 16,
|
|
1144
|
+
"radius-larger": 24,
|
|
1145
|
+
"radius-circle": 100,
|
|
1146
|
+
"space-minuscule": 1,
|
|
1147
|
+
"space-smallest": 2,
|
|
1148
|
+
"space-smaller": 4,
|
|
1149
|
+
"space-small": 8,
|
|
1150
|
+
"space-base": 16,
|
|
1151
|
+
"space-large": 24,
|
|
1152
|
+
"space-larger": 32,
|
|
1153
|
+
"space-largest": 48,
|
|
1154
|
+
"space-extravagant": 64,
|
|
1155
|
+
"shadow-low": "0px 1 2 rgba(0, 0, 0, 0.25), 0px 0px 2 rgba(0, 0, 0, 0.1)",
|
|
1156
|
+
"shadow-base": "0px 1 4 0px rgba(0, 0, 0, 0.1), 0px 4 12px 0px rgba(0, 0, 0, 0.05)",
|
|
1157
|
+
"shadow-high": "0px 16 16 0px rgba(0, 0, 0, 0.075), 0px 0px 8 0px rgba(0, 0, 0, 0.05)",
|
|
1158
|
+
"shadow-focus": "0px 0px 0px 2 rgba(255, 255, 255, 1), 0px 0px 0px 4 hsl(198, 12%, 57%)",
|
|
1159
|
+
"timing-quick": 100,
|
|
1160
|
+
"timing-base": 200,
|
|
1161
|
+
"timing-slow": 300,
|
|
1162
|
+
"timing-slower": 400,
|
|
1163
|
+
"timing-slowest": 500,
|
|
1164
|
+
"timing-loading": 1000,
|
|
1165
|
+
"timing-loading--extended": 2000,
|
|
1166
|
+
"opacity-overlay": 0.8,
|
|
1167
|
+
"opacity-pressed": 0.6,
|
|
1168
|
+
"elevation-default": 0,
|
|
1169
|
+
"elevation-base": 1,
|
|
1170
|
+
"elevation-menu": 6,
|
|
1171
|
+
"elevation-datepicker": 6,
|
|
1172
|
+
"elevation-modal": 1001,
|
|
1173
|
+
"elevation-tooltip": 1002,
|
|
1174
|
+
"elevation-toast": 1003,
|
|
1175
|
+
"typography--letterSpacing-base": 0,
|
|
1176
|
+
"typography--letterSpacing-loose": 0.4,
|
|
1177
|
+
"typography--fontFamily-normal": "Inter, Helvetica, Arial, sans-serif",
|
|
1178
|
+
"typography--fontFamily-display": "Jobber Pro, Poppins, Helvetica, Arial, sans-serif",
|
|
1179
|
+
"typography--lineHeight-large": 1.34,
|
|
1180
|
+
"typography--lineHeight-larger": 1.5,
|
|
1181
|
+
"typography--lineHeight-largest": 1.75,
|
|
1182
|
+
"typography--lineHeight-jumbo": 2,
|
|
1183
|
+
"typography--lineHeight-extravagant": 4,
|
|
1184
|
+
"typography--lineHeight-base": 1.25,
|
|
1185
|
+
"typography--lineHeight-tight": 1.2,
|
|
1186
|
+
"typography--lineHeight-tighter": 1.143,
|
|
1187
|
+
"typography--lineHeight-tightest": 1.12,
|
|
1188
|
+
"typography--lineHeight-minuscule": 1.08,
|
|
1189
|
+
"typography--fontSize-extravagant": 48,
|
|
1190
|
+
"typography--fontSize-jumbo": 36,
|
|
1191
|
+
"typography--fontSize-largest": 24,
|
|
1192
|
+
"typography--fontSize-larger": 20,
|
|
1193
|
+
"typography--fontSize-large": 16,
|
|
1194
|
+
"typography--fontSize-base": 14,
|
|
1195
|
+
"typography--fontSize-small": 12,
|
|
1196
|
+
"typography--fontSize-smaller": 10,
|
|
1197
|
+
};
|
|
1198
|
+
|
|
1199
|
+
var tokens_android = {
|
|
1200
|
+
"base-unit": 16,
|
|
1201
|
+
"border-base": 1,
|
|
1202
|
+
"border-thick": 2,
|
|
1203
|
+
"border-thicker": 4,
|
|
1204
|
+
"border-thickest": 8,
|
|
1205
|
+
"color-base-grey--100": "hsl(0, 0%, 97%)",
|
|
1206
|
+
"color-base-grey--200": "hsl(0, 0%, 93%)",
|
|
1207
|
+
"color-base-grey--300": "hsl(0, 0%, 87%)",
|
|
1208
|
+
"color-base-grey--400": "hsl(0, 0%, 72%)",
|
|
1209
|
+
"color-base-grey--500": "hsl(0, 0%, 58%)",
|
|
1210
|
+
"color-base-grey--600": "hsl(0, 0%, 47%)",
|
|
1211
|
+
"color-base-grey--700": "hsl(0, 0%, 35%)",
|
|
1212
|
+
"color-base-grey--800": "hsl(0, 0%, 24%)",
|
|
1213
|
+
"color-base-grey--900": "hsl(0, 0%, 15%)",
|
|
1214
|
+
"color-base-grey--1000": "hsl(0, 0%, 11%)",
|
|
1215
|
+
"color-base-taupe--100": "hsl(45, 20%, 97%)",
|
|
1216
|
+
"color-base-taupe--200": "hsl(53, 21%, 93%)",
|
|
1217
|
+
"color-base-taupe--300": "hsl(51, 17%, 85%)",
|
|
1218
|
+
"color-base-taupe--400": "hsl(49, 7%, 70%)",
|
|
1219
|
+
"color-base-taupe--500": "hsl(47, 4%, 57%)",
|
|
1220
|
+
"color-base-taupe--600": "hsl(43, 3%, 46%)",
|
|
1221
|
+
"color-base-taupe--700": "hsl(48, 3%, 34%)",
|
|
1222
|
+
"color-base-taupe--800": "hsl(40, 3%, 23%)",
|
|
1223
|
+
"color-base-taupe--900": "hsl(30, 3%, 15%)",
|
|
1224
|
+
"color-base-taupe--1000": "hsl(30, 4%, 11%)",
|
|
1225
|
+
"color-base-red--100": "hsl(10, 60%, 98%)",
|
|
1226
|
+
"color-base-red--200": "hsl(7, 63%, 95%)",
|
|
1227
|
+
"color-base-red--300": "hsl(5, 65%, 90%)",
|
|
1228
|
+
"color-base-red--400": "hsl(6, 64%, 76%)",
|
|
1229
|
+
"color-base-red--500": "hsl(6, 64%, 65%)",
|
|
1230
|
+
"color-base-red--600": "hsl(6, 64%, 51%)",
|
|
1231
|
+
"color-base-red--700": "hsl(6, 100%, 35%)",
|
|
1232
|
+
"color-base-red--800": "hsl(6, 100%, 24%)",
|
|
1233
|
+
"color-base-red--900": "hsl(6, 100%, 16%)",
|
|
1234
|
+
"color-base-red--1000": "hsl(6, 100%, 12%)",
|
|
1235
|
+
"color-base-green--100": "hsl(108, 29%, 97%)",
|
|
1236
|
+
"color-base-green--200": "hsl(109, 28%, 92%)",
|
|
1237
|
+
"color-base-green--300": "hsl(106, 28%, 85%)",
|
|
1238
|
+
"color-base-green--400": "hsl(107, 29%, 65%)",
|
|
1239
|
+
"color-base-green--500": "hsl(107, 30%, 49%)",
|
|
1240
|
+
"color-base-green--600": "hsl(107, 58%, 33%)",
|
|
1241
|
+
"color-base-green--700": "hsl(107, 65%, 24%)",
|
|
1242
|
+
"color-base-green--800": "hsl(107, 64%, 16%)",
|
|
1243
|
+
"color-base-green--900": "hsl(108, 63%, 11%)",
|
|
1244
|
+
"color-base-green--1000": "hsl(108, 64%, 8%)",
|
|
1245
|
+
"color-base-blue--100": "hsl(210, 17%, 98%)",
|
|
1246
|
+
"color-base-blue--200": "hsl(195, 12%, 94%)",
|
|
1247
|
+
"color-base-blue--300": "hsl(200, 13%, 87%)",
|
|
1248
|
+
"color-base-blue--400": "hsl(196, 12%, 70%)",
|
|
1249
|
+
"color-base-blue--500": "hsl(198, 12%, 57%)",
|
|
1250
|
+
"color-base-blue--600": "hsl(197, 15%, 45%)",
|
|
1251
|
+
"color-base-blue--700": "hsl(198, 25%, 33%)",
|
|
1252
|
+
"color-base-blue--800": "hsl(198, 35%, 21%)",
|
|
1253
|
+
"color-base-blue--900": "hsl(197, 90%, 12%)",
|
|
1254
|
+
"color-base-blue--1000": "hsl(198, 96%, 9%)",
|
|
1255
|
+
"color-base-yellow--100": "hsl(49, 67%, 95%)",
|
|
1256
|
+
"color-base-yellow--200": "hsl(52, 64%, 89%)",
|
|
1257
|
+
"color-base-yellow--300": "hsl(51, 64%, 77%)",
|
|
1258
|
+
"color-base-yellow--400": "hsl(51, 64%, 49%)",
|
|
1259
|
+
"color-base-yellow--500": "hsl(51, 64%, 40%)",
|
|
1260
|
+
"color-base-yellow--600": "hsl(51, 64%, 32%)",
|
|
1261
|
+
"color-base-yellow--700": "hsl(51, 64%, 24%)",
|
|
1262
|
+
"color-base-yellow--800": "hsl(51, 64%, 16%)",
|
|
1263
|
+
"color-base-yellow--900": "hsl(51, 63%, 11%)",
|
|
1264
|
+
"color-base-yellow--1000": "hsl(50, 64%, 8%)",
|
|
1265
|
+
"color-base-lime--100": "hsl(80, 53%, 97%)",
|
|
1266
|
+
"color-base-lime--200": "hsl(79, 49%, 90%)",
|
|
1267
|
+
"color-base-lime--300": "hsl(79, 51%, 78%)",
|
|
1268
|
+
"color-base-lime--400": "hsl(79, 51%, 51%)",
|
|
1269
|
+
"color-base-lime--500": "hsl(79, 85%, 34%)",
|
|
1270
|
+
"color-base-lime--600": "hsl(79, 86%, 27%)",
|
|
1271
|
+
"color-base-lime--700": "hsl(79, 85%, 21%)",
|
|
1272
|
+
"color-base-lime--800": "hsl(79, 86%, 14%)",
|
|
1273
|
+
"color-base-lime--900": "hsl(78, 87%, 9%)",
|
|
1274
|
+
"color-base-lime--1000": "hsl(79, 82%, 7%)",
|
|
1275
|
+
"color-base-lightBlue--100": "hsl(205, 86%, 97%)",
|
|
1276
|
+
"color-base-lightBlue--200": "hsl(207, 87%, 94%)",
|
|
1277
|
+
"color-base-lightBlue--300": "hsl(206, 91%, 87%)",
|
|
1278
|
+
"color-base-lightBlue--400": "hsl(207, 89%, 71%)",
|
|
1279
|
+
"color-base-lightBlue--500": "hsl(207, 79%, 57%)",
|
|
1280
|
+
"color-base-lightBlue--600": "hsl(207, 61%, 45%)",
|
|
1281
|
+
"color-base-lightBlue--700": "hsl(207, 61%, 34%)",
|
|
1282
|
+
"color-base-lightBlue--800": "hsl(206, 61%, 23%)",
|
|
1283
|
+
"color-base-lightBlue--900": "hsl(207, 61%, 15%)",
|
|
1284
|
+
"color-base-lightBlue--1000": "hsl(207, 60%, 11%)",
|
|
1285
|
+
"color-base-pink--100": "hsl(345, 40%, 98%)",
|
|
1286
|
+
"color-base-pink--200": "hsl(347, 33%, 95%)",
|
|
1287
|
+
"color-base-pink--300": "hsl(348, 36%, 89%)",
|
|
1288
|
+
"color-base-pink--400": "hsl(349, 34%, 75%)",
|
|
1289
|
+
"color-base-pink--500": "hsl(349, 34%, 64%)",
|
|
1290
|
+
"color-base-pink--600": "hsl(348, 34%, 53%)",
|
|
1291
|
+
"color-base-pink--700": "hsl(348, 40%, 41%)",
|
|
1292
|
+
"color-base-pink--800": "hsl(348, 40%, 27%)",
|
|
1293
|
+
"color-base-pink--900": "hsl(347, 41%, 18%)",
|
|
1294
|
+
"color-base-pink--1000": "hsl(349, 40%, 13%)",
|
|
1295
|
+
"color-base-orange--100": "hsl(36, 71%, 97%)",
|
|
1296
|
+
"color-base-orange--200": "hsl(34, 76%, 92%)",
|
|
1297
|
+
"color-base-orange--300": "hsl(32, 78%, 84%)",
|
|
1298
|
+
"color-base-orange--400": "hsl(33, 77%, 63%)",
|
|
1299
|
+
"color-base-orange--500": "hsl(33, 71%, 48%)",
|
|
1300
|
+
"color-base-orange--600": "hsl(33, 71%, 38%)",
|
|
1301
|
+
"color-base-orange--700": "hsl(33, 71%, 29%)",
|
|
1302
|
+
"color-base-orange--800": "hsl(33, 72%, 20%)",
|
|
1303
|
+
"color-base-orange--900": "hsl(33, 72%, 13%)",
|
|
1304
|
+
"color-base-orange--1000": "hsl(33, 70%, 9%)",
|
|
1305
|
+
"color-indigo": "rgb(85, 106, 203)",
|
|
1306
|
+
"color-indigo--light": "rgb(136, 151, 219)",
|
|
1307
|
+
"color-indigo--lighter": "rgb(187, 195, 234)",
|
|
1308
|
+
"color-indigo--lightest": "rgb(230, 233, 247)",
|
|
1309
|
+
"color-indigo--dark": "rgb(55, 69, 132)",
|
|
1310
|
+
"color-white--rgb": "255, 255, 255",
|
|
1311
|
+
"color-black--rgb": "0, 0, 0",
|
|
1312
|
+
"color-brand--highlight": "hsl(86, 100%, 46%)",
|
|
1313
|
+
"color-greyBlue--rgb": "101, 120, 132",
|
|
1314
|
+
"color-purple--light": "rgb(172, 155, 214)",
|
|
1315
|
+
"color-purple--lighter": "rgb(207, 198, 231)",
|
|
1316
|
+
"color-purple--lightest": "rgb(237, 234, 246)",
|
|
1317
|
+
"color-teal": "rgb(62, 173, 146)",
|
|
1318
|
+
"color-teal--light": "rgb(120, 198, 179)",
|
|
1319
|
+
"color-teal--lighter": "rgb(178, 222, 211)",
|
|
1320
|
+
"color-teal--lightest": "rgb(226, 243, 239)",
|
|
1321
|
+
"color-teal--dark": "rgb(40, 112, 95)",
|
|
1322
|
+
"color-blue": "hsl(197, 90%, 12%)",
|
|
1323
|
+
"color-blue--light": "hsl(198, 25%, 33%)",
|
|
1324
|
+
"color-blue--lighter": "hsl(198, 12%, 57%)",
|
|
1325
|
+
"color-blue--lightest": "hsl(200, 13%, 87%)",
|
|
1326
|
+
"color-blue--dark": "hsl(198, 96%, 9%)",
|
|
1327
|
+
"color-taupe": "hsl(53, 21%, 93%)",
|
|
1328
|
+
"color-taupe--light": "hsl(45, 20%, 97%)",
|
|
1329
|
+
"color-taupe--dark": "hsl(51, 17%, 85%)",
|
|
1330
|
+
"color-green": "hsl(107, 58%, 33%)",
|
|
1331
|
+
"color-green--light": "hsl(107, 30%, 49%)",
|
|
1332
|
+
"color-green--lighter": "hsl(107, 29%, 65%)",
|
|
1333
|
+
"color-green--lightest": "hsl(109, 28%, 92%)",
|
|
1334
|
+
"color-green--dark": "hsl(107, 64%, 16%)",
|
|
1335
|
+
"color-lime": "hsl(79, 85%, 34%)",
|
|
1336
|
+
"color-lime--light": "hsl(79, 51%, 51%)",
|
|
1337
|
+
"color-lime--lighter": "hsl(79, 51%, 78%)",
|
|
1338
|
+
"color-lime--lightest": "hsl(79, 49%, 90%)",
|
|
1339
|
+
"color-lime--dark": "hsl(79, 85%, 21%)",
|
|
1340
|
+
"color-yellowGreen": "hsl(79, 85%, 34%)",
|
|
1341
|
+
"color-yellowGreen--light": "hsl(79, 51%, 51%)",
|
|
1342
|
+
"color-yellowGreen--lighter": "hsl(79, 51%, 78%)",
|
|
1343
|
+
"color-yellowGreen--lightest": "hsl(79, 49%, 90%)",
|
|
1344
|
+
"color-yellowGreen--dark": "hsl(79, 86%, 27%)",
|
|
1345
|
+
"color-yellow": "hsl(51, 64%, 49%)",
|
|
1346
|
+
"color-yellow--light": "hsl(51, 64%, 77%)",
|
|
1347
|
+
"color-yellow--lighter": "hsl(52, 64%, 89%)",
|
|
1348
|
+
"color-yellow--lightest": "hsl(49, 67%, 95%)",
|
|
1349
|
+
"color-yellow--dark": "hsl(51, 64%, 32%)",
|
|
1350
|
+
"color-red": "hsl(6, 64%, 51%)",
|
|
1351
|
+
"color-red--light": "hsl(6, 64%, 76%)",
|
|
1352
|
+
"color-red--lighter": "hsl(5, 65%, 90%)",
|
|
1353
|
+
"color-red--lightest": "hsl(7, 63%, 95%)",
|
|
1354
|
+
"color-red--dark": "hsl(6, 100%, 24%)",
|
|
1355
|
+
"color-grey": "hsl(0, 0%, 72%)",
|
|
1356
|
+
"color-grey--light": "hsl(0, 0%, 87%)",
|
|
1357
|
+
"color-grey--lighter": "hsl(0, 0%, 93%)",
|
|
1358
|
+
"color-grey--lightest": "hsl(0, 0%, 97%)",
|
|
1359
|
+
"color-grey--dark": "hsl(0, 0%, 47%)",
|
|
1360
|
+
"color-overlay": "rgba(0, 0, 0, 0.32)",
|
|
1361
|
+
"color-overlay--dimmed": "rgba(255, 255, 255, 0.6)",
|
|
1362
|
+
"color-white": "rgba(255, 255, 255, 1)",
|
|
1363
|
+
"color-black": "rgba(0, 0, 0, 1)",
|
|
1364
|
+
"color-greyBlue": "hsl(197, 15%, 45%)",
|
|
1365
|
+
"color-greyBlue--light": "hsl(198, 12%, 57%)",
|
|
1366
|
+
"color-greyBlue--lighter": "hsl(196, 12%, 70%)",
|
|
1367
|
+
"color-greyBlue--lightest": "hsl(195, 12%, 94%)",
|
|
1368
|
+
"color-greyBlue--dark": "hsl(198, 35%, 21%)",
|
|
1369
|
+
"color-lightBlue": "hsl(207, 79%, 57%)",
|
|
1370
|
+
"color-lightBlue--light": "hsl(207, 89%, 71%)",
|
|
1371
|
+
"color-lightBlue--lighter": "hsl(206, 91%, 87%)",
|
|
1372
|
+
"color-lightBlue--lightest": "hsl(207, 87%, 94%)",
|
|
1373
|
+
"color-lightBlue--dark": "hsl(207, 61%, 45%)",
|
|
1374
|
+
"color-purple": "hsl(348, 40%, 27%)",
|
|
1375
|
+
"color-purple--dark": "hsl(347, 41%, 18%)",
|
|
1376
|
+
"color-pink": "hsl(348, 34%, 53%)",
|
|
1377
|
+
"color-pink--light": "hsl(349, 34%, 64%)",
|
|
1378
|
+
"color-pink--lighter": "hsl(349, 34%, 75%)",
|
|
1379
|
+
"color-pink--lightest": "hsl(347, 33%, 95%)",
|
|
1380
|
+
"color-pink--dark": "hsl(348, 40%, 27%)",
|
|
1381
|
+
"color-orange": "hsl(33, 71%, 48%)",
|
|
1382
|
+
"color-orange--light": "hsl(33, 77%, 63%)",
|
|
1383
|
+
"color-orange--lighter": "hsl(32, 78%, 84%)",
|
|
1384
|
+
"color-orange--lightest": "hsl(34, 76%, 92%)",
|
|
1385
|
+
"color-orange--dark": "hsl(33, 71%, 38%)",
|
|
1386
|
+
"color-brown": "hsl(33, 71%, 29%)",
|
|
1387
|
+
"color-brown--light": "hsl(33, 71%, 38%)",
|
|
1388
|
+
"color-brown--lighter": "hsl(51, 17%, 85%)",
|
|
1389
|
+
"color-brown--lightest": "hsl(53, 21%, 93%)",
|
|
1390
|
+
"color-brown--dark": "hsl(33, 72%, 20%)",
|
|
1391
|
+
"color-navy": "hsl(207, 61%, 34%)",
|
|
1392
|
+
"color-navy--light": "hsl(207, 61%, 45%)",
|
|
1393
|
+
"color-navy--lighter": "hsl(200, 13%, 87%)",
|
|
1394
|
+
"color-navy--lightest": "hsl(195, 12%, 94%)",
|
|
1395
|
+
"color-navy--dark": "hsl(206, 61%, 23%)",
|
|
1396
|
+
"color-base-white": "rgba(255, 255, 255, 1)",
|
|
1397
|
+
"color-base-black": "rgba(0, 0, 0, 1)",
|
|
1398
|
+
"color-interactive": "hsl(107, 58%, 33%)",
|
|
1399
|
+
"color-interactive--hover": "hsl(107, 65%, 24%)",
|
|
1400
|
+
"color-interactive--subtle": "hsl(198, 35%, 21%)",
|
|
1401
|
+
"color-interactive--subtle--hover": "hsl(197, 90%, 12%)",
|
|
1402
|
+
"color-destructive": "hsl(6, 64%, 51%)",
|
|
1403
|
+
"color-destructive--hover": "hsl(6, 100%, 35%)",
|
|
1404
|
+
"color-disabled": "hsl(0, 0%, 72%)",
|
|
1405
|
+
"color-disabled--secondary": "hsl(0, 0%, 93%)",
|
|
1406
|
+
"color-focus": "hsl(198, 12%, 57%)",
|
|
1407
|
+
"color-critical": "hsl(6, 64%, 51%)",
|
|
1408
|
+
"color-critical--surface": "hsl(7, 63%, 95%)",
|
|
1409
|
+
"color-critical--onSurface": "hsl(6, 100%, 24%)",
|
|
1410
|
+
"color-warning": "hsl(51, 64%, 49%)",
|
|
1411
|
+
"color-warning--surface": "hsl(52, 64%, 89%)",
|
|
1412
|
+
"color-warning--onSurface": "hsl(51, 64%, 24%)",
|
|
1413
|
+
"color-success": "hsl(107, 58%, 33%)",
|
|
1414
|
+
"color-success--surface": "hsl(109, 28%, 92%)",
|
|
1415
|
+
"color-success--onSurface": "hsl(107, 64%, 16%)",
|
|
1416
|
+
"color-informative": "hsl(207, 79%, 57%)",
|
|
1417
|
+
"color-informative--surface": "hsl(207, 87%, 94%)",
|
|
1418
|
+
"color-informative--onSurface": "hsl(207, 61%, 34%)",
|
|
1419
|
+
"color-inactive": "hsl(198, 25%, 33%)",
|
|
1420
|
+
"color-inactive--surface": "hsl(195, 12%, 94%)",
|
|
1421
|
+
"color-inactive--onSurface": "hsl(197, 90%, 12%)",
|
|
1422
|
+
"color-heading": "hsl(197, 90%, 12%)",
|
|
1423
|
+
"color-text": "hsl(198, 35%, 21%)",
|
|
1424
|
+
"color-text--secondary": "hsl(197, 15%, 45%)",
|
|
1425
|
+
"color-text--reverse": "rgba(255, 255, 255, 1)",
|
|
1426
|
+
"color-text--reverse--secondary": "hsl(200, 13%, 87%)",
|
|
1427
|
+
"color-icon": "hsl(198, 35%, 21%)",
|
|
1428
|
+
"color-surface": "rgba(255, 255, 255, 1)",
|
|
1429
|
+
"color-surface--hover": "hsl(53, 21%, 93%)",
|
|
1430
|
+
"color-surface--reverse": "hsl(197, 90%, 12%)",
|
|
1431
|
+
"color-surface--active": "hsl(51, 17%, 85%)",
|
|
1432
|
+
"color-surface--background": "hsl(53, 21%, 93%)",
|
|
1433
|
+
"color-surface--background--hover": "hsl(51, 17%, 85%)",
|
|
1434
|
+
"color-surface--background--subtle": "hsl(45, 20%, 97%)",
|
|
1435
|
+
"color-surface--background--subtle--hover": "hsl(51, 17%, 85%)",
|
|
1436
|
+
"color-border": "hsl(200, 13%, 87%)",
|
|
1437
|
+
"color-border--interactive": "hsl(200, 13%, 87%)",
|
|
1438
|
+
"color-border--section": "hsl(197, 90%, 12%)",
|
|
1439
|
+
"color-brand": "hsl(79, 85%, 34%)",
|
|
1440
|
+
"color-request": "hsl(33, 71%, 38%)",
|
|
1441
|
+
"color-request--surface": "hsl(34, 76%, 92%)",
|
|
1442
|
+
"color-request--onSurface": "hsl(33, 72%, 20%)",
|
|
1443
|
+
"color-quote": "hsl(348, 40%, 41%)",
|
|
1444
|
+
"color-quote--surface": "hsl(347, 33%, 95%)",
|
|
1445
|
+
"color-quote--onSurface": "hsl(348, 40%, 27%)",
|
|
1446
|
+
"color-job": "hsl(107, 58%, 33%)",
|
|
1447
|
+
"color-job--surface": "hsl(109, 28%, 92%)",
|
|
1448
|
+
"color-job--onSurface": "hsl(107, 65%, 24%)",
|
|
1449
|
+
"color-task": "hsl(206, 61%, 23%)",
|
|
1450
|
+
"color-task--surface": "hsl(195, 12%, 94%)",
|
|
1451
|
+
"color-task--onSurface": "hsl(198, 35%, 21%)",
|
|
1452
|
+
"color-invoice": "hsl(207, 61%, 34%)",
|
|
1453
|
+
"color-invoice--surface": "hsl(207, 87%, 94%)",
|
|
1454
|
+
"color-invoice--onSurface": "hsl(206, 61%, 23%)",
|
|
1455
|
+
"color-visit": "hsl(107, 58%, 33%)",
|
|
1456
|
+
"color-visit--surface": "hsl(109, 28%, 92%)",
|
|
1457
|
+
"color-visit--onSurface": "hsl(107, 65%, 24%)",
|
|
1458
|
+
"color-event": "hsl(51, 64%, 49%)",
|
|
1459
|
+
"color-event--surface": "hsl(52, 64%, 89%)",
|
|
1460
|
+
"color-event--onSurface": "hsl(51, 64%, 24%)",
|
|
1461
|
+
"color-payments": "hsl(207, 61%, 34%)",
|
|
1462
|
+
"color-payments--surface": "hsl(207, 87%, 94%)",
|
|
1463
|
+
"color-payments--onSurface": "hsl(207, 87%, 94%)",
|
|
1464
|
+
"color-client": "hsl(48, 3%, 34%)",
|
|
1465
|
+
"radius-base": 8,
|
|
1466
|
+
"radius-small": 4,
|
|
1467
|
+
"radius-large": 16,
|
|
1468
|
+
"radius-larger": 24,
|
|
1469
|
+
"radius-circle": 100,
|
|
1470
|
+
"space-minuscule": 1,
|
|
1471
|
+
"space-smallest": 2,
|
|
1472
|
+
"space-smaller": 4,
|
|
1473
|
+
"space-small": 8,
|
|
1474
|
+
"space-base": 16,
|
|
1475
|
+
"space-large": 24,
|
|
1476
|
+
"space-larger": 32,
|
|
1477
|
+
"space-largest": 48,
|
|
1478
|
+
"space-extravagant": 64,
|
|
1479
|
+
"shadow-low": {
|
|
1480
|
+
"shadowColor": "rgba(0, 0, 0, 1)",
|
|
1481
|
+
"shadowOffset": {
|
|
1482
|
+
"width": 0,
|
|
1483
|
+
"height": 1,
|
|
1484
|
+
},
|
|
1485
|
+
"shadowOpacity": 0.2,
|
|
1486
|
+
"shadowRadius": 1,
|
|
1487
|
+
"elevation": 2,
|
|
1488
|
+
},
|
|
1489
|
+
"shadow-base": {
|
|
1490
|
+
"shadowColor": "rgba(0,0,0,0.9)",
|
|
1491
|
+
"shadowOffset": {
|
|
1492
|
+
"width": 0,
|
|
1493
|
+
"height": 1,
|
|
1494
|
+
},
|
|
1495
|
+
"shadowOpacity": 0.16,
|
|
1496
|
+
"shadowRadius": 4,
|
|
1497
|
+
"elevation": 6,
|
|
1498
|
+
},
|
|
1499
|
+
"shadow-high": {
|
|
1500
|
+
"shadowColor": "rgba(0,0,0,0.5)",
|
|
1501
|
+
"shadowOffset": {
|
|
1502
|
+
"width": 0,
|
|
1503
|
+
"height": 8,
|
|
1504
|
+
},
|
|
1505
|
+
"shadowOpacity": 0.125,
|
|
1506
|
+
"shadowRadius": 16,
|
|
1507
|
+
"elevation": 12,
|
|
1508
|
+
},
|
|
1509
|
+
"shadow-focus": "0px 0px 0px 2 rgba(255, 255, 255, 1), 0px 0px 0px 4 hsl(198, 12%, 57%)",
|
|
1510
|
+
"timing-quick": 100,
|
|
1511
|
+
"timing-base": 200,
|
|
1512
|
+
"timing-slow": 300,
|
|
1513
|
+
"timing-slower": 400,
|
|
1514
|
+
"timing-slowest": 500,
|
|
1515
|
+
"timing-loading": 1000,
|
|
1516
|
+
"timing-loading--extended": 2000,
|
|
1517
|
+
"opacity-overlay": 0.8,
|
|
1518
|
+
"opacity-pressed": 0.6,
|
|
1519
|
+
"elevation-default": 0,
|
|
1520
|
+
"elevation-base": 1,
|
|
1521
|
+
"elevation-menu": 6,
|
|
1522
|
+
"elevation-datepicker": 6,
|
|
1523
|
+
"elevation-modal": 1001,
|
|
1524
|
+
"elevation-tooltip": 1002,
|
|
1525
|
+
"elevation-toast": 1003,
|
|
1526
|
+
"typography--letterSpacing-base": 0,
|
|
1527
|
+
"typography--letterSpacing-loose": 0.4,
|
|
1528
|
+
"typography--fontFamily-normal": "Inter, Helvetica, Arial, sans-serif",
|
|
1529
|
+
"typography--fontFamily-display": "Jobber Pro, Poppins, Helvetica, Arial, sans-serif",
|
|
1530
|
+
"typography--lineHeight-large": 22,
|
|
1531
|
+
"typography--lineHeight-larger": 24,
|
|
1532
|
+
"typography--lineHeight-largest": 28,
|
|
1533
|
+
"typography--lineHeight-jumbo": 36,
|
|
1534
|
+
"typography--lineHeight-extravagant": 42,
|
|
1535
|
+
"typography--lineHeight-base": 20,
|
|
1536
|
+
"typography--lineHeight-tight": 18,
|
|
1537
|
+
"typography--lineHeight-tighter": 16,
|
|
1538
|
+
"typography--lineHeight-tightest": 14,
|
|
1539
|
+
"typography--lineHeight-minuscule": 10,
|
|
1540
|
+
"typography--fontSize-extravagant": 42,
|
|
1541
|
+
"typography--fontSize-jumbo": 32,
|
|
1542
|
+
"typography--fontSize-largest": 24,
|
|
1543
|
+
"typography--fontSize-larger": 20,
|
|
1544
|
+
"typography--fontSize-large": 18,
|
|
1545
|
+
"typography--fontSize-base": 16,
|
|
1546
|
+
"typography--fontSize-small": 14,
|
|
1547
|
+
"typography--fontSize-smaller": 12,
|
|
1548
|
+
"typography--fontSize-smallest": 10,
|
|
1549
|
+
};
|
|
1550
|
+
|
|
1551
|
+
var tokens_ios = {
|
|
1552
|
+
"base-unit": 16,
|
|
1553
|
+
"border-base": 1,
|
|
1554
|
+
"border-thick": 2,
|
|
1555
|
+
"border-thicker": 4,
|
|
1556
|
+
"border-thickest": 8,
|
|
1557
|
+
"color-base-grey--100": "hsl(0, 0%, 97%)",
|
|
1558
|
+
"color-base-grey--200": "hsl(0, 0%, 93%)",
|
|
1559
|
+
"color-base-grey--300": "hsl(0, 0%, 87%)",
|
|
1560
|
+
"color-base-grey--400": "hsl(0, 0%, 72%)",
|
|
1561
|
+
"color-base-grey--500": "hsl(0, 0%, 58%)",
|
|
1562
|
+
"color-base-grey--600": "hsl(0, 0%, 47%)",
|
|
1563
|
+
"color-base-grey--700": "hsl(0, 0%, 35%)",
|
|
1564
|
+
"color-base-grey--800": "hsl(0, 0%, 24%)",
|
|
1565
|
+
"color-base-grey--900": "hsl(0, 0%, 15%)",
|
|
1566
|
+
"color-base-grey--1000": "hsl(0, 0%, 11%)",
|
|
1567
|
+
"color-base-taupe--100": "hsl(45, 20%, 97%)",
|
|
1568
|
+
"color-base-taupe--200": "hsl(53, 21%, 93%)",
|
|
1569
|
+
"color-base-taupe--300": "hsl(51, 17%, 85%)",
|
|
1570
|
+
"color-base-taupe--400": "hsl(49, 7%, 70%)",
|
|
1571
|
+
"color-base-taupe--500": "hsl(47, 4%, 57%)",
|
|
1572
|
+
"color-base-taupe--600": "hsl(43, 3%, 46%)",
|
|
1573
|
+
"color-base-taupe--700": "hsl(48, 3%, 34%)",
|
|
1574
|
+
"color-base-taupe--800": "hsl(40, 3%, 23%)",
|
|
1575
|
+
"color-base-taupe--900": "hsl(30, 3%, 15%)",
|
|
1576
|
+
"color-base-taupe--1000": "hsl(30, 4%, 11%)",
|
|
1577
|
+
"color-base-red--100": "hsl(10, 60%, 98%)",
|
|
1578
|
+
"color-base-red--200": "hsl(7, 63%, 95%)",
|
|
1579
|
+
"color-base-red--300": "hsl(5, 65%, 90%)",
|
|
1580
|
+
"color-base-red--400": "hsl(6, 64%, 76%)",
|
|
1581
|
+
"color-base-red--500": "hsl(6, 64%, 65%)",
|
|
1582
|
+
"color-base-red--600": "hsl(6, 64%, 51%)",
|
|
1583
|
+
"color-base-red--700": "hsl(6, 100%, 35%)",
|
|
1584
|
+
"color-base-red--800": "hsl(6, 100%, 24%)",
|
|
1585
|
+
"color-base-red--900": "hsl(6, 100%, 16%)",
|
|
1586
|
+
"color-base-red--1000": "hsl(6, 100%, 12%)",
|
|
1587
|
+
"color-base-green--100": "hsl(108, 29%, 97%)",
|
|
1588
|
+
"color-base-green--200": "hsl(109, 28%, 92%)",
|
|
1589
|
+
"color-base-green--300": "hsl(106, 28%, 85%)",
|
|
1590
|
+
"color-base-green--400": "hsl(107, 29%, 65%)",
|
|
1591
|
+
"color-base-green--500": "hsl(107, 30%, 49%)",
|
|
1592
|
+
"color-base-green--600": "hsl(107, 58%, 33%)",
|
|
1593
|
+
"color-base-green--700": "hsl(107, 65%, 24%)",
|
|
1594
|
+
"color-base-green--800": "hsl(107, 64%, 16%)",
|
|
1595
|
+
"color-base-green--900": "hsl(108, 63%, 11%)",
|
|
1596
|
+
"color-base-green--1000": "hsl(108, 64%, 8%)",
|
|
1597
|
+
"color-base-blue--100": "hsl(210, 17%, 98%)",
|
|
1598
|
+
"color-base-blue--200": "hsl(195, 12%, 94%)",
|
|
1599
|
+
"color-base-blue--300": "hsl(200, 13%, 87%)",
|
|
1600
|
+
"color-base-blue--400": "hsl(196, 12%, 70%)",
|
|
1601
|
+
"color-base-blue--500": "hsl(198, 12%, 57%)",
|
|
1602
|
+
"color-base-blue--600": "hsl(197, 15%, 45%)",
|
|
1603
|
+
"color-base-blue--700": "hsl(198, 25%, 33%)",
|
|
1604
|
+
"color-base-blue--800": "hsl(198, 35%, 21%)",
|
|
1605
|
+
"color-base-blue--900": "hsl(197, 90%, 12%)",
|
|
1606
|
+
"color-base-blue--1000": "hsl(198, 96%, 9%)",
|
|
1607
|
+
"color-base-yellow--100": "hsl(49, 67%, 95%)",
|
|
1608
|
+
"color-base-yellow--200": "hsl(52, 64%, 89%)",
|
|
1609
|
+
"color-base-yellow--300": "hsl(51, 64%, 77%)",
|
|
1610
|
+
"color-base-yellow--400": "hsl(51, 64%, 49%)",
|
|
1611
|
+
"color-base-yellow--500": "hsl(51, 64%, 40%)",
|
|
1612
|
+
"color-base-yellow--600": "hsl(51, 64%, 32%)",
|
|
1613
|
+
"color-base-yellow--700": "hsl(51, 64%, 24%)",
|
|
1614
|
+
"color-base-yellow--800": "hsl(51, 64%, 16%)",
|
|
1615
|
+
"color-base-yellow--900": "hsl(51, 63%, 11%)",
|
|
1616
|
+
"color-base-yellow--1000": "hsl(50, 64%, 8%)",
|
|
1617
|
+
"color-base-lime--100": "hsl(80, 53%, 97%)",
|
|
1618
|
+
"color-base-lime--200": "hsl(79, 49%, 90%)",
|
|
1619
|
+
"color-base-lime--300": "hsl(79, 51%, 78%)",
|
|
1620
|
+
"color-base-lime--400": "hsl(79, 51%, 51%)",
|
|
1621
|
+
"color-base-lime--500": "hsl(79, 85%, 34%)",
|
|
1622
|
+
"color-base-lime--600": "hsl(79, 86%, 27%)",
|
|
1623
|
+
"color-base-lime--700": "hsl(79, 85%, 21%)",
|
|
1624
|
+
"color-base-lime--800": "hsl(79, 86%, 14%)",
|
|
1625
|
+
"color-base-lime--900": "hsl(78, 87%, 9%)",
|
|
1626
|
+
"color-base-lime--1000": "hsl(79, 82%, 7%)",
|
|
1627
|
+
"color-base-lightBlue--100": "hsl(205, 86%, 97%)",
|
|
1628
|
+
"color-base-lightBlue--200": "hsl(207, 87%, 94%)",
|
|
1629
|
+
"color-base-lightBlue--300": "hsl(206, 91%, 87%)",
|
|
1630
|
+
"color-base-lightBlue--400": "hsl(207, 89%, 71%)",
|
|
1631
|
+
"color-base-lightBlue--500": "hsl(207, 79%, 57%)",
|
|
1632
|
+
"color-base-lightBlue--600": "hsl(207, 61%, 45%)",
|
|
1633
|
+
"color-base-lightBlue--700": "hsl(207, 61%, 34%)",
|
|
1634
|
+
"color-base-lightBlue--800": "hsl(206, 61%, 23%)",
|
|
1635
|
+
"color-base-lightBlue--900": "hsl(207, 61%, 15%)",
|
|
1636
|
+
"color-base-lightBlue--1000": "hsl(207, 60%, 11%)",
|
|
1637
|
+
"color-base-pink--100": "hsl(345, 40%, 98%)",
|
|
1638
|
+
"color-base-pink--200": "hsl(347, 33%, 95%)",
|
|
1639
|
+
"color-base-pink--300": "hsl(348, 36%, 89%)",
|
|
1640
|
+
"color-base-pink--400": "hsl(349, 34%, 75%)",
|
|
1641
|
+
"color-base-pink--500": "hsl(349, 34%, 64%)",
|
|
1642
|
+
"color-base-pink--600": "hsl(348, 34%, 53%)",
|
|
1643
|
+
"color-base-pink--700": "hsl(348, 40%, 41%)",
|
|
1644
|
+
"color-base-pink--800": "hsl(348, 40%, 27%)",
|
|
1645
|
+
"color-base-pink--900": "hsl(347, 41%, 18%)",
|
|
1646
|
+
"color-base-pink--1000": "hsl(349, 40%, 13%)",
|
|
1647
|
+
"color-base-orange--100": "hsl(36, 71%, 97%)",
|
|
1648
|
+
"color-base-orange--200": "hsl(34, 76%, 92%)",
|
|
1649
|
+
"color-base-orange--300": "hsl(32, 78%, 84%)",
|
|
1650
|
+
"color-base-orange--400": "hsl(33, 77%, 63%)",
|
|
1651
|
+
"color-base-orange--500": "hsl(33, 71%, 48%)",
|
|
1652
|
+
"color-base-orange--600": "hsl(33, 71%, 38%)",
|
|
1653
|
+
"color-base-orange--700": "hsl(33, 71%, 29%)",
|
|
1654
|
+
"color-base-orange--800": "hsl(33, 72%, 20%)",
|
|
1655
|
+
"color-base-orange--900": "hsl(33, 72%, 13%)",
|
|
1656
|
+
"color-base-orange--1000": "hsl(33, 70%, 9%)",
|
|
1657
|
+
"color-indigo": "rgb(85, 106, 203)",
|
|
1658
|
+
"color-indigo--light": "rgb(136, 151, 219)",
|
|
1659
|
+
"color-indigo--lighter": "rgb(187, 195, 234)",
|
|
1660
|
+
"color-indigo--lightest": "rgb(230, 233, 247)",
|
|
1661
|
+
"color-indigo--dark": "rgb(55, 69, 132)",
|
|
1662
|
+
"color-white--rgb": "255, 255, 255",
|
|
1663
|
+
"color-black--rgb": "0, 0, 0",
|
|
1664
|
+
"color-brand--highlight": "hsl(86, 100%, 46%)",
|
|
1665
|
+
"color-greyBlue--rgb": "101, 120, 132",
|
|
1666
|
+
"color-purple--light": "rgb(172, 155, 214)",
|
|
1667
|
+
"color-purple--lighter": "rgb(207, 198, 231)",
|
|
1668
|
+
"color-purple--lightest": "rgb(237, 234, 246)",
|
|
1669
|
+
"color-teal": "rgb(62, 173, 146)",
|
|
1670
|
+
"color-teal--light": "rgb(120, 198, 179)",
|
|
1671
|
+
"color-teal--lighter": "rgb(178, 222, 211)",
|
|
1672
|
+
"color-teal--lightest": "rgb(226, 243, 239)",
|
|
1673
|
+
"color-teal--dark": "rgb(40, 112, 95)",
|
|
1674
|
+
"color-blue": "hsl(197, 90%, 12%)",
|
|
1675
|
+
"color-blue--light": "hsl(198, 25%, 33%)",
|
|
1676
|
+
"color-blue--lighter": "hsl(198, 12%, 57%)",
|
|
1677
|
+
"color-blue--lightest": "hsl(200, 13%, 87%)",
|
|
1678
|
+
"color-blue--dark": "hsl(198, 96%, 9%)",
|
|
1679
|
+
"color-taupe": "hsl(53, 21%, 93%)",
|
|
1680
|
+
"color-taupe--light": "hsl(45, 20%, 97%)",
|
|
1681
|
+
"color-taupe--dark": "hsl(51, 17%, 85%)",
|
|
1682
|
+
"color-green": "hsl(107, 58%, 33%)",
|
|
1683
|
+
"color-green--light": "hsl(107, 30%, 49%)",
|
|
1684
|
+
"color-green--lighter": "hsl(107, 29%, 65%)",
|
|
1685
|
+
"color-green--lightest": "hsl(109, 28%, 92%)",
|
|
1686
|
+
"color-green--dark": "hsl(107, 64%, 16%)",
|
|
1687
|
+
"color-lime": "hsl(79, 85%, 34%)",
|
|
1688
|
+
"color-lime--light": "hsl(79, 51%, 51%)",
|
|
1689
|
+
"color-lime--lighter": "hsl(79, 51%, 78%)",
|
|
1690
|
+
"color-lime--lightest": "hsl(79, 49%, 90%)",
|
|
1691
|
+
"color-lime--dark": "hsl(79, 85%, 21%)",
|
|
1692
|
+
"color-yellowGreen": "hsl(79, 85%, 34%)",
|
|
1693
|
+
"color-yellowGreen--light": "hsl(79, 51%, 51%)",
|
|
1694
|
+
"color-yellowGreen--lighter": "hsl(79, 51%, 78%)",
|
|
1695
|
+
"color-yellowGreen--lightest": "hsl(79, 49%, 90%)",
|
|
1696
|
+
"color-yellowGreen--dark": "hsl(79, 86%, 27%)",
|
|
1697
|
+
"color-yellow": "hsl(51, 64%, 49%)",
|
|
1698
|
+
"color-yellow--light": "hsl(51, 64%, 77%)",
|
|
1699
|
+
"color-yellow--lighter": "hsl(52, 64%, 89%)",
|
|
1700
|
+
"color-yellow--lightest": "hsl(49, 67%, 95%)",
|
|
1701
|
+
"color-yellow--dark": "hsl(51, 64%, 32%)",
|
|
1702
|
+
"color-red": "hsl(6, 64%, 51%)",
|
|
1703
|
+
"color-red--light": "hsl(6, 64%, 76%)",
|
|
1704
|
+
"color-red--lighter": "hsl(5, 65%, 90%)",
|
|
1705
|
+
"color-red--lightest": "hsl(7, 63%, 95%)",
|
|
1706
|
+
"color-red--dark": "hsl(6, 100%, 24%)",
|
|
1707
|
+
"color-grey": "hsl(0, 0%, 72%)",
|
|
1708
|
+
"color-grey--light": "hsl(0, 0%, 87%)",
|
|
1709
|
+
"color-grey--lighter": "hsl(0, 0%, 93%)",
|
|
1710
|
+
"color-grey--lightest": "hsl(0, 0%, 97%)",
|
|
1711
|
+
"color-grey--dark": "hsl(0, 0%, 47%)",
|
|
1712
|
+
"color-overlay": "rgba(0, 0, 0, 0.32)",
|
|
1713
|
+
"color-overlay--dimmed": "rgba(255, 255, 255, 0.6)",
|
|
1714
|
+
"color-white": "rgba(255, 255, 255, 1)",
|
|
1715
|
+
"color-black": "rgba(0, 0, 0, 1)",
|
|
1716
|
+
"color-greyBlue": "hsl(197, 15%, 45%)",
|
|
1717
|
+
"color-greyBlue--light": "hsl(198, 12%, 57%)",
|
|
1718
|
+
"color-greyBlue--lighter": "hsl(196, 12%, 70%)",
|
|
1719
|
+
"color-greyBlue--lightest": "hsl(195, 12%, 94%)",
|
|
1720
|
+
"color-greyBlue--dark": "hsl(198, 35%, 21%)",
|
|
1721
|
+
"color-lightBlue": "hsl(207, 79%, 57%)",
|
|
1722
|
+
"color-lightBlue--light": "hsl(207, 89%, 71%)",
|
|
1723
|
+
"color-lightBlue--lighter": "hsl(206, 91%, 87%)",
|
|
1724
|
+
"color-lightBlue--lightest": "hsl(207, 87%, 94%)",
|
|
1725
|
+
"color-lightBlue--dark": "hsl(207, 61%, 45%)",
|
|
1726
|
+
"color-purple": "hsl(348, 40%, 27%)",
|
|
1727
|
+
"color-purple--dark": "hsl(347, 41%, 18%)",
|
|
1728
|
+
"color-pink": "hsl(348, 34%, 53%)",
|
|
1729
|
+
"color-pink--light": "hsl(349, 34%, 64%)",
|
|
1730
|
+
"color-pink--lighter": "hsl(349, 34%, 75%)",
|
|
1731
|
+
"color-pink--lightest": "hsl(347, 33%, 95%)",
|
|
1732
|
+
"color-pink--dark": "hsl(348, 40%, 27%)",
|
|
1733
|
+
"color-orange": "hsl(33, 71%, 48%)",
|
|
1734
|
+
"color-orange--light": "hsl(33, 77%, 63%)",
|
|
1735
|
+
"color-orange--lighter": "hsl(32, 78%, 84%)",
|
|
1736
|
+
"color-orange--lightest": "hsl(34, 76%, 92%)",
|
|
1737
|
+
"color-orange--dark": "hsl(33, 71%, 38%)",
|
|
1738
|
+
"color-brown": "hsl(33, 71%, 29%)",
|
|
1739
|
+
"color-brown--light": "hsl(33, 71%, 38%)",
|
|
1740
|
+
"color-brown--lighter": "hsl(51, 17%, 85%)",
|
|
1741
|
+
"color-brown--lightest": "hsl(53, 21%, 93%)",
|
|
1742
|
+
"color-brown--dark": "hsl(33, 72%, 20%)",
|
|
1743
|
+
"color-navy": "hsl(207, 61%, 34%)",
|
|
1744
|
+
"color-navy--light": "hsl(207, 61%, 45%)",
|
|
1745
|
+
"color-navy--lighter": "hsl(200, 13%, 87%)",
|
|
1746
|
+
"color-navy--lightest": "hsl(195, 12%, 94%)",
|
|
1747
|
+
"color-navy--dark": "hsl(206, 61%, 23%)",
|
|
1748
|
+
"color-base-white": "rgba(255, 255, 255, 1)",
|
|
1749
|
+
"color-base-black": "rgba(0, 0, 0, 1)",
|
|
1750
|
+
"color-interactive": "hsl(107, 58%, 33%)",
|
|
1751
|
+
"color-interactive--hover": "hsl(107, 65%, 24%)",
|
|
1752
|
+
"color-interactive--subtle": "hsl(198, 35%, 21%)",
|
|
1753
|
+
"color-interactive--subtle--hover": "hsl(197, 90%, 12%)",
|
|
1754
|
+
"color-destructive": "hsl(6, 64%, 51%)",
|
|
1755
|
+
"color-destructive--hover": "hsl(6, 100%, 35%)",
|
|
1756
|
+
"color-disabled": "hsl(0, 0%, 72%)",
|
|
1757
|
+
"color-disabled--secondary": "hsl(0, 0%, 93%)",
|
|
1758
|
+
"color-focus": "hsl(198, 12%, 57%)",
|
|
1759
|
+
"color-critical": "hsl(6, 64%, 51%)",
|
|
1760
|
+
"color-critical--surface": "hsl(7, 63%, 95%)",
|
|
1761
|
+
"color-critical--onSurface": "hsl(6, 100%, 24%)",
|
|
1762
|
+
"color-warning": "hsl(51, 64%, 49%)",
|
|
1763
|
+
"color-warning--surface": "hsl(52, 64%, 89%)",
|
|
1764
|
+
"color-warning--onSurface": "hsl(51, 64%, 24%)",
|
|
1765
|
+
"color-success": "hsl(107, 58%, 33%)",
|
|
1766
|
+
"color-success--surface": "hsl(109, 28%, 92%)",
|
|
1767
|
+
"color-success--onSurface": "hsl(107, 64%, 16%)",
|
|
1768
|
+
"color-informative": "hsl(207, 79%, 57%)",
|
|
1769
|
+
"color-informative--surface": "hsl(207, 87%, 94%)",
|
|
1770
|
+
"color-informative--onSurface": "hsl(207, 61%, 34%)",
|
|
1771
|
+
"color-inactive": "hsl(198, 25%, 33%)",
|
|
1772
|
+
"color-inactive--surface": "hsl(195, 12%, 94%)",
|
|
1773
|
+
"color-inactive--onSurface": "hsl(197, 90%, 12%)",
|
|
1774
|
+
"color-heading": "hsl(197, 90%, 12%)",
|
|
1775
|
+
"color-text": "hsl(198, 35%, 21%)",
|
|
1776
|
+
"color-text--secondary": "hsl(197, 15%, 45%)",
|
|
1777
|
+
"color-text--reverse": "rgba(255, 255, 255, 1)",
|
|
1778
|
+
"color-text--reverse--secondary": "hsl(200, 13%, 87%)",
|
|
1779
|
+
"color-icon": "hsl(198, 35%, 21%)",
|
|
1780
|
+
"color-surface": "rgba(255, 255, 255, 1)",
|
|
1781
|
+
"color-surface--hover": "hsl(53, 21%, 93%)",
|
|
1782
|
+
"color-surface--reverse": "hsl(197, 90%, 12%)",
|
|
1783
|
+
"color-surface--active": "hsl(51, 17%, 85%)",
|
|
1784
|
+
"color-surface--background": "hsl(53, 21%, 93%)",
|
|
1785
|
+
"color-surface--background--hover": "hsl(51, 17%, 85%)",
|
|
1786
|
+
"color-surface--background--subtle": "hsl(45, 20%, 97%)",
|
|
1787
|
+
"color-surface--background--subtle--hover": "hsl(51, 17%, 85%)",
|
|
1788
|
+
"color-border": "hsl(200, 13%, 87%)",
|
|
1789
|
+
"color-border--interactive": "hsl(200, 13%, 87%)",
|
|
1790
|
+
"color-border--section": "hsl(197, 90%, 12%)",
|
|
1791
|
+
"color-brand": "hsl(79, 85%, 34%)",
|
|
1792
|
+
"color-request": "hsl(33, 71%, 38%)",
|
|
1793
|
+
"color-request--surface": "hsl(34, 76%, 92%)",
|
|
1794
|
+
"color-request--onSurface": "hsl(33, 72%, 20%)",
|
|
1795
|
+
"color-quote": "hsl(348, 40%, 41%)",
|
|
1796
|
+
"color-quote--surface": "hsl(347, 33%, 95%)",
|
|
1797
|
+
"color-quote--onSurface": "hsl(348, 40%, 27%)",
|
|
1798
|
+
"color-job": "hsl(107, 58%, 33%)",
|
|
1799
|
+
"color-job--surface": "hsl(109, 28%, 92%)",
|
|
1800
|
+
"color-job--onSurface": "hsl(107, 65%, 24%)",
|
|
1801
|
+
"color-task": "hsl(206, 61%, 23%)",
|
|
1802
|
+
"color-task--surface": "hsl(195, 12%, 94%)",
|
|
1803
|
+
"color-task--onSurface": "hsl(198, 35%, 21%)",
|
|
1804
|
+
"color-invoice": "hsl(207, 61%, 34%)",
|
|
1805
|
+
"color-invoice--surface": "hsl(207, 87%, 94%)",
|
|
1806
|
+
"color-invoice--onSurface": "hsl(206, 61%, 23%)",
|
|
1807
|
+
"color-visit": "hsl(107, 58%, 33%)",
|
|
1808
|
+
"color-visit--surface": "hsl(109, 28%, 92%)",
|
|
1809
|
+
"color-visit--onSurface": "hsl(107, 65%, 24%)",
|
|
1810
|
+
"color-event": "hsl(51, 64%, 49%)",
|
|
1811
|
+
"color-event--surface": "hsl(52, 64%, 89%)",
|
|
1812
|
+
"color-event--onSurface": "hsl(51, 64%, 24%)",
|
|
1813
|
+
"color-payments": "hsl(207, 61%, 34%)",
|
|
1814
|
+
"color-payments--surface": "hsl(207, 87%, 94%)",
|
|
1815
|
+
"color-payments--onSurface": "hsl(207, 87%, 94%)",
|
|
1816
|
+
"color-client": "hsl(48, 3%, 34%)",
|
|
1817
|
+
"radius-base": 8,
|
|
1818
|
+
"radius-small": 4,
|
|
1819
|
+
"radius-large": 16,
|
|
1820
|
+
"radius-larger": 24,
|
|
1821
|
+
"radius-circle": 100,
|
|
1822
|
+
"space-minuscule": 1,
|
|
1823
|
+
"space-smallest": 2,
|
|
1824
|
+
"space-smaller": 4,
|
|
1825
|
+
"space-small": 8,
|
|
1826
|
+
"space-base": 16,
|
|
1827
|
+
"space-large": 24,
|
|
1828
|
+
"space-larger": 32,
|
|
1829
|
+
"space-largest": 48,
|
|
1830
|
+
"space-extravagant": 64,
|
|
1831
|
+
"shadow-low": {
|
|
1832
|
+
"shadowColor": "rgba(0, 0, 0, 1)",
|
|
1833
|
+
"shadowOffset": {
|
|
1834
|
+
"width": 0,
|
|
1835
|
+
"height": 1,
|
|
1836
|
+
},
|
|
1837
|
+
"shadowOpacity": 0.2,
|
|
1838
|
+
"shadowRadius": 1,
|
|
1839
|
+
"elevation": 2,
|
|
1840
|
+
},
|
|
1841
|
+
"shadow-base": {
|
|
1842
|
+
"shadowColor": "rgba(0, 0, 0, 1)",
|
|
1843
|
+
"shadowOffset": {
|
|
1844
|
+
"width": 0,
|
|
1845
|
+
"height": 1,
|
|
1846
|
+
},
|
|
1847
|
+
"shadowOpacity": 0.16,
|
|
1848
|
+
"shadowRadius": 4,
|
|
1849
|
+
"elevation": 6,
|
|
1850
|
+
},
|
|
1851
|
+
"shadow-high": {
|
|
1852
|
+
"shadowColor": "rgba(0, 0, 0, 1)",
|
|
1853
|
+
"shadowOffset": {
|
|
1854
|
+
"width": 0,
|
|
1855
|
+
"height": 8,
|
|
1856
|
+
},
|
|
1857
|
+
"shadowOpacity": 0.125,
|
|
1858
|
+
"shadowRadius": 16,
|
|
1859
|
+
"elevation": 12,
|
|
1860
|
+
},
|
|
1861
|
+
"shadow-focus": "0px 0px 0px 2 rgba(255, 255, 255, 1), 0px 0px 0px 4 hsl(198, 12%, 57%)",
|
|
1862
|
+
"timing-quick": 100,
|
|
1863
|
+
"timing-base": 200,
|
|
1864
|
+
"timing-slow": 300,
|
|
1865
|
+
"timing-slower": 400,
|
|
1866
|
+
"timing-slowest": 500,
|
|
1867
|
+
"timing-loading": 1000,
|
|
1868
|
+
"timing-loading--extended": 2000,
|
|
1869
|
+
"opacity-overlay": 0.8,
|
|
1870
|
+
"opacity-pressed": 0.6,
|
|
1871
|
+
"elevation-default": 0,
|
|
1872
|
+
"elevation-base": 1,
|
|
1873
|
+
"elevation-menu": 6,
|
|
1874
|
+
"elevation-datepicker": 6,
|
|
1875
|
+
"elevation-modal": 1001,
|
|
1876
|
+
"elevation-tooltip": 1002,
|
|
1877
|
+
"elevation-toast": 1003,
|
|
1878
|
+
"typography--letterSpacing-base": 0,
|
|
1879
|
+
"typography--letterSpacing-loose": 0.4,
|
|
1880
|
+
"typography--fontFamily-normal": "Inter, Helvetica, Arial, sans-serif",
|
|
1881
|
+
"typography--fontFamily-display": "Jobber Pro, Poppins, Helvetica, Arial, sans-serif",
|
|
1882
|
+
"typography--lineHeight-large": 22,
|
|
1883
|
+
"typography--lineHeight-larger": 24,
|
|
1884
|
+
"typography--lineHeight-largest": 28,
|
|
1885
|
+
"typography--lineHeight-jumbo": 36,
|
|
1886
|
+
"typography--lineHeight-extravagant": 42,
|
|
1887
|
+
"typography--lineHeight-base": 20,
|
|
1888
|
+
"typography--lineHeight-tight": 18,
|
|
1889
|
+
"typography--lineHeight-tighter": 16,
|
|
1890
|
+
"typography--lineHeight-tightest": 14,
|
|
1891
|
+
"typography--lineHeight-minuscule": 10,
|
|
1892
|
+
"typography--fontSize-extravagant": 42,
|
|
1893
|
+
"typography--fontSize-jumbo": 32,
|
|
1894
|
+
"typography--fontSize-largest": 24,
|
|
1895
|
+
"typography--fontSize-larger": 20,
|
|
1896
|
+
"typography--fontSize-large": 18,
|
|
1897
|
+
"typography--fontSize-base": 16,
|
|
1898
|
+
"typography--fontSize-small": 14,
|
|
1899
|
+
"typography--fontSize-smaller": 12,
|
|
1900
|
+
"typography--fontSize-smallest": 10,
|
|
1901
|
+
};
|
|
1902
|
+
|
|
1903
|
+
var tokens_color = {
|
|
1904
|
+
"base-unit": "16px",
|
|
1905
|
+
"color-blue": "hsl(197, 90%, 12%)",
|
|
1906
|
+
"color-blue--light": "hsl(198, 25%, 33%)",
|
|
1907
|
+
"color-blue--lighter": "hsl(198, 12%, 57%)",
|
|
1908
|
+
"color-blue--lightest": "hsl(200, 13%, 87%)",
|
|
1909
|
+
"color-blue--dark": "hsl(198, 96%, 9%)",
|
|
1910
|
+
"color-taupe": "hsl(53, 21%, 93%)",
|
|
1911
|
+
"color-taupe--light": "hsl(45, 20%, 97%)",
|
|
1912
|
+
"color-taupe--dark": "hsl(51, 17%, 85%)",
|
|
1913
|
+
"color-green": "hsl(107, 58%, 33%)",
|
|
1914
|
+
"color-green--light": "hsl(107, 30%, 49%)",
|
|
1915
|
+
"color-green--lighter": "hsl(107, 29%, 65%)",
|
|
1916
|
+
"color-green--lightest": "hsl(109, 28%, 92%)",
|
|
1917
|
+
"color-green--dark": "hsl(107, 64%, 16%)",
|
|
1918
|
+
"color-lime": "hsl(79, 85%, 34%)",
|
|
1919
|
+
"color-lime--light": "hsl(79, 51%, 51%)",
|
|
1920
|
+
"color-lime--lighter": "hsl(79, 51%, 78%)",
|
|
1921
|
+
"color-lime--lightest": "hsl(79, 49%, 90%)",
|
|
1922
|
+
"color-lime--dark": "hsl(79, 85%, 21%)",
|
|
1923
|
+
"color-yellowGreen": "hsl(79, 85%, 34%)",
|
|
1924
|
+
"color-yellowGreen--light": "hsl(79, 51%, 51%)",
|
|
1925
|
+
"color-yellowGreen--lighter": "hsl(79, 51%, 78%)",
|
|
1926
|
+
"color-yellowGreen--lightest": "hsl(79, 49%, 90%)",
|
|
1927
|
+
"color-yellowGreen--dark": "hsl(79, 86%, 27%)",
|
|
1928
|
+
"color-yellow": "hsl(51, 64%, 49%)",
|
|
1929
|
+
"color-yellow--light": "hsl(51, 64%, 77%)",
|
|
1930
|
+
"color-yellow--lighter": "hsl(52, 64%, 89%)",
|
|
1931
|
+
"color-yellow--lightest": "hsl(49, 67%, 95%)",
|
|
1932
|
+
"color-yellow--dark": "hsl(51, 64%, 32%)",
|
|
1933
|
+
"color-red": "hsl(6, 64%, 51%)",
|
|
1934
|
+
"color-red--light": "hsl(6, 64%, 76%)",
|
|
1935
|
+
"color-red--lighter": "hsl(5, 65%, 90%)",
|
|
1936
|
+
"color-red--lightest": "hsl(7, 63%, 95%)",
|
|
1937
|
+
"color-red--dark": "hsl(6, 100%, 24%)",
|
|
1938
|
+
"color-grey": "hsl(0, 0%, 72%)",
|
|
1939
|
+
"color-grey--light": "hsl(0, 0%, 87%)",
|
|
1940
|
+
"color-grey--lighter": "hsl(0, 0%, 93%)",
|
|
1941
|
+
"color-grey--lightest": "hsl(0, 0%, 97%)",
|
|
1942
|
+
"color-grey--dark": "hsl(0, 0%, 47%)",
|
|
1943
|
+
"color-overlay": "rgba(0, 0, 0, 0.32)",
|
|
1944
|
+
"color-overlay--dimmed": "rgba(255, 255, 255, 0.6)",
|
|
1945
|
+
"color-white": "rgba(255, 255, 255, 1)",
|
|
1946
|
+
"color-black": "rgba(0, 0, 0, 1)",
|
|
1947
|
+
"color-greyBlue": "hsl(197, 15%, 45%)",
|
|
1948
|
+
"color-greyBlue--light": "hsl(198, 12%, 57%)",
|
|
1949
|
+
"color-greyBlue--lighter": "hsl(196, 12%, 70%)",
|
|
1950
|
+
"color-greyBlue--lightest": "hsl(195, 12%, 94%)",
|
|
1951
|
+
"color-greyBlue--dark": "hsl(198, 35%, 21%)",
|
|
1952
|
+
"color-lightBlue": "hsl(207, 79%, 57%)",
|
|
1953
|
+
"color-lightBlue--light": "hsl(207, 89%, 71%)",
|
|
1954
|
+
"color-lightBlue--lighter": "hsl(206, 91%, 87%)",
|
|
1955
|
+
"color-lightBlue--lightest": "hsl(207, 87%, 94%)",
|
|
1956
|
+
"color-lightBlue--dark": "hsl(207, 61%, 45%)",
|
|
1957
|
+
"color-purple": "hsl(348, 40%, 27%)",
|
|
1958
|
+
"color-purple--dark": "hsl(347, 41%, 18%)",
|
|
1959
|
+
"color-pink": "hsl(348, 34%, 53%)",
|
|
1960
|
+
"color-pink--light": "hsl(349, 34%, 64%)",
|
|
1961
|
+
"color-pink--lighter": "hsl(349, 34%, 75%)",
|
|
1962
|
+
"color-pink--lightest": "hsl(347, 33%, 95%)",
|
|
1963
|
+
"color-pink--dark": "hsl(348, 40%, 27%)",
|
|
1964
|
+
"color-orange": "hsl(33, 71%, 48%)",
|
|
1965
|
+
"color-orange--light": "hsl(33, 77%, 63%)",
|
|
1966
|
+
"color-orange--lighter": "hsl(32, 78%, 84%)",
|
|
1967
|
+
"color-orange--lightest": "hsl(34, 76%, 92%)",
|
|
1968
|
+
"color-orange--dark": "hsl(33, 71%, 38%)",
|
|
1969
|
+
"color-brown": "hsl(33, 71%, 29%)",
|
|
1970
|
+
"color-brown--light": "hsl(33, 71%, 38%)",
|
|
1971
|
+
"color-brown--lighter": "hsl(51, 17%, 85%)",
|
|
1972
|
+
"color-brown--lightest": "hsl(53, 21%, 93%)",
|
|
1973
|
+
"color-brown--dark": "hsl(33, 72%, 20%)",
|
|
1974
|
+
"color-navy": "hsl(207, 61%, 34%)",
|
|
1975
|
+
"color-navy--light": "hsl(207, 61%, 45%)",
|
|
1976
|
+
"color-navy--lighter": "hsl(200, 13%, 87%)",
|
|
1977
|
+
"color-navy--lightest": "hsl(195, 12%, 94%)",
|
|
1978
|
+
"color-navy--dark": "hsl(206, 61%, 23%)",
|
|
1979
|
+
"color-base-white": "rgba(255, 255, 255, 1)",
|
|
1980
|
+
"color-base-black": "rgba(0, 0, 0, 1)",
|
|
1981
|
+
};
|
|
1982
|
+
|
|
1983
|
+
var allColors = {
|
|
1984
|
+
"base-unit": "16px",
|
|
1985
|
+
"color-request": "hsl(33, 71%, 38%)",
|
|
1986
|
+
"color-request--surface": "hsl(34, 76%, 92%)",
|
|
1987
|
+
"color-request--onSurface": "hsl(33, 72%, 20%)",
|
|
1988
|
+
"color-quote": "hsl(348, 40%, 41%)",
|
|
1989
|
+
"color-quote--surface": "hsl(347, 33%, 95%)",
|
|
1990
|
+
"color-quote--onSurface": "hsl(348, 40%, 27%)",
|
|
1991
|
+
"color-job": "hsl(107, 58%, 33%)",
|
|
1992
|
+
"color-job--surface": "hsl(109, 28%, 92%)",
|
|
1993
|
+
"color-job--onSurface": "hsl(107, 65%, 24%)",
|
|
1994
|
+
"color-task": "hsl(206, 61%, 23%)",
|
|
1995
|
+
"color-task--surface": "hsl(195, 12%, 94%)",
|
|
1996
|
+
"color-task--onSurface": "hsl(198, 35%, 21%)",
|
|
1997
|
+
"color-invoice": "hsl(207, 61%, 34%)",
|
|
1998
|
+
"color-invoice--surface": "hsl(207, 87%, 94%)",
|
|
1999
|
+
"color-invoice--onSurface": "hsl(206, 61%, 23%)",
|
|
2000
|
+
"color-visit": "hsl(107, 58%, 33%)",
|
|
2001
|
+
"color-visit--surface": "hsl(109, 28%, 92%)",
|
|
2002
|
+
"color-visit--onSurface": "hsl(107, 65%, 24%)",
|
|
2003
|
+
"color-event": "hsl(51, 64%, 49%)",
|
|
2004
|
+
"color-event--surface": "hsl(52, 64%, 89%)",
|
|
2005
|
+
"color-event--onSurface": "hsl(51, 64%, 24%)",
|
|
2006
|
+
"color-payments": "hsl(207, 61%, 34%)",
|
|
2007
|
+
"color-payments--surface": "hsl(207, 87%, 94%)",
|
|
2008
|
+
"color-payments--onSurface": "hsl(207, 87%, 94%)",
|
|
2009
|
+
"color-client": "hsl(48, 3%, 34%)",
|
|
2010
|
+
"color-interactive": "hsl(107, 58%, 33%)",
|
|
2011
|
+
"color-interactive--hover": "hsl(107, 65%, 24%)",
|
|
2012
|
+
"color-interactive--subtle": "hsl(198, 35%, 21%)",
|
|
2013
|
+
"color-interactive--subtle--hover": "hsl(197, 90%, 12%)",
|
|
2014
|
+
"color-destructive": "hsl(6, 64%, 51%)",
|
|
2015
|
+
"color-destructive--hover": "hsl(6, 100%, 35%)",
|
|
2016
|
+
"color-disabled": "hsl(0, 0%, 72%)",
|
|
2017
|
+
"color-disabled--secondary": "hsl(0, 0%, 93%)",
|
|
2018
|
+
"color-focus": "hsl(198, 12%, 57%)",
|
|
2019
|
+
"color-critical": "hsl(6, 64%, 51%)",
|
|
2020
|
+
"color-critical--surface": "hsl(7, 63%, 95%)",
|
|
2021
|
+
"color-critical--onSurface": "hsl(6, 100%, 24%)",
|
|
2022
|
+
"color-warning": "hsl(51, 64%, 49%)",
|
|
2023
|
+
"color-warning--surface": "hsl(52, 64%, 89%)",
|
|
2024
|
+
"color-warning--onSurface": "hsl(51, 64%, 24%)",
|
|
2025
|
+
"color-success": "hsl(107, 58%, 33%)",
|
|
2026
|
+
"color-success--surface": "hsl(109, 28%, 92%)",
|
|
2027
|
+
"color-success--onSurface": "hsl(107, 64%, 16%)",
|
|
2028
|
+
"color-informative": "hsl(207, 79%, 57%)",
|
|
2029
|
+
"color-informative--surface": "hsl(207, 87%, 94%)",
|
|
2030
|
+
"color-informative--onSurface": "hsl(207, 61%, 34%)",
|
|
2031
|
+
"color-inactive": "hsl(198, 25%, 33%)",
|
|
2032
|
+
"color-inactive--surface": "hsl(195, 12%, 94%)",
|
|
2033
|
+
"color-inactive--onSurface": "hsl(197, 90%, 12%)",
|
|
2034
|
+
"color-heading": "hsl(197, 90%, 12%)",
|
|
2035
|
+
"color-text": "hsl(198, 35%, 21%)",
|
|
2036
|
+
"color-text--secondary": "hsl(197, 15%, 45%)",
|
|
2037
|
+
"color-text--reverse": "rgba(255, 255, 255, 1)",
|
|
2038
|
+
"color-text--reverse--secondary": "hsl(200, 13%, 87%)",
|
|
2039
|
+
"color-icon": "hsl(198, 35%, 21%)",
|
|
2040
|
+
"color-surface": "rgba(255, 255, 255, 1)",
|
|
2041
|
+
"color-surface--hover": "hsl(53, 21%, 93%)",
|
|
2042
|
+
"color-surface--reverse": "hsl(197, 90%, 12%)",
|
|
2043
|
+
"color-surface--active": "hsl(51, 17%, 85%)",
|
|
2044
|
+
"color-surface--background": "hsl(53, 21%, 93%)",
|
|
2045
|
+
"color-surface--background--hover": "hsl(51, 17%, 85%)",
|
|
2046
|
+
"color-surface--background--subtle": "hsl(45, 20%, 97%)",
|
|
2047
|
+
"color-surface--background--subtle--hover": "hsl(51, 17%, 85%)",
|
|
2048
|
+
"color-border": "hsl(200, 13%, 87%)",
|
|
2049
|
+
"color-border--interactive": "hsl(200, 13%, 87%)",
|
|
2050
|
+
"color-border--section": "hsl(197, 90%, 12%)",
|
|
2051
|
+
"color-brand": "hsl(79, 85%, 34%)",
|
|
2052
|
+
"color-blue": "hsl(197, 90%, 12%)",
|
|
2053
|
+
"color-blue--light": "hsl(198, 25%, 33%)",
|
|
2054
|
+
"color-blue--lighter": "hsl(198, 12%, 57%)",
|
|
2055
|
+
"color-blue--lightest": "hsl(200, 13%, 87%)",
|
|
2056
|
+
"color-blue--dark": "hsl(198, 96%, 9%)",
|
|
2057
|
+
"color-taupe": "hsl(53, 21%, 93%)",
|
|
2058
|
+
"color-taupe--light": "hsl(45, 20%, 97%)",
|
|
2059
|
+
"color-taupe--dark": "hsl(51, 17%, 85%)",
|
|
2060
|
+
"color-green": "hsl(107, 58%, 33%)",
|
|
2061
|
+
"color-green--light": "hsl(107, 30%, 49%)",
|
|
2062
|
+
"color-green--lighter": "hsl(107, 29%, 65%)",
|
|
2063
|
+
"color-green--lightest": "hsl(109, 28%, 92%)",
|
|
2064
|
+
"color-green--dark": "hsl(107, 64%, 16%)",
|
|
2065
|
+
"color-lime": "hsl(79, 85%, 34%)",
|
|
2066
|
+
"color-lime--light": "hsl(79, 51%, 51%)",
|
|
2067
|
+
"color-lime--lighter": "hsl(79, 51%, 78%)",
|
|
2068
|
+
"color-lime--lightest": "hsl(79, 49%, 90%)",
|
|
2069
|
+
"color-lime--dark": "hsl(79, 85%, 21%)",
|
|
2070
|
+
"color-yellowGreen": "hsl(79, 85%, 34%)",
|
|
2071
|
+
"color-yellowGreen--light": "hsl(79, 51%, 51%)",
|
|
2072
|
+
"color-yellowGreen--lighter": "hsl(79, 51%, 78%)",
|
|
2073
|
+
"color-yellowGreen--lightest": "hsl(79, 49%, 90%)",
|
|
2074
|
+
"color-yellowGreen--dark": "hsl(79, 86%, 27%)",
|
|
2075
|
+
"color-yellow": "hsl(51, 64%, 49%)",
|
|
2076
|
+
"color-yellow--light": "hsl(51, 64%, 77%)",
|
|
2077
|
+
"color-yellow--lighter": "hsl(52, 64%, 89%)",
|
|
2078
|
+
"color-yellow--lightest": "hsl(49, 67%, 95%)",
|
|
2079
|
+
"color-yellow--dark": "hsl(51, 64%, 32%)",
|
|
2080
|
+
"color-red": "hsl(6, 64%, 51%)",
|
|
2081
|
+
"color-red--light": "hsl(6, 64%, 76%)",
|
|
2082
|
+
"color-red--lighter": "hsl(5, 65%, 90%)",
|
|
2083
|
+
"color-red--lightest": "hsl(7, 63%, 95%)",
|
|
2084
|
+
"color-red--dark": "hsl(6, 100%, 24%)",
|
|
2085
|
+
"color-grey": "hsl(0, 0%, 72%)",
|
|
2086
|
+
"color-grey--light": "hsl(0, 0%, 87%)",
|
|
2087
|
+
"color-grey--lighter": "hsl(0, 0%, 93%)",
|
|
2088
|
+
"color-grey--lightest": "hsl(0, 0%, 97%)",
|
|
2089
|
+
"color-grey--dark": "hsl(0, 0%, 47%)",
|
|
2090
|
+
"color-overlay": "rgba(0, 0, 0, 0.32)",
|
|
2091
|
+
"color-overlay--dimmed": "rgba(255, 255, 255, 0.6)",
|
|
2092
|
+
"color-white": "rgba(255, 255, 255, 1)",
|
|
2093
|
+
"color-black": "rgba(0, 0, 0, 1)",
|
|
2094
|
+
"color-greyBlue": "hsl(197, 15%, 45%)",
|
|
2095
|
+
"color-greyBlue--light": "hsl(198, 12%, 57%)",
|
|
2096
|
+
"color-greyBlue--lighter": "hsl(196, 12%, 70%)",
|
|
2097
|
+
"color-greyBlue--lightest": "hsl(195, 12%, 94%)",
|
|
2098
|
+
"color-greyBlue--dark": "hsl(198, 35%, 21%)",
|
|
2099
|
+
"color-lightBlue": "hsl(207, 79%, 57%)",
|
|
2100
|
+
"color-lightBlue--light": "hsl(207, 89%, 71%)",
|
|
2101
|
+
"color-lightBlue--lighter": "hsl(206, 91%, 87%)",
|
|
2102
|
+
"color-lightBlue--lightest": "hsl(207, 87%, 94%)",
|
|
2103
|
+
"color-lightBlue--dark": "hsl(207, 61%, 45%)",
|
|
2104
|
+
"color-purple": "hsl(348, 40%, 27%)",
|
|
2105
|
+
"color-purple--dark": "hsl(347, 41%, 18%)",
|
|
2106
|
+
"color-pink": "hsl(348, 34%, 53%)",
|
|
2107
|
+
"color-pink--light": "hsl(349, 34%, 64%)",
|
|
2108
|
+
"color-pink--lighter": "hsl(349, 34%, 75%)",
|
|
2109
|
+
"color-pink--lightest": "hsl(347, 33%, 95%)",
|
|
2110
|
+
"color-pink--dark": "hsl(348, 40%, 27%)",
|
|
2111
|
+
"color-orange": "hsl(33, 71%, 48%)",
|
|
2112
|
+
"color-orange--light": "hsl(33, 77%, 63%)",
|
|
2113
|
+
"color-orange--lighter": "hsl(32, 78%, 84%)",
|
|
2114
|
+
"color-orange--lightest": "hsl(34, 76%, 92%)",
|
|
2115
|
+
"color-orange--dark": "hsl(33, 71%, 38%)",
|
|
2116
|
+
"color-brown": "hsl(33, 71%, 29%)",
|
|
2117
|
+
"color-brown--light": "hsl(33, 71%, 38%)",
|
|
2118
|
+
"color-brown--lighter": "hsl(51, 17%, 85%)",
|
|
2119
|
+
"color-brown--lightest": "hsl(53, 21%, 93%)",
|
|
2120
|
+
"color-brown--dark": "hsl(33, 72%, 20%)",
|
|
2121
|
+
"color-navy": "hsl(207, 61%, 34%)",
|
|
2122
|
+
"color-navy--light": "hsl(207, 61%, 45%)",
|
|
2123
|
+
"color-navy--lighter": "hsl(200, 13%, 87%)",
|
|
2124
|
+
"color-navy--lightest": "hsl(195, 12%, 94%)",
|
|
2125
|
+
"color-navy--dark": "hsl(206, 61%, 23%)",
|
|
2126
|
+
"color-base-white": "rgba(255, 255, 255, 1)",
|
|
2127
|
+
"color-base-black": "rgba(0, 0, 0, 1)",
|
|
2128
|
+
"color-base-grey--100": "hsl(0, 0%, 97%)",
|
|
2129
|
+
"color-base-grey--200": "hsl(0, 0%, 93%)",
|
|
2130
|
+
"color-base-grey--300": "hsl(0, 0%, 87%)",
|
|
2131
|
+
"color-base-grey--400": "hsl(0, 0%, 72%)",
|
|
2132
|
+
"color-base-grey--500": "hsl(0, 0%, 58%)",
|
|
2133
|
+
"color-base-grey--600": "hsl(0, 0%, 47%)",
|
|
2134
|
+
"color-base-grey--700": "hsl(0, 0%, 35%)",
|
|
2135
|
+
"color-base-grey--800": "hsl(0, 0%, 24%)",
|
|
2136
|
+
"color-base-grey--900": "hsl(0, 0%, 15%)",
|
|
2137
|
+
"color-base-grey--1000": "hsl(0, 0%, 11%)",
|
|
2138
|
+
"color-base-taupe--100": "hsl(45, 20%, 97%)",
|
|
2139
|
+
"color-base-taupe--200": "hsl(53, 21%, 93%)",
|
|
2140
|
+
"color-base-taupe--300": "hsl(51, 17%, 85%)",
|
|
2141
|
+
"color-base-taupe--400": "hsl(49, 7%, 70%)",
|
|
2142
|
+
"color-base-taupe--500": "hsl(47, 4%, 57%)",
|
|
2143
|
+
"color-base-taupe--600": "hsl(43, 3%, 46%)",
|
|
2144
|
+
"color-base-taupe--700": "hsl(48, 3%, 34%)",
|
|
2145
|
+
"color-base-taupe--800": "hsl(40, 3%, 23%)",
|
|
2146
|
+
"color-base-taupe--900": "hsl(30, 3%, 15%)",
|
|
2147
|
+
"color-base-taupe--1000": "hsl(30, 4%, 11%)",
|
|
2148
|
+
"color-base-red--100": "hsl(10, 60%, 98%)",
|
|
2149
|
+
"color-base-red--200": "hsl(7, 63%, 95%)",
|
|
2150
|
+
"color-base-red--300": "hsl(5, 65%, 90%)",
|
|
2151
|
+
"color-base-red--400": "hsl(6, 64%, 76%)",
|
|
2152
|
+
"color-base-red--500": "hsl(6, 64%, 65%)",
|
|
2153
|
+
"color-base-red--600": "hsl(6, 64%, 51%)",
|
|
2154
|
+
"color-base-red--700": "hsl(6, 100%, 35%)",
|
|
2155
|
+
"color-base-red--800": "hsl(6, 100%, 24%)",
|
|
2156
|
+
"color-base-red--900": "hsl(6, 100%, 16%)",
|
|
2157
|
+
"color-base-red--1000": "hsl(6, 100%, 12%)",
|
|
2158
|
+
"color-base-green--100": "hsl(108, 29%, 97%)",
|
|
2159
|
+
"color-base-green--200": "hsl(109, 28%, 92%)",
|
|
2160
|
+
"color-base-green--300": "hsl(106, 28%, 85%)",
|
|
2161
|
+
"color-base-green--400": "hsl(107, 29%, 65%)",
|
|
2162
|
+
"color-base-green--500": "hsl(107, 30%, 49%)",
|
|
2163
|
+
"color-base-green--600": "hsl(107, 58%, 33%)",
|
|
2164
|
+
"color-base-green--700": "hsl(107, 65%, 24%)",
|
|
2165
|
+
"color-base-green--800": "hsl(107, 64%, 16%)",
|
|
2166
|
+
"color-base-green--900": "hsl(108, 63%, 11%)",
|
|
2167
|
+
"color-base-green--1000": "hsl(108, 64%, 8%)",
|
|
2168
|
+
"color-base-blue--100": "hsl(210, 17%, 98%)",
|
|
2169
|
+
"color-base-blue--200": "hsl(195, 12%, 94%)",
|
|
2170
|
+
"color-base-blue--300": "hsl(200, 13%, 87%)",
|
|
2171
|
+
"color-base-blue--400": "hsl(196, 12%, 70%)",
|
|
2172
|
+
"color-base-blue--500": "hsl(198, 12%, 57%)",
|
|
2173
|
+
"color-base-blue--600": "hsl(197, 15%, 45%)",
|
|
2174
|
+
"color-base-blue--700": "hsl(198, 25%, 33%)",
|
|
2175
|
+
"color-base-blue--800": "hsl(198, 35%, 21%)",
|
|
2176
|
+
"color-base-blue--900": "hsl(197, 90%, 12%)",
|
|
2177
|
+
"color-base-blue--1000": "hsl(198, 96%, 9%)",
|
|
2178
|
+
"color-base-yellow--100": "hsl(49, 67%, 95%)",
|
|
2179
|
+
"color-base-yellow--200": "hsl(52, 64%, 89%)",
|
|
2180
|
+
"color-base-yellow--300": "hsl(51, 64%, 77%)",
|
|
2181
|
+
"color-base-yellow--400": "hsl(51, 64%, 49%)",
|
|
2182
|
+
"color-base-yellow--500": "hsl(51, 64%, 40%)",
|
|
2183
|
+
"color-base-yellow--600": "hsl(51, 64%, 32%)",
|
|
2184
|
+
"color-base-yellow--700": "hsl(51, 64%, 24%)",
|
|
2185
|
+
"color-base-yellow--800": "hsl(51, 64%, 16%)",
|
|
2186
|
+
"color-base-yellow--900": "hsl(51, 63%, 11%)",
|
|
2187
|
+
"color-base-yellow--1000": "hsl(50, 64%, 8%)",
|
|
2188
|
+
"color-base-lime--100": "hsl(80, 53%, 97%)",
|
|
2189
|
+
"color-base-lime--200": "hsl(79, 49%, 90%)",
|
|
2190
|
+
"color-base-lime--300": "hsl(79, 51%, 78%)",
|
|
2191
|
+
"color-base-lime--400": "hsl(79, 51%, 51%)",
|
|
2192
|
+
"color-base-lime--500": "hsl(79, 85%, 34%)",
|
|
2193
|
+
"color-base-lime--600": "hsl(79, 86%, 27%)",
|
|
2194
|
+
"color-base-lime--700": "hsl(79, 85%, 21%)",
|
|
2195
|
+
"color-base-lime--800": "hsl(79, 86%, 14%)",
|
|
2196
|
+
"color-base-lime--900": "hsl(78, 87%, 9%)",
|
|
2197
|
+
"color-base-lime--1000": "hsl(79, 82%, 7%)",
|
|
2198
|
+
"color-base-lightBlue--100": "hsl(205, 86%, 97%)",
|
|
2199
|
+
"color-base-lightBlue--200": "hsl(207, 87%, 94%)",
|
|
2200
|
+
"color-base-lightBlue--300": "hsl(206, 91%, 87%)",
|
|
2201
|
+
"color-base-lightBlue--400": "hsl(207, 89%, 71%)",
|
|
2202
|
+
"color-base-lightBlue--500": "hsl(207, 79%, 57%)",
|
|
2203
|
+
"color-base-lightBlue--600": "hsl(207, 61%, 45%)",
|
|
2204
|
+
"color-base-lightBlue--700": "hsl(207, 61%, 34%)",
|
|
2205
|
+
"color-base-lightBlue--800": "hsl(206, 61%, 23%)",
|
|
2206
|
+
"color-base-lightBlue--900": "hsl(207, 61%, 15%)",
|
|
2207
|
+
"color-base-lightBlue--1000": "hsl(207, 60%, 11%)",
|
|
2208
|
+
"color-base-pink--100": "hsl(345, 40%, 98%)",
|
|
2209
|
+
"color-base-pink--200": "hsl(347, 33%, 95%)",
|
|
2210
|
+
"color-base-pink--300": "hsl(348, 36%, 89%)",
|
|
2211
|
+
"color-base-pink--400": "hsl(349, 34%, 75%)",
|
|
2212
|
+
"color-base-pink--500": "hsl(349, 34%, 64%)",
|
|
2213
|
+
"color-base-pink--600": "hsl(348, 34%, 53%)",
|
|
2214
|
+
"color-base-pink--700": "hsl(348, 40%, 41%)",
|
|
2215
|
+
"color-base-pink--800": "hsl(348, 40%, 27%)",
|
|
2216
|
+
"color-base-pink--900": "hsl(347, 41%, 18%)",
|
|
2217
|
+
"color-base-pink--1000": "hsl(349, 40%, 13%)",
|
|
2218
|
+
"color-base-orange--100": "hsl(36, 71%, 97%)",
|
|
2219
|
+
"color-base-orange--200": "hsl(34, 76%, 92%)",
|
|
2220
|
+
"color-base-orange--300": "hsl(32, 78%, 84%)",
|
|
2221
|
+
"color-base-orange--400": "hsl(33, 77%, 63%)",
|
|
2222
|
+
"color-base-orange--500": "hsl(33, 71%, 48%)",
|
|
2223
|
+
"color-base-orange--600": "hsl(33, 71%, 38%)",
|
|
2224
|
+
"color-base-orange--700": "hsl(33, 71%, 29%)",
|
|
2225
|
+
"color-base-orange--800": "hsl(33, 72%, 20%)",
|
|
2226
|
+
"color-base-orange--900": "hsl(33, 72%, 13%)",
|
|
2227
|
+
"color-base-orange--1000": "hsl(33, 70%, 9%)",
|
|
2228
|
+
"color-indigo": "rgb(85, 106, 203)",
|
|
2229
|
+
"color-indigo--light": "rgb(136, 151, 219)",
|
|
2230
|
+
"color-indigo--lighter": "rgb(187, 195, 234)",
|
|
2231
|
+
"color-indigo--lightest": "rgb(230, 233, 247)",
|
|
2232
|
+
"color-indigo--dark": "rgb(55, 69, 132)",
|
|
2233
|
+
"color-white--rgb": "255, 255, 255",
|
|
2234
|
+
"color-black--rgb": "0, 0, 0",
|
|
2235
|
+
"color-brand--highlight": "hsl(86, 100%, 46%)",
|
|
2236
|
+
"color-greyBlue--rgb": "101, 120, 132",
|
|
2237
|
+
"color-purple--light": "rgb(172, 155, 214)",
|
|
2238
|
+
"color-purple--lighter": "rgb(207, 198, 231)",
|
|
2239
|
+
"color-purple--lightest": "rgb(237, 234, 246)",
|
|
2240
|
+
"color-teal": "rgb(62, 173, 146)",
|
|
2241
|
+
"color-teal--light": "rgb(120, 198, 179)",
|
|
2242
|
+
"color-teal--lighter": "rgb(178, 222, 211)",
|
|
2243
|
+
"color-teal--lightest": "rgb(226, 243, 239)",
|
|
2244
|
+
"color-teal--dark": "rgb(40, 112, 95)",
|
|
2245
|
+
};
|
|
2246
|
+
|
|
2247
|
+
var tokens_semantic = {
|
|
2248
|
+
"base-unit": "16px",
|
|
2249
|
+
"color-interactive": "hsl(107, 58%, 33%)",
|
|
2250
|
+
"color-interactive--hover": "hsl(107, 65%, 24%)",
|
|
2251
|
+
"color-interactive--subtle": "hsl(198, 35%, 21%)",
|
|
2252
|
+
"color-interactive--subtle--hover": "hsl(197, 90%, 12%)",
|
|
2253
|
+
"color-destructive": "hsl(6, 64%, 51%)",
|
|
2254
|
+
"color-destructive--hover": "hsl(6, 100%, 35%)",
|
|
2255
|
+
"color-disabled": "hsl(0, 0%, 72%)",
|
|
2256
|
+
"color-disabled--secondary": "hsl(0, 0%, 93%)",
|
|
2257
|
+
"color-focus": "hsl(198, 12%, 57%)",
|
|
2258
|
+
"color-critical": "hsl(6, 64%, 51%)",
|
|
2259
|
+
"color-critical--surface": "hsl(7, 63%, 95%)",
|
|
2260
|
+
"color-critical--onSurface": "hsl(6, 100%, 24%)",
|
|
2261
|
+
"color-warning": "hsl(51, 64%, 49%)",
|
|
2262
|
+
"color-warning--surface": "hsl(52, 64%, 89%)",
|
|
2263
|
+
"color-warning--onSurface": "hsl(51, 64%, 24%)",
|
|
2264
|
+
"color-success": "hsl(107, 58%, 33%)",
|
|
2265
|
+
"color-success--surface": "hsl(109, 28%, 92%)",
|
|
2266
|
+
"color-success--onSurface": "hsl(107, 64%, 16%)",
|
|
2267
|
+
"color-informative": "hsl(207, 79%, 57%)",
|
|
2268
|
+
"color-informative--surface": "hsl(207, 87%, 94%)",
|
|
2269
|
+
"color-informative--onSurface": "hsl(207, 61%, 34%)",
|
|
2270
|
+
"color-inactive": "hsl(198, 25%, 33%)",
|
|
2271
|
+
"color-inactive--surface": "hsl(195, 12%, 94%)",
|
|
2272
|
+
"color-inactive--onSurface": "hsl(197, 90%, 12%)",
|
|
2273
|
+
"color-heading": "hsl(197, 90%, 12%)",
|
|
2274
|
+
"color-text": "hsl(198, 35%, 21%)",
|
|
2275
|
+
"color-text--secondary": "hsl(197, 15%, 45%)",
|
|
2276
|
+
"color-text--reverse": "rgba(255, 255, 255, 1)",
|
|
2277
|
+
"color-text--reverse--secondary": "hsl(200, 13%, 87%)",
|
|
2278
|
+
"color-icon": "hsl(198, 35%, 21%)",
|
|
2279
|
+
"color-surface": "rgba(255, 255, 255, 1)",
|
|
2280
|
+
"color-surface--hover": "hsl(53, 21%, 93%)",
|
|
2281
|
+
"color-surface--reverse": "hsl(197, 90%, 12%)",
|
|
2282
|
+
"color-surface--active": "hsl(51, 17%, 85%)",
|
|
2283
|
+
"color-surface--background": "hsl(53, 21%, 93%)",
|
|
2284
|
+
"color-surface--background--hover": "hsl(51, 17%, 85%)",
|
|
2285
|
+
"color-surface--background--subtle": "hsl(45, 20%, 97%)",
|
|
2286
|
+
"color-surface--background--subtle--hover": "hsl(51, 17%, 85%)",
|
|
2287
|
+
"color-border": "hsl(200, 13%, 87%)",
|
|
2288
|
+
"color-border--interactive": "hsl(200, 13%, 87%)",
|
|
2289
|
+
"color-border--section": "hsl(197, 90%, 12%)",
|
|
2290
|
+
"color-brand": "hsl(79, 85%, 34%)",
|
|
2291
|
+
};
|
|
2292
|
+
|
|
2293
|
+
var tokens_dark = {
|
|
2294
|
+
"base-unit": "16px",
|
|
2295
|
+
"color-base-blue--700": "hsl(197, 15%, 35%)",
|
|
2296
|
+
"color-base-blue--800": "hsl(197, 18%, 25%)",
|
|
2297
|
+
"color-base-blue--900": "hsl(197, 15%, 18%)",
|
|
2298
|
+
"color-base-blue--1000": "hsl(197, 10%, 10%)",
|
|
2299
|
+
"color-interactive": "hsl(86, 60%, 50%)",
|
|
2300
|
+
"color-interactive--hover": "hsl(86, 60%, 60%)",
|
|
2301
|
+
"color-interactive--subtle": "hsl(195, 12%, 94%)",
|
|
2302
|
+
"color-interactive--subtle--hover": "hsl(210, 17%, 98%)",
|
|
2303
|
+
"color-destructive": "hsl(6, 64%, 65%)",
|
|
2304
|
+
"color-destructive--hover": "hsl(6, 64%, 76%)",
|
|
2305
|
+
"color-disabled": "hsl(0, 0%, 58%)",
|
|
2306
|
+
"color-disabled--secondary": "hsl(0, 0%, 35%)",
|
|
2307
|
+
"color-critical": "hsl(6, 64%, 51%)",
|
|
2308
|
+
"color-critical--surface": "hsl(6, 100%, 16%)",
|
|
2309
|
+
"color-critical--onSurface": "hsl(5, 65%, 90%)",
|
|
2310
|
+
"color-warning": "hsl(51, 64%, 49%)",
|
|
2311
|
+
"color-warning--surface": "hsl(51, 64%, 24%)",
|
|
2312
|
+
"color-warning--onSurface": "hsl(52, 64%, 89%)",
|
|
2313
|
+
"color-success": "hsl(107, 30%, 49%)",
|
|
2314
|
+
"color-success--surface": "hsl(107, 64%, 16%)",
|
|
2315
|
+
"color-success--onSurface": "hsl(106, 28%, 85%)",
|
|
2316
|
+
"color-informative": "hsl(207, 61%, 45%)",
|
|
2317
|
+
"color-informative--surface": "hsl(206, 61%, 23%)",
|
|
2318
|
+
"color-informative--onSurface": "hsl(206, 91%, 87%)",
|
|
2319
|
+
"color-inactive": "hsl(198, 12%, 57%)",
|
|
2320
|
+
"color-inactive--surface": "hsl(197, 15%, 35%)",
|
|
2321
|
+
"color-inactive--onSurface": "hsl(195, 12%, 94%)",
|
|
2322
|
+
"color-heading": "hsl(210, 17%, 98%)",
|
|
2323
|
+
"color-text": "hsl(195, 12%, 94%)",
|
|
2324
|
+
"color-text--secondary": "hsl(196, 12%, 70%)",
|
|
2325
|
+
"color-text--reverse": "hsl(197, 15%, 35%)",
|
|
2326
|
+
"color-text--reverse--secondary": "hsl(197, 15%, 18%)",
|
|
2327
|
+
"color-icon": "hsl(195, 12%, 94%)",
|
|
2328
|
+
"color-surface": "hsl(197, 15%, 18%)",
|
|
2329
|
+
"color-surface--hover": "hsl(197, 18%, 25%)",
|
|
2330
|
+
"color-surface--active": "hsl(197, 15%, 35%)",
|
|
2331
|
+
"color-surface--background": "hsl(197, 10%, 10%)",
|
|
2332
|
+
"color-surface--background--hover": "hsl(197, 18%, 25%)",
|
|
2333
|
+
"color-surface--background--subtle": "hsl(197, 18%, 25%)",
|
|
2334
|
+
"color-surface--reverse": "hsl(53, 21%, 93%)",
|
|
2335
|
+
"color-border": "hsl(197, 15%, 35%)",
|
|
2336
|
+
"color-border--interactive": "hsl(198, 12%, 57%)",
|
|
2337
|
+
"color-border--section": "hsl(196, 12%, 70%)",
|
|
2338
|
+
"color-overlay": "rgba(0, 0, 0, 0.6)",
|
|
2339
|
+
"color-overlay--dimmed": "rgba(0, 0, 0, 0.4)",
|
|
2340
|
+
"color-request": "hsl(33, 71%, 48%)",
|
|
2341
|
+
"color-quote": "hsl(349, 34%, 64%)",
|
|
2342
|
+
"color-job": "hsl(107, 30%, 49%)",
|
|
2343
|
+
"color-visit": "{color.base.green-.500}",
|
|
2344
|
+
"color-task": "hsl(198, 12%, 57%)",
|
|
2345
|
+
"color-event": "hsl(51, 64%, 49%)",
|
|
2346
|
+
"color-invoice": "hsl(207, 79%, 57%)",
|
|
2347
|
+
"color-payments": "{color.base.lightBlue-.500}",
|
|
2348
|
+
"color-request--surface": "hsl(33, 72%, 20%)",
|
|
2349
|
+
"color-request--onSurface": "hsl(32, 78%, 84%)",
|
|
2350
|
+
"color-quote--surface": "hsl(348, 40%, 27%)",
|
|
2351
|
+
"color-quote--onSurface": "hsl(348, 36%, 89%)",
|
|
2352
|
+
"color-job--surface": "hsl(107, 64%, 16%)",
|
|
2353
|
+
"color-job--onSurface": "hsl(109, 28%, 92%)",
|
|
2354
|
+
"color-visit--surface": "{color.base.green-.800}",
|
|
2355
|
+
"color-visit--onSurface": "{color.base.green-.200}",
|
|
2356
|
+
"color-task--surface": "hsl(197, 15%, 35%)",
|
|
2357
|
+
"color-task--onSurface": "hsl(200, 13%, 87%)",
|
|
2358
|
+
"color-event--surface": "hsl(51, 64%, 24%)",
|
|
2359
|
+
"color-event--onSurface": "hsl(52, 64%, 89%)",
|
|
2360
|
+
"color-invoice--surface": "hsl(206, 61%, 23%)",
|
|
2361
|
+
"color-invoice--onSurface": "hsl(206, 91%, 87%)",
|
|
2362
|
+
"color-payments--surface": "{color.base.lightBlue-.800}",
|
|
2363
|
+
"color-payments--onSurface": "{color.base.lightBlue-.800}",
|
|
2364
|
+
"color-client": "hsl(195, 12%, 94%)",
|
|
2365
|
+
"shadow-low": "0px var(--space-minuscule) var(--space-smallest) rgba(0, 0, 0, 0.15), 0px 0px var(--space-smallest) rgba(0, 0, 0, 0.25)",
|
|
2366
|
+
"shadow-base": "0px var(--space-minuscule) var(--space-smaller) 0px rgba(0, 0, 0, 0.1), 0px var(--space-smaller) 12px 0px rgba(0, 0, 0, 0.2)",
|
|
2367
|
+
"shadow-high": "0px var(--space-base) var(--space-base) 0px rgba(0, 0, 0, 0.075), 0px 0px var(--space-small) 0px rgba(0, 0, 0, 0.175)",
|
|
2368
|
+
"field--placeholder-color": "hsl(196, 12%, 70%)",
|
|
2369
|
+
"field--border-color": "hsl(198, 12%, 57%)",
|
|
2370
|
+
};
|
|
2371
|
+
|
|
2372
|
+
const secondaryIconMap = {
|
|
2373
|
+
longArrowUp: "backArrow",
|
|
2374
|
+
longArrowDown: "backArrow",
|
|
2375
|
+
longArrowRight: "backArrow",
|
|
2376
|
+
longArrowLeft: "backArrow",
|
|
2377
|
+
remove: "cross",
|
|
2378
|
+
thumbsDown: "thumbsUp",
|
|
2379
|
+
};
|
|
2380
|
+
const getPaths = (name) => {
|
|
2381
|
+
let paths = [];
|
|
2382
|
+
if (name !== "truck") {
|
|
2383
|
+
const iconRecord = iconMap.icons;
|
|
2384
|
+
paths = secondaryIconMap[name]
|
|
2385
|
+
? iconRecord[secondaryIconMap[name]]
|
|
2386
|
+
: iconRecord[name];
|
|
2387
|
+
}
|
|
2388
|
+
else {
|
|
2389
|
+
paths = [];
|
|
2390
|
+
}
|
|
2391
|
+
const iconSize = name === "truck" ? 1024 : 24;
|
|
2392
|
+
const viewBox = `0 0 ${iconSize} ${iconSize}`;
|
|
2393
|
+
return { paths, iconSize, viewBox };
|
|
2394
|
+
};
|
|
2395
|
+
const tokenStyleToCss = (token) => {
|
|
2396
|
+
const tokenAsString = typeof token === "string" ? token : token === null || token === void 0 ? void 0 : token.toString();
|
|
2397
|
+
return ((tokenAsString === null || tokenAsString === void 0 ? void 0 : tokenAsString.replace(/\{/g, "var(--").replace(/\./g, "-").replace(/\}/g, ")")) || "");
|
|
2398
|
+
};
|
|
2399
|
+
const tokenStyleToJs = (token) => {
|
|
2400
|
+
const tokenKey = (token === null || token === void 0 ? void 0 : token.replace(/}/g, "").replace(/{/g, "").replace(/\./g, "-")) || "";
|
|
2401
|
+
return allColors[tokenKey] || "";
|
|
2402
|
+
};
|
|
2403
|
+
function buildSVGStyle(size, specialIconStyle, platform) {
|
|
2404
|
+
const platformIconStyles = getIconStyles(platform);
|
|
2405
|
+
const iconStyle = platformIconStyles.icon;
|
|
2406
|
+
const iconSizeStyle = iconSizes.tokens[size];
|
|
2407
|
+
const svgStyle = Object.assign(Object.assign(Object.assign({}, specialIconStyle), iconStyle), iconSizeStyle);
|
|
2408
|
+
return svgStyle;
|
|
2409
|
+
}
|
|
2410
|
+
function getIconStyles(platform) {
|
|
2411
|
+
if (platform === "web") {
|
|
2412
|
+
return webIconStyles;
|
|
2413
|
+
}
|
|
2414
|
+
return mobileIconStyles;
|
|
2415
|
+
}
|
|
2416
|
+
function buildPathStyle(color, specialIconStyle) {
|
|
2417
|
+
const colorStyle = color && iconColors.tokens[color] ? iconColors.tokens[color].value : "";
|
|
2418
|
+
const fallbackStyle = (typeof specialIconStyle.fill === "string" && specialIconStyle.fill) || "";
|
|
2419
|
+
return {
|
|
2420
|
+
fill: colorStyle || fallbackStyle,
|
|
2421
|
+
};
|
|
2422
|
+
}
|
|
2423
|
+
// eslint-disable-next-line max-statements
|
|
2424
|
+
function getIcon({ name, color, platform, size = "base", format = "css", }) {
|
|
2425
|
+
const platformIconStyles = getIconStyles(platform);
|
|
2426
|
+
const { paths, viewBox } = getPaths(name);
|
|
2427
|
+
let specialIconStyle = {};
|
|
2428
|
+
if (platformIconStyles[name]) {
|
|
2429
|
+
specialIconStyle = platformIconStyles[name];
|
|
2430
|
+
}
|
|
2431
|
+
const svgStyle = buildSVGStyle(size, specialIconStyle, platform);
|
|
2432
|
+
const pathStyle = buildPathStyle(color, specialIconStyle);
|
|
2433
|
+
if (format === "js") {
|
|
2434
|
+
pathStyle.fill = tokenStyleToJs(pathStyle.fill);
|
|
2435
|
+
svgStyle.fill = tokenStyleToJs(svgStyle.fill);
|
|
2436
|
+
}
|
|
2437
|
+
else {
|
|
2438
|
+
pathStyle.fill = tokenStyleToCss(pathStyle.fill);
|
|
2439
|
+
svgStyle.fill = tokenStyleToCss(svgStyle.fill);
|
|
2440
|
+
}
|
|
2441
|
+
if (platform === "mobile" && pathStyle.fill) {
|
|
2442
|
+
svgStyle.fill = pathStyle.fill;
|
|
2443
|
+
}
|
|
2444
|
+
return { svgStyle, pathStyle, paths, viewBox };
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
export { allColors, tokens_android as androidTokens, tokens_color as colors, tokens_dark as darkTokens, getIcon, iconColors, iconMap, iconSizes, tokens_ios as iosTokens, mobileIconStyles, tokens_semantic as semantic, tokens_web as tokens, webIconStyles, tokens_web as webTokens };
|