@synergy-design-system/tokens 1.0.0-main.4 → 1.0.0-main.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +126 -31
- package/dist/js/index.js +934 -0
- package/dist/scss/_tokens.scss +190 -0
- package/dist/{css → themes}/dark.css +36 -21
- package/dist/{css → themes}/light.css +36 -21
- package/package.json +9 -2
- package/src/figma-tokens/$metadata.json +13 -0
- package/src/figma-tokens/$themes.json +331 -0
- package/src/figma-tokens/_docs.json +1212 -0
- package/src/figma-tokens/color/dark.json +286 -0
- package/src/figma-tokens/color/light.json +286 -0
- package/src/figma-tokens/color/primitives.json +292 -0
- package/src/figma-tokens/globals.json +415 -0
- package/src/figma-tokens/semantic/button.json +18 -0
- package/src/figma-tokens/semantic/focus-ring.json +16 -0
- package/src/figma-tokens/semantic/input.json +272 -0
- package/src/figma-tokens/semantic/toggles.json +16 -0
package/dist/js/index.js
ADDED
|
@@ -0,0 +1,934 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synergy-design-system/tokens version 1.0.0-main.5
|
|
3
|
+
* SICK Global UX Foundation
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @type {string}
|
|
8
|
+
*/
|
|
9
|
+
export const SynFontSize2xSmall = 'var(--syn-font-size-2x-small)';
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* @type {string}
|
|
13
|
+
*/
|
|
14
|
+
export const SynFontSizeXSmall = 'var(--syn-font-size-x-small)';
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* @type {string}
|
|
18
|
+
*/
|
|
19
|
+
export const SynFontSizeSmall = 'var(--syn-font-size-small)';
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* @type {string}
|
|
23
|
+
*/
|
|
24
|
+
export const SynFontSizeMedium = 'var(--syn-font-size-medium)';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @type {string}
|
|
28
|
+
*/
|
|
29
|
+
export const SynFontSizeLarge = 'var(--syn-font-size-large)';
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @type {string}
|
|
33
|
+
*/
|
|
34
|
+
export const SynFontSizeXLarge = 'var(--syn-font-size-x-large)';
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @type {string}
|
|
38
|
+
*/
|
|
39
|
+
export const SynFontSize2xLarge = 'var(--syn-font-size-2x-large)';
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
*/
|
|
44
|
+
export const SynFontSize3xLarge = 'var(--syn-font-size-3x-large)';
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* @type {string}
|
|
48
|
+
*/
|
|
49
|
+
export const SynDurationExtraFast = 'var(--syn-duration-extra-fast)';
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* @type {string}
|
|
53
|
+
*/
|
|
54
|
+
export const SynDurationFast = 'var(--syn-duration-fast)';
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* @type {string}
|
|
58
|
+
*/
|
|
59
|
+
export const SynDurationNormal = 'var(--syn-duration-normal)';
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* @type {string}
|
|
63
|
+
*/
|
|
64
|
+
export const SynDurationSlow = 'var(--syn-duration-slow)';
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* @type {string}
|
|
68
|
+
*/
|
|
69
|
+
export const SynDurationExtraSlow = 'var(--syn-duration-extra-slow)';
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* @type {string}
|
|
73
|
+
*/
|
|
74
|
+
export const SynLineHeightDenser = 'var(--syn-line-height-denser)';
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* @type {string}
|
|
78
|
+
*/
|
|
79
|
+
export const SynLineHeightDense = 'var(--syn-line-height-dense)';
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* @type {string}
|
|
83
|
+
*/
|
|
84
|
+
export const SynLineHeightNormal = 'var(--syn-line-height-normal)';
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* @type {string}
|
|
88
|
+
*/
|
|
89
|
+
export const SynLineHeightLoose = 'var(--syn-line-height-loose)';
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @type {string}
|
|
93
|
+
*/
|
|
94
|
+
export const SynLineHeightLooser = 'var(--syn-line-height-looser)';
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @type {string}
|
|
98
|
+
*/
|
|
99
|
+
export const SynFontWeightNormal = 'var(--syn-font-weight-normal)';
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* @type {string}
|
|
103
|
+
*/
|
|
104
|
+
export const SynFontWeightSemibold = 'var(--syn-font-weight-semibold)';
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* @type {string}
|
|
108
|
+
*/
|
|
109
|
+
export const SynFontWeightBold = 'var(--syn-font-weight-bold)';
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* @type {string}
|
|
113
|
+
*/
|
|
114
|
+
export const SynShadowMedium = 'var(--syn-shadow-medium)';
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* @type {string}
|
|
118
|
+
*/
|
|
119
|
+
export const SynShadowLarge = 'var(--syn-shadow-large)';
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* @type {string}
|
|
123
|
+
*/
|
|
124
|
+
export const SynShadowXLarge = 'var(--syn-shadow-x-large)';
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @type {string}
|
|
128
|
+
*/
|
|
129
|
+
export const SynShadowOverflowDown = 'var(--syn-shadow-overflow-down)';
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* @type {string}
|
|
133
|
+
*/
|
|
134
|
+
export const SynShadowOverflowUp = 'var(--syn-shadow-overflow-up)';
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* @type {string}
|
|
138
|
+
*/
|
|
139
|
+
export const SynShadowOverflowLeft = 'var(--syn-shadow-overflow-left)';
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* @type {string}
|
|
143
|
+
*/
|
|
144
|
+
export const SynShadowOverflowRight = 'var(--syn-shadow-overflow-right)';
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* @type {string}
|
|
148
|
+
*/
|
|
149
|
+
export const SynFontSans = 'var(--syn-font-sans)';
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* @type {string}
|
|
153
|
+
*/
|
|
154
|
+
export const SynFontMono = 'var(--syn-font-mono)';
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* @type {string}
|
|
158
|
+
*/
|
|
159
|
+
export const SynSpacing4xSmall = 'var(--syn-spacing-4x-small)';
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* @type {string}
|
|
163
|
+
*/
|
|
164
|
+
export const SynSpacing3xSmall = 'var(--syn-spacing-3x-small)';
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* @type {string}
|
|
168
|
+
*/
|
|
169
|
+
export const SynSpacing2xSmall = 'var(--syn-spacing-2x-small)';
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* @type {string}
|
|
173
|
+
*/
|
|
174
|
+
export const SynSpacingXSmall = 'var(--syn-spacing-x-small)';
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* @type {string}
|
|
178
|
+
*/
|
|
179
|
+
export const SynSpacingSmall = 'var(--syn-spacing-small)';
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* @type {string}
|
|
183
|
+
*/
|
|
184
|
+
export const SynSpacingMedium = 'var(--syn-spacing-medium)';
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* @type {string}
|
|
188
|
+
*/
|
|
189
|
+
export const SynSpacingLarge = 'var(--syn-spacing-large)';
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* @type {string}
|
|
193
|
+
*/
|
|
194
|
+
export const SynSpacingXLarge = 'var(--syn-spacing-x-large)';
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* @type {string}
|
|
198
|
+
*/
|
|
199
|
+
export const SynSpacing2xLarge = 'var(--syn-spacing-2x-large)';
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* @type {string}
|
|
203
|
+
*/
|
|
204
|
+
export const SynSpacing3xLarge = 'var(--syn-spacing-3x-large)';
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* @type {string}
|
|
208
|
+
*/
|
|
209
|
+
export const SynSpacing4xLarge = 'var(--syn-spacing-4x-large)';
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* @type {string}
|
|
213
|
+
*/
|
|
214
|
+
export const SynSpacing5xLarge = 'var(--syn-spacing-5x-large)';
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* @type {string}
|
|
218
|
+
*/
|
|
219
|
+
export const SynBorderRadiusNone = 'var(--syn-border-radius-none)';
|
|
220
|
+
|
|
221
|
+
/**
|
|
222
|
+
* @type {string}
|
|
223
|
+
*/
|
|
224
|
+
export const SynBorderRadiusPill = 'var(--syn-border-radius-pill)';
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* @type {string}
|
|
228
|
+
*/
|
|
229
|
+
export const SynBorderRadiusCircle = 'var(--syn-border-radius-circle)';
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* @type {string}
|
|
233
|
+
*/
|
|
234
|
+
export const SynDimensionBase = 'var(--syn-dimension-base)';
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* @type {string}
|
|
238
|
+
*/
|
|
239
|
+
export const SynBorderWidthNone = 'var(--syn-border-width-none)';
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* @type {string}
|
|
243
|
+
*/
|
|
244
|
+
export const SynBorderWidthSmall = 'var(--syn-border-width-small)';
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @type {string}
|
|
248
|
+
*/
|
|
249
|
+
export const SynBorderWidthMedium = 'var(--syn-border-width-medium)';
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @type {string}
|
|
253
|
+
*/
|
|
254
|
+
export const SynBorderWidthLarge = 'var(--syn-border-width-large)';
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* @type {string}
|
|
258
|
+
*/
|
|
259
|
+
export const SynBorderWidthXLarge = 'var(--syn-border-width-x-large)';
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* @type {string}
|
|
263
|
+
*/
|
|
264
|
+
export const SynFontSansFallback = 'var(--syn-font-sans-fallback)';
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* @type {string}
|
|
268
|
+
*/
|
|
269
|
+
export const SynButtonFontSizeSmall = 'var(--syn-button-font-size-small)';
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* @type {string}
|
|
273
|
+
*/
|
|
274
|
+
export const SynButtonFontSizeMedium = 'var(--syn-button-font-size-medium)';
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* @type {string}
|
|
278
|
+
*/
|
|
279
|
+
export const SynButtonFontSizeLarge = 'var(--syn-button-font-size-large)';
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* @type {string}
|
|
283
|
+
*/
|
|
284
|
+
export const SynFocusRingColor = 'var(--syn-focus-ring-color)';
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* @type {string}
|
|
288
|
+
*/
|
|
289
|
+
export const SynFocusRingWidth = 'var(--syn-focus-ring-width)';
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* @type {string}
|
|
293
|
+
*/
|
|
294
|
+
export const SynFocusRingOffset = 'var(--syn-focus-ring-offset)';
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* @type {string}
|
|
298
|
+
*/
|
|
299
|
+
export const SynInputColor = 'var(--syn-input-color)';
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* @type {string}
|
|
303
|
+
*/
|
|
304
|
+
export const SynInputColorHover = 'var(--syn-input-color-hover)';
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* @type {string}
|
|
308
|
+
*/
|
|
309
|
+
export const SynInputColorFocus = 'var(--syn-input-color-focus)';
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* @type {string}
|
|
313
|
+
*/
|
|
314
|
+
export const SynInputColorDisabled = 'var(--syn-input-color-disabled)';
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* @type {string}
|
|
318
|
+
*/
|
|
319
|
+
export const SynInputBackgroundColor = 'var(--syn-input-background-color)';
|
|
320
|
+
|
|
321
|
+
/**
|
|
322
|
+
* @type {string}
|
|
323
|
+
*/
|
|
324
|
+
export const SynInputBackgroundColorHover = 'var(--syn-input-background-color-hover)';
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* @type {string}
|
|
328
|
+
*/
|
|
329
|
+
export const SynInputBackgroundColorFocus = 'var(--syn-input-background-color-focus)';
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* @type {string}
|
|
333
|
+
*/
|
|
334
|
+
export const SynInputBackgroundColorDisabled = 'var(--syn-input-background-color-disabled)';
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* @type {string}
|
|
338
|
+
*/
|
|
339
|
+
export const SynInputBorderColor = 'var(--syn-input-border-color)';
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* @type {string}
|
|
343
|
+
*/
|
|
344
|
+
export const SynInputBorderColorHover = 'var(--syn-input-border-color-hover)';
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* @type {string}
|
|
348
|
+
*/
|
|
349
|
+
export const SynInputBorderColorFocus = 'var(--syn-input-border-color-focus)';
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* @type {string}
|
|
353
|
+
*/
|
|
354
|
+
export const SynInputBorderColorDisables = 'var(--syn-input-border-color-disables)';
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* @type {string}
|
|
358
|
+
*/
|
|
359
|
+
export const SynInputBorderRadiusSmall = 'var(--syn-input-border-radius-small)';
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* @type {string}
|
|
363
|
+
*/
|
|
364
|
+
export const SynInputBorderRadiusMedium = 'var(--syn-input-border-radius-medium)';
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* @type {string}
|
|
368
|
+
*/
|
|
369
|
+
export const SynInputBorderRadiusLarge = 'var(--syn-input-border-radius-large)';
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* @type {string}
|
|
373
|
+
*/
|
|
374
|
+
export const SynInputBorderColorFocusError = 'var(--syn-input-border-color-focus-error)';
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* @type {string}
|
|
378
|
+
*/
|
|
379
|
+
export const SynInputWidth = 'var(--syn-input-width)';
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* @type {string}
|
|
383
|
+
*/
|
|
384
|
+
export const SynInputIconColor = 'var(--syn-input-icon-color)';
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* @type {string}
|
|
388
|
+
*/
|
|
389
|
+
export const SynInputIconColorHover = 'var(--syn-input-icon-color-hover)';
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* @type {string}
|
|
393
|
+
*/
|
|
394
|
+
export const SynInputIconColorFocus = 'var(--syn-input-icon-color-focus)';
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* @type {string}
|
|
398
|
+
*/
|
|
399
|
+
export const SynInputIconIconClearableColor = 'var(--syn-input-icon-icon-clearable-color)';
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* @type {string}
|
|
403
|
+
*/
|
|
404
|
+
export const SynInputIconIconClearableColorHover = 'var(--syn-input-icon-icon-clearable-color-hover)';
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* @type {string}
|
|
408
|
+
*/
|
|
409
|
+
export const SynInputIconIconClearableColorFocus = 'var(--syn-input-icon-icon-clearable-color-focus)';
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* @type {string}
|
|
413
|
+
*/
|
|
414
|
+
export const SynInputPlaceholderColor = 'var(--syn-input-placeholder-color)';
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* @type {string}
|
|
418
|
+
*/
|
|
419
|
+
export const SynInputPlaceholderColorDisabled = 'var(--syn-input-placeholder-color-disabled)';
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* @type {string}
|
|
423
|
+
*/
|
|
424
|
+
export const SynInputRequiredContent = 'var(--syn-input-required-content)';
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* @type {string}
|
|
428
|
+
*/
|
|
429
|
+
export const SynInputRequiredContentOffset = 'var(--syn-input-required-content-offset)';
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @type {string}
|
|
433
|
+
*/
|
|
434
|
+
export const SynInputLabelColor = 'var(--syn-input-label-color)';
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* @type {string}
|
|
438
|
+
*/
|
|
439
|
+
export const SynInputLabelFontSizeSmall = 'var(--syn-input-label-font-size-small)';
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* @type {string}
|
|
443
|
+
*/
|
|
444
|
+
export const SynInputLabelFontSizeMedium = 'var(--syn-input-label-font-size-medium)';
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* @type {string}
|
|
448
|
+
*/
|
|
449
|
+
export const SynInputLabelFontSizeLarge = 'var(--syn-input-label-font-size-large)';
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* @type {string}
|
|
453
|
+
*/
|
|
454
|
+
export const SynInputSpacingSmall = 'var(--syn-input-spacing-small)';
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* @type {string}
|
|
458
|
+
*/
|
|
459
|
+
export const SynInputSpacingMedium = 'var(--syn-input-spacing-medium)';
|
|
460
|
+
|
|
461
|
+
/**
|
|
462
|
+
* @type {string}
|
|
463
|
+
*/
|
|
464
|
+
export const SynInputSpacingLarge = 'var(--syn-input-spacing-large)';
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* @type {string}
|
|
468
|
+
*/
|
|
469
|
+
export const SynInputFocusRingColor = 'var(--syn-input-focus-ring-color)';
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* @type {string}
|
|
473
|
+
*/
|
|
474
|
+
export const SynInputFocusRingOffset = 'var(--syn-input-focus-ring-offset)';
|
|
475
|
+
|
|
476
|
+
/**
|
|
477
|
+
* @type {string}
|
|
478
|
+
*/
|
|
479
|
+
export const SynInputFocusRingError = 'var(--syn-input-focus-ring-error)';
|
|
480
|
+
|
|
481
|
+
/**
|
|
482
|
+
* @type {string}
|
|
483
|
+
*/
|
|
484
|
+
export const SynInputDisabledOpacity = 'var(--syn-input-disabled-opacity)';
|
|
485
|
+
|
|
486
|
+
/**
|
|
487
|
+
* @type {string}
|
|
488
|
+
*/
|
|
489
|
+
export const SynInputReadonlyBackgroundColor = 'var(--syn-input-readonly-background-color)';
|
|
490
|
+
|
|
491
|
+
/**
|
|
492
|
+
* @type {string}
|
|
493
|
+
*/
|
|
494
|
+
export const SynInputReadonlyBackgroundColorHover = 'var(--syn-input-readonly-background-color-hover)';
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
* @type {string}
|
|
498
|
+
*/
|
|
499
|
+
export const SynInputReadonlyBackgroundColorFocus = 'var(--syn-input-readonly-background-color-focus)';
|
|
500
|
+
|
|
501
|
+
/**
|
|
502
|
+
* @type {string}
|
|
503
|
+
*/
|
|
504
|
+
export const SynInputReadonlyBackgroundColorDisabled = 'var(--syn-input-readonly-background-color-disabled)';
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* @type {string}
|
|
508
|
+
*/
|
|
509
|
+
export const SynInputHelpTextColor = 'var(--syn-input-help-text-color)';
|
|
510
|
+
|
|
511
|
+
/**
|
|
512
|
+
* @type {string}
|
|
513
|
+
*/
|
|
514
|
+
export const SynInputHelpTextColorError = 'var(--syn-input-help-text-color-error)';
|
|
515
|
+
|
|
516
|
+
/**
|
|
517
|
+
* @type {string}
|
|
518
|
+
*/
|
|
519
|
+
export const SynInputHelpTextFontSizeSmall = 'var(--syn-input-help-text-font-size-small)';
|
|
520
|
+
|
|
521
|
+
/**
|
|
522
|
+
* @type {string}
|
|
523
|
+
*/
|
|
524
|
+
export const SynInputHelpTextFontSizeMedium = 'var(--syn-input-help-text-font-size-medium)';
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* @type {string}
|
|
528
|
+
*/
|
|
529
|
+
export const SynInputHelpTextFontSizeLarge = 'var(--syn-input-help-text-font-size-large)';
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* @type {string}
|
|
533
|
+
*/
|
|
534
|
+
export const SynInputHeightSmall = 'var(--syn-input-height-small)';
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* @type {string}
|
|
538
|
+
*/
|
|
539
|
+
export const SynInputHeightMedium = 'var(--syn-input-height-medium)';
|
|
540
|
+
|
|
541
|
+
/**
|
|
542
|
+
* @type {string}
|
|
543
|
+
*/
|
|
544
|
+
export const SynInputHeightLarge = 'var(--syn-input-height-large)';
|
|
545
|
+
|
|
546
|
+
/**
|
|
547
|
+
* @type {string}
|
|
548
|
+
*/
|
|
549
|
+
export const SynInputReadonlyColor = 'var(--syn-input-readonly-color)';
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* @type {string}
|
|
553
|
+
*/
|
|
554
|
+
export const SynInputReadonlyColorDisabled = 'var(--syn-input-readonly-color-disabled)';
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* @type {string}
|
|
558
|
+
*/
|
|
559
|
+
export const SynInputReadonlyColorHover = 'var(--syn-input-readonly-color-hover)';
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* @type {string}
|
|
563
|
+
*/
|
|
564
|
+
export const SynInputReadonlyColorFocus = 'var(--syn-input-readonly-color-focus)';
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* @type {string}
|
|
568
|
+
*/
|
|
569
|
+
export const SynInputFontSizeSmall = 'var(--syn-input-font-size-small)';
|
|
570
|
+
|
|
571
|
+
/**
|
|
572
|
+
* @type {string}
|
|
573
|
+
*/
|
|
574
|
+
export const SynInputFontSizeMedium = 'var(--syn-input-font-size-medium)';
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* @type {string}
|
|
578
|
+
*/
|
|
579
|
+
export const SynInputFontSizeLarge = 'var(--syn-input-font-size-large)';
|
|
580
|
+
|
|
581
|
+
/**
|
|
582
|
+
* @type {string}
|
|
583
|
+
*/
|
|
584
|
+
export const SynSizeSmall = 'var(--syn-size-small)';
|
|
585
|
+
|
|
586
|
+
/**
|
|
587
|
+
* @type {string}
|
|
588
|
+
*/
|
|
589
|
+
export const SynSizeMedium = 'var(--syn-size-medium)';
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* @type {string}
|
|
593
|
+
*/
|
|
594
|
+
export const SynSizeLarge = 'var(--syn-size-large)';
|
|
595
|
+
|
|
596
|
+
/**
|
|
597
|
+
* @type {string}
|
|
598
|
+
*/
|
|
599
|
+
export const SynColorPrimary50 = 'var(--syn-color-primary-50)';
|
|
600
|
+
|
|
601
|
+
/**
|
|
602
|
+
* @type {string}
|
|
603
|
+
*/
|
|
604
|
+
export const SynColorPrimary100 = 'var(--syn-color-primary-100)';
|
|
605
|
+
|
|
606
|
+
/**
|
|
607
|
+
* @type {string}
|
|
608
|
+
*/
|
|
609
|
+
export const SynColorPrimary200 = 'var(--syn-color-primary-200)';
|
|
610
|
+
|
|
611
|
+
/**
|
|
612
|
+
* @type {string}
|
|
613
|
+
*/
|
|
614
|
+
export const SynColorPrimary300 = 'var(--syn-color-primary-300)';
|
|
615
|
+
|
|
616
|
+
/**
|
|
617
|
+
* @type {string}
|
|
618
|
+
*/
|
|
619
|
+
export const SynColorPrimary400 = 'var(--syn-color-primary-400)';
|
|
620
|
+
|
|
621
|
+
/**
|
|
622
|
+
* @type {string}
|
|
623
|
+
*/
|
|
624
|
+
export const SynColorPrimary500 = 'var(--syn-color-primary-500)';
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* @type {string}
|
|
628
|
+
*/
|
|
629
|
+
export const SynColorPrimary600 = 'var(--syn-color-primary-600)';
|
|
630
|
+
|
|
631
|
+
/**
|
|
632
|
+
* @type {string}
|
|
633
|
+
*/
|
|
634
|
+
export const SynColorPrimary700 = 'var(--syn-color-primary-700)';
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* @type {string}
|
|
638
|
+
*/
|
|
639
|
+
export const SynColorPrimary800 = 'var(--syn-color-primary-800)';
|
|
640
|
+
|
|
641
|
+
/**
|
|
642
|
+
* @type {string}
|
|
643
|
+
*/
|
|
644
|
+
export const SynColorPrimary900 = 'var(--syn-color-primary-900)';
|
|
645
|
+
|
|
646
|
+
/**
|
|
647
|
+
* @type {string}
|
|
648
|
+
*/
|
|
649
|
+
export const SynColorPrimary950 = 'var(--syn-color-primary-950)';
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* @type {string}
|
|
653
|
+
*/
|
|
654
|
+
export const SynColorSuccess50 = 'var(--syn-color-success-50)';
|
|
655
|
+
|
|
656
|
+
/**
|
|
657
|
+
* @type {string}
|
|
658
|
+
*/
|
|
659
|
+
export const SynColorSuccess100 = 'var(--syn-color-success-100)';
|
|
660
|
+
|
|
661
|
+
/**
|
|
662
|
+
* @type {string}
|
|
663
|
+
*/
|
|
664
|
+
export const SynColorSuccess200 = 'var(--syn-color-success-200)';
|
|
665
|
+
|
|
666
|
+
/**
|
|
667
|
+
* @type {string}
|
|
668
|
+
*/
|
|
669
|
+
export const SynColorSuccess300 = 'var(--syn-color-success-300)';
|
|
670
|
+
|
|
671
|
+
/**
|
|
672
|
+
* @type {string}
|
|
673
|
+
*/
|
|
674
|
+
export const SynColorSuccess400 = 'var(--syn-color-success-400)';
|
|
675
|
+
|
|
676
|
+
/**
|
|
677
|
+
* @type {string}
|
|
678
|
+
*/
|
|
679
|
+
export const SynColorSuccess500 = 'var(--syn-color-success-500)';
|
|
680
|
+
|
|
681
|
+
/**
|
|
682
|
+
* @type {string}
|
|
683
|
+
*/
|
|
684
|
+
export const SynColorSuccess600 = 'var(--syn-color-success-600)';
|
|
685
|
+
|
|
686
|
+
/**
|
|
687
|
+
* @type {string}
|
|
688
|
+
*/
|
|
689
|
+
export const SynColorSuccess700 = 'var(--syn-color-success-700)';
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* @type {string}
|
|
693
|
+
*/
|
|
694
|
+
export const SynColorSuccess800 = 'var(--syn-color-success-800)';
|
|
695
|
+
|
|
696
|
+
/**
|
|
697
|
+
* @type {string}
|
|
698
|
+
*/
|
|
699
|
+
export const SynColorSuccess900 = 'var(--syn-color-success-900)';
|
|
700
|
+
|
|
701
|
+
/**
|
|
702
|
+
* @type {string}
|
|
703
|
+
*/
|
|
704
|
+
export const SynColorSuccess950 = 'var(--syn-color-success-950)';
|
|
705
|
+
|
|
706
|
+
/**
|
|
707
|
+
* @type {string}
|
|
708
|
+
*/
|
|
709
|
+
export const SynColorWarning50 = 'var(--syn-color-warning-50)';
|
|
710
|
+
|
|
711
|
+
/**
|
|
712
|
+
* @type {string}
|
|
713
|
+
*/
|
|
714
|
+
export const SynColorWarning100 = 'var(--syn-color-warning-100)';
|
|
715
|
+
|
|
716
|
+
/**
|
|
717
|
+
* @type {string}
|
|
718
|
+
*/
|
|
719
|
+
export const SynColorWarning200 = 'var(--syn-color-warning-200)';
|
|
720
|
+
|
|
721
|
+
/**
|
|
722
|
+
* @type {string}
|
|
723
|
+
*/
|
|
724
|
+
export const SynColorWarning300 = 'var(--syn-color-warning-300)';
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* @type {string}
|
|
728
|
+
*/
|
|
729
|
+
export const SynColorWarning400 = 'var(--syn-color-warning-400)';
|
|
730
|
+
|
|
731
|
+
/**
|
|
732
|
+
* @type {string}
|
|
733
|
+
*/
|
|
734
|
+
export const SynColorWarning500 = 'var(--syn-color-warning-500)';
|
|
735
|
+
|
|
736
|
+
/**
|
|
737
|
+
* @type {string}
|
|
738
|
+
*/
|
|
739
|
+
export const SynColorWarning600 = 'var(--syn-color-warning-600)';
|
|
740
|
+
|
|
741
|
+
/**
|
|
742
|
+
* @type {string}
|
|
743
|
+
*/
|
|
744
|
+
export const SynColorWarning700 = 'var(--syn-color-warning-700)';
|
|
745
|
+
|
|
746
|
+
/**
|
|
747
|
+
* @type {string}
|
|
748
|
+
*/
|
|
749
|
+
export const SynColorWarning800 = 'var(--syn-color-warning-800)';
|
|
750
|
+
|
|
751
|
+
/**
|
|
752
|
+
* @type {string}
|
|
753
|
+
*/
|
|
754
|
+
export const SynColorWarning900 = 'var(--syn-color-warning-900)';
|
|
755
|
+
|
|
756
|
+
/**
|
|
757
|
+
* @type {string}
|
|
758
|
+
*/
|
|
759
|
+
export const SynColorWarning950 = 'var(--syn-color-warning-950)';
|
|
760
|
+
|
|
761
|
+
/**
|
|
762
|
+
* @type {string}
|
|
763
|
+
*/
|
|
764
|
+
export const SynColorError50 = 'var(--syn-color-error-50)';
|
|
765
|
+
|
|
766
|
+
/**
|
|
767
|
+
* @type {string}
|
|
768
|
+
*/
|
|
769
|
+
export const SynColorError100 = 'var(--syn-color-error-100)';
|
|
770
|
+
|
|
771
|
+
/**
|
|
772
|
+
* @type {string}
|
|
773
|
+
*/
|
|
774
|
+
export const SynColorError200 = 'var(--syn-color-error-200)';
|
|
775
|
+
|
|
776
|
+
/**
|
|
777
|
+
* @type {string}
|
|
778
|
+
*/
|
|
779
|
+
export const SynColorError300 = 'var(--syn-color-error-300)';
|
|
780
|
+
|
|
781
|
+
/**
|
|
782
|
+
* @type {string}
|
|
783
|
+
*/
|
|
784
|
+
export const SynColorError400 = 'var(--syn-color-error-400)';
|
|
785
|
+
|
|
786
|
+
/**
|
|
787
|
+
* @type {string}
|
|
788
|
+
*/
|
|
789
|
+
export const SynColorError500 = 'var(--syn-color-error-500)';
|
|
790
|
+
|
|
791
|
+
/**
|
|
792
|
+
* @type {string}
|
|
793
|
+
*/
|
|
794
|
+
export const SynColorError600 = 'var(--syn-color-error-600)';
|
|
795
|
+
|
|
796
|
+
/**
|
|
797
|
+
* @type {string}
|
|
798
|
+
*/
|
|
799
|
+
export const SynColorError700 = 'var(--syn-color-error-700)';
|
|
800
|
+
|
|
801
|
+
/**
|
|
802
|
+
* @type {string}
|
|
803
|
+
*/
|
|
804
|
+
export const SynColorError800 = 'var(--syn-color-error-800)';
|
|
805
|
+
|
|
806
|
+
/**
|
|
807
|
+
* @type {string}
|
|
808
|
+
*/
|
|
809
|
+
export const SynColorError900 = 'var(--syn-color-error-900)';
|
|
810
|
+
|
|
811
|
+
/**
|
|
812
|
+
* @type {string}
|
|
813
|
+
*/
|
|
814
|
+
export const SynColorError950 = 'var(--syn-color-error-950)';
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* @type {string}
|
|
818
|
+
*/
|
|
819
|
+
export const SynColorAccent50 = 'var(--syn-color-accent-50)';
|
|
820
|
+
|
|
821
|
+
/**
|
|
822
|
+
* @type {string}
|
|
823
|
+
*/
|
|
824
|
+
export const SynColorAccent100 = 'var(--syn-color-accent-100)';
|
|
825
|
+
|
|
826
|
+
/**
|
|
827
|
+
* @type {string}
|
|
828
|
+
*/
|
|
829
|
+
export const SynColorAccent200 = 'var(--syn-color-accent-200)';
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* @type {string}
|
|
833
|
+
*/
|
|
834
|
+
export const SynColorAccent300 = 'var(--syn-color-accent-300)';
|
|
835
|
+
|
|
836
|
+
/**
|
|
837
|
+
* @type {string}
|
|
838
|
+
*/
|
|
839
|
+
export const SynColorAccent400 = 'var(--syn-color-accent-400)';
|
|
840
|
+
|
|
841
|
+
/**
|
|
842
|
+
* @type {string}
|
|
843
|
+
*/
|
|
844
|
+
export const SynColorAccent500 = 'var(--syn-color-accent-500)';
|
|
845
|
+
|
|
846
|
+
/**
|
|
847
|
+
* @type {string}
|
|
848
|
+
*/
|
|
849
|
+
export const SynColorAccent600 = 'var(--syn-color-accent-600)';
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* @type {string}
|
|
853
|
+
*/
|
|
854
|
+
export const SynColorAccent700 = 'var(--syn-color-accent-700)';
|
|
855
|
+
|
|
856
|
+
/**
|
|
857
|
+
* @type {string}
|
|
858
|
+
*/
|
|
859
|
+
export const SynColorAccent800 = 'var(--syn-color-accent-800)';
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* @type {string}
|
|
863
|
+
*/
|
|
864
|
+
export const SynColorAccent900 = 'var(--syn-color-accent-900)';
|
|
865
|
+
|
|
866
|
+
/**
|
|
867
|
+
* @type {string}
|
|
868
|
+
*/
|
|
869
|
+
export const SynColorAccent950 = 'var(--syn-color-accent-950)';
|
|
870
|
+
|
|
871
|
+
/**
|
|
872
|
+
* @type {string}
|
|
873
|
+
*/
|
|
874
|
+
export const SynColorNeutral0 = 'var(--syn-color-neutral-0)';
|
|
875
|
+
|
|
876
|
+
/**
|
|
877
|
+
* @type {string}
|
|
878
|
+
*/
|
|
879
|
+
export const SynColorNeutral50 = 'var(--syn-color-neutral-50)';
|
|
880
|
+
|
|
881
|
+
/**
|
|
882
|
+
* @type {string}
|
|
883
|
+
*/
|
|
884
|
+
export const SynColorNeutral100 = 'var(--syn-color-neutral-100)';
|
|
885
|
+
|
|
886
|
+
/**
|
|
887
|
+
* @type {string}
|
|
888
|
+
*/
|
|
889
|
+
export const SynColorNeutral200 = 'var(--syn-color-neutral-200)';
|
|
890
|
+
|
|
891
|
+
/**
|
|
892
|
+
* @type {string}
|
|
893
|
+
*/
|
|
894
|
+
export const SynColorNeutral300 = 'var(--syn-color-neutral-300)';
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* @type {string}
|
|
898
|
+
*/
|
|
899
|
+
export const SynColorNeutral400 = 'var(--syn-color-neutral-400)';
|
|
900
|
+
|
|
901
|
+
/**
|
|
902
|
+
* @type {string}
|
|
903
|
+
*/
|
|
904
|
+
export const SynColorNeutral500 = 'var(--syn-color-neutral-500)';
|
|
905
|
+
|
|
906
|
+
/**
|
|
907
|
+
* @type {string}
|
|
908
|
+
*/
|
|
909
|
+
export const SynColorNeutral600 = 'var(--syn-color-neutral-600)';
|
|
910
|
+
|
|
911
|
+
/**
|
|
912
|
+
* @type {string}
|
|
913
|
+
*/
|
|
914
|
+
export const SynColorNeutral700 = 'var(--syn-color-neutral-700)';
|
|
915
|
+
|
|
916
|
+
/**
|
|
917
|
+
* @type {string}
|
|
918
|
+
*/
|
|
919
|
+
export const SynColorNeutral800 = 'var(--syn-color-neutral-800)';
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* @type {string}
|
|
923
|
+
*/
|
|
924
|
+
export const SynColorNeutral900 = 'var(--syn-color-neutral-900)';
|
|
925
|
+
|
|
926
|
+
/**
|
|
927
|
+
* @type {string}
|
|
928
|
+
*/
|
|
929
|
+
export const SynColorNeutral950 = 'var(--syn-color-neutral-950)';
|
|
930
|
+
|
|
931
|
+
/**
|
|
932
|
+
* @type {string}
|
|
933
|
+
*/
|
|
934
|
+
export const SynColorNeutral1000 = 'var(--syn-color-neutral-1000)';
|