@inversestudio/design-tokens 1.0.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.
@@ -0,0 +1,441 @@
1
+ /**
2
+ * IDS Design Tokens - light Theme
3
+ * Generated by Style Dictionary
4
+ * Do not edit directly
5
+ */
6
+
7
+ export interface IDSTokens {
8
+ ids: {
9
+ spacing: {
10
+ '0_13x': string;
11
+ '0_25x': string;
12
+ '0_38x': string;
13
+ '0_5x': string;
14
+ '0_75x': string;
15
+ '1x': string;
16
+ '1_25x': string;
17
+ '1_5x': string;
18
+ '2x': string;
19
+ '2_5x': string;
20
+ };
21
+ dimension: {
22
+ element: {
23
+ '1x': string;
24
+ '1_5x': string;
25
+ '2x': string;
26
+ '3x': string;
27
+ '3_5x': string;
28
+ '4_5x': string;
29
+ };
30
+ icon: {
31
+ '1x': string;
32
+ '1_25x': string;
33
+ '1_5x': string;
34
+ };
35
+ };
36
+ core: {
37
+ color: {
38
+ neutral: {
39
+ '50': string;
40
+ '100': string;
41
+ '200': string;
42
+ '300': string;
43
+ '400': string;
44
+ '500': string;
45
+ '600': string;
46
+ '700': string;
47
+ '800': string;
48
+ '900': string;
49
+ '950': string;
50
+ '1000': string;
51
+ };
52
+ blue: {
53
+ '50': string;
54
+ '100': string;
55
+ '200': string;
56
+ '300': string;
57
+ '400': string;
58
+ '500': string;
59
+ '600': string;
60
+ '700': string;
61
+ '800': string;
62
+ '900': string;
63
+ '950': string;
64
+ '1000': string;
65
+ };
66
+ red: {
67
+ '50': string;
68
+ '100': string;
69
+ '200': string;
70
+ '300': string;
71
+ '400': string;
72
+ '500': string;
73
+ '600': string;
74
+ '700': string;
75
+ '800': string;
76
+ '900': string;
77
+ '950': string;
78
+ '1000': string;
79
+ };
80
+ green: {
81
+ '50': string;
82
+ '100': string;
83
+ '200': string;
84
+ '300': string;
85
+ '400': string;
86
+ '500': string;
87
+ '600': string;
88
+ '700': string;
89
+ '800': string;
90
+ '900': string;
91
+ '950': string;
92
+ '1000': string;
93
+ };
94
+ transparent: string;
95
+ };
96
+ 'font-size': {
97
+ base: string;
98
+ };
99
+ font: string;
100
+ lineHeight: {
101
+ base: string;
102
+ };
103
+ sizing: {
104
+ REM: string;
105
+ base: string;
106
+ };
107
+ borderRadius: {
108
+ base: string;
109
+ };
110
+ borderWidth: {
111
+ slim: string;
112
+ thick: string;
113
+ };
114
+ };
115
+ typography: {
116
+ label: {
117
+ '1x': string;
118
+ };
119
+ };
120
+ borderRadius: {
121
+ '0_25x': string;
122
+ full: string;
123
+ };
124
+ border: {
125
+ focused: string;
126
+ primary: string;
127
+ disabled: string;
128
+ transparent: string;
129
+ };
130
+ color: {
131
+ element: {
132
+ primary: {
133
+ default: string;
134
+ hover: string;
135
+ active: string;
136
+ onPrimary: string;
137
+ };
138
+ secondary: {
139
+ default: string;
140
+ hover: string;
141
+ active: string;
142
+ onSecondary: string;
143
+ };
144
+ primaryInverted: {
145
+ default: string;
146
+ hover: string;
147
+ active: string;
148
+ onPrimaryAccent: string;
149
+ };
150
+ primaryAccentInverted: {
151
+ default: string;
152
+ hover: string;
153
+ active: string;
154
+ onPrimaryAccentInverted: string;
155
+ };
156
+ disabled: string;
157
+ onDisabled: string;
158
+ };
159
+ border: {
160
+ primary: string;
161
+ disabled: string;
162
+ muted: string;
163
+ subtle: string;
164
+ focus: string;
165
+ };
166
+ };
167
+ };
168
+ }
169
+
170
+ export const tokens: IDSTokens = {
171
+ ids: {
172
+ spacing: {
173
+ '0_13x': '2px',
174
+ '0_25x': '4px',
175
+ '0_38x': '6px',
176
+ '0_5x': '8px',
177
+ '0_75x': '12px',
178
+ '1x': '16px',
179
+ '1_25x': '20px',
180
+ '1_5x': '24px',
181
+ '2x': '32px',
182
+ '2_5x': '40px'
183
+ },
184
+ dimension: {
185
+ element: {
186
+ '1x': '16px',
187
+ '1_5x': '24px',
188
+ '2x': '32px',
189
+ '3x': '48px',
190
+ '3_5x': '56px',
191
+ '4_5x': '72px'
192
+ },
193
+ icon: {
194
+ '1x': '16px',
195
+ '1_25x': '20px',
196
+ '1_5x': '24px'
197
+ }
198
+ },
199
+ core: {
200
+ color: {
201
+ neutral: {
202
+ '50': '#ffffff',
203
+ '100': '#fafafb',
204
+ '200': '#f5f5f8',
205
+ '300': '#ebebef',
206
+ '400': '#e0e1e4',
207
+ '500': '#c5c6cb',
208
+ '600': '#adaeb3',
209
+ '700': '#8e9099',
210
+ '800': '#707784',
211
+ '900': '#4d5057',
212
+ '950': '#2d2f35',
213
+ '1000': '#101114'
214
+ },
215
+ blue: {
216
+ '50': '#e6edfb',
217
+ '100': '#d1def8',
218
+ '200': '#c3d8ff',
219
+ '300': '#a2bae9',
220
+ '400': '#7eaaff',
221
+ '500': '#5c8fe8',
222
+ '600': '#4a7ad4',
223
+ '700': '#3a64b8',
224
+ '800': '#27447c',
225
+ '900': '#1e3560',
226
+ '950': '#142442',
227
+ '1000': '#0b1526'
228
+ },
229
+ red: {
230
+ '50': '#fef2f2',
231
+ '100': '#fee2e2',
232
+ '200': '#fecaca',
233
+ '300': '#fca5a5',
234
+ '400': '#f87171',
235
+ '500': '#ef4444',
236
+ '600': '#dc2626',
237
+ '700': '#b91c1c',
238
+ '800': '#991b1b',
239
+ '900': '#7f1d1d',
240
+ '950': '#5c1414',
241
+ '1000': '#350a0a'
242
+ },
243
+ green: {
244
+ '50': '#ecfdf5',
245
+ '100': '#d1fae5',
246
+ '200': '#a7f3d0',
247
+ '300': '#6ee7b7',
248
+ '400': '#34d399',
249
+ '500': '#10b981',
250
+ '600': '#059669',
251
+ '700': '#047857',
252
+ '800': '#065f46',
253
+ '900': '#064e3b',
254
+ '950': '#043b2c',
255
+ '1000': '#022419'
256
+ },
257
+ transparent: '#00000000'
258
+ },
259
+ 'font-size': {
260
+ base: '16px'
261
+ },
262
+ font: 'Tomato Grotesk',
263
+ lineHeight: {
264
+ base: '16px *1'
265
+ },
266
+ sizing: {
267
+ REM: '16px',
268
+ base: '16px'
269
+ },
270
+ borderRadius: {
271
+ base: '16px'
272
+ },
273
+ borderWidth: {
274
+ slim: '1px',
275
+ thick: '2px'
276
+ }
277
+ },
278
+ typography: {
279
+ label: {
280
+ '1x': '[object Object]'
281
+ }
282
+ },
283
+ borderRadius: {
284
+ '0_25x': '4px',
285
+ full: '1600px'
286
+ },
287
+ border: {
288
+ focused: '[object Object]',
289
+ primary: '[object Object]',
290
+ disabled: '[object Object]',
291
+ transparent: '[object Object]'
292
+ },
293
+ color: {
294
+ element: {
295
+ primary: {
296
+ default: '#4d5057',
297
+ hover: '#4d5057',
298
+ active: '#101114',
299
+ onPrimary: '#ffffff'
300
+ },
301
+ secondary: {
302
+ default: '#00000000',
303
+ hover: '#e6edfb',
304
+ active: '#d1def8',
305
+ onSecondary: '#2d2f35'
306
+ },
307
+ primaryInverted: {
308
+ default: '#ffffff',
309
+ hover: '#fafafb',
310
+ active: '#f5f5f8',
311
+ onPrimaryAccent: '#101114'
312
+ },
313
+ primaryAccentInverted: {
314
+ default: '#101114',
315
+ hover: '#2d2f35',
316
+ active: '#4d5057',
317
+ onPrimaryAccentInverted: '#ffffff'
318
+ },
319
+ disabled: '#adaeb3',
320
+ onDisabled: '#707784'
321
+ },
322
+ border: {
323
+ primary: '#2d2f35',
324
+ disabled: '#adaeb3',
325
+ muted: '#e0e1e4',
326
+ subtle: '#f5f5f8',
327
+ focus: '#7eaaff'
328
+ }
329
+ }
330
+ }
331
+ };
332
+
333
+ // Flat token exports
334
+ export const idsSpacing013x = '2px';
335
+ export const idsSpacing025x = '4px';
336
+ export const idsSpacing038x = '6px';
337
+ export const idsSpacing05x = '8px';
338
+ export const idsSpacing075x = '12px';
339
+ export const idsSpacing1x = '16px';
340
+ export const idsSpacing125x = '20px';
341
+ export const idsSpacing15x = '24px';
342
+ export const idsSpacing2x = '32px';
343
+ export const idsSpacing25x = '40px';
344
+ export const idsDimensionElement1x = '16px';
345
+ export const idsDimensionElement15x = '24px';
346
+ export const idsDimensionElement2x = '32px';
347
+ export const idsDimensionElement3x = '48px';
348
+ export const idsDimensionElement35x = '56px';
349
+ export const idsDimensionElement45x = '72px';
350
+ export const idsDimensionIcon1x = '16px';
351
+ export const idsDimensionIcon125x = '20px';
352
+ export const idsDimensionIcon15x = '24px';
353
+ export const idsCoreColorNeutral50 = '#ffffff';
354
+ export const idsCoreColorNeutral100 = '#fafafb';
355
+ export const idsCoreColorNeutral200 = '#f5f5f8';
356
+ export const idsCoreColorNeutral300 = '#ebebef';
357
+ export const idsCoreColorNeutral400 = '#e0e1e4';
358
+ export const idsCoreColorNeutral500 = '#c5c6cb';
359
+ export const idsCoreColorNeutral600 = '#adaeb3';
360
+ export const idsCoreColorNeutral700 = '#8e9099';
361
+ export const idsCoreColorNeutral800 = '#707784';
362
+ export const idsCoreColorNeutral900 = '#4d5057';
363
+ export const idsCoreColorNeutral950 = '#2d2f35';
364
+ export const idsCoreColorNeutral1000 = '#101114';
365
+ export const idsCoreColorBlue50 = '#e6edfb';
366
+ export const idsCoreColorBlue100 = '#d1def8';
367
+ export const idsCoreColorBlue200 = '#c3d8ff';
368
+ export const idsCoreColorBlue300 = '#a2bae9';
369
+ export const idsCoreColorBlue400 = '#7eaaff';
370
+ export const idsCoreColorBlue500 = '#5c8fe8';
371
+ export const idsCoreColorBlue600 = '#4a7ad4';
372
+ export const idsCoreColorBlue700 = '#3a64b8';
373
+ export const idsCoreColorBlue800 = '#27447c';
374
+ export const idsCoreColorBlue900 = '#1e3560';
375
+ export const idsCoreColorBlue950 = '#142442';
376
+ export const idsCoreColorBlue1000 = '#0b1526';
377
+ export const idsCoreColorRed50 = '#fef2f2';
378
+ export const idsCoreColorRed100 = '#fee2e2';
379
+ export const idsCoreColorRed200 = '#fecaca';
380
+ export const idsCoreColorRed300 = '#fca5a5';
381
+ export const idsCoreColorRed400 = '#f87171';
382
+ export const idsCoreColorRed500 = '#ef4444';
383
+ export const idsCoreColorRed600 = '#dc2626';
384
+ export const idsCoreColorRed700 = '#b91c1c';
385
+ export const idsCoreColorRed800 = '#991b1b';
386
+ export const idsCoreColorRed900 = '#7f1d1d';
387
+ export const idsCoreColorRed950 = '#5c1414';
388
+ export const idsCoreColorRed1000 = '#350a0a';
389
+ export const idsCoreColorGreen50 = '#ecfdf5';
390
+ export const idsCoreColorGreen100 = '#d1fae5';
391
+ export const idsCoreColorGreen200 = '#a7f3d0';
392
+ export const idsCoreColorGreen300 = '#6ee7b7';
393
+ export const idsCoreColorGreen400 = '#34d399';
394
+ export const idsCoreColorGreen500 = '#10b981';
395
+ export const idsCoreColorGreen600 = '#059669';
396
+ export const idsCoreColorGreen700 = '#047857';
397
+ export const idsCoreColorGreen800 = '#065f46';
398
+ export const idsCoreColorGreen900 = '#064e3b';
399
+ export const idsCoreColorGreen950 = '#043b2c';
400
+ export const idsCoreColorGreen1000 = '#022419';
401
+ export const idsCoreColorTransparent = '#00000000';
402
+ export const idsCoreFontSizeBase = '16px';
403
+ export const idsCoreFont = 'Tomato Grotesk';
404
+ export const idsCoreLineheightBase = '16px *1';
405
+ export const idsCoreSizingRem = '16px';
406
+ export const idsCoreSizingBase = '16px';
407
+ export const idsCoreBorderradiusBase = '16px';
408
+ export const idsCoreBorderwidthSlim = '1px';
409
+ export const idsCoreBorderwidthThick = '2px';
410
+ export const idsTypographyLabel1x = '[object Object]';
411
+ export const idsBorderradius025x = '4px';
412
+ export const idsBorderradiusFull = '1600px';
413
+ export const idsBorderFocused = '[object Object]';
414
+ export const idsBorderPrimary = '[object Object]';
415
+ export const idsBorderDisabled = '[object Object]';
416
+ export const idsBorderTransparent = '[object Object]';
417
+ export const idsColorElementPrimaryDefault = '#4d5057';
418
+ export const idsColorElementPrimaryHover = '#4d5057';
419
+ export const idsColorElementPrimaryActive = '#101114';
420
+ export const idsColorElementPrimaryOnprimary = '#ffffff';
421
+ export const idsColorElementSecondaryDefault = '#00000000';
422
+ export const idsColorElementSecondaryHover = '#e6edfb';
423
+ export const idsColorElementSecondaryActive = '#d1def8';
424
+ export const idsColorElementSecondaryOnsecondary = '#2d2f35';
425
+ export const idsColorElementPrimaryinvertedDefault = '#ffffff';
426
+ export const idsColorElementPrimaryinvertedHover = '#fafafb';
427
+ export const idsColorElementPrimaryinvertedActive = '#f5f5f8';
428
+ export const idsColorElementPrimaryinvertedOnprimaryaccent = '#101114';
429
+ export const idsColorElementPrimaryaccentinvertedDefault = '#101114';
430
+ export const idsColorElementPrimaryaccentinvertedHover = '#2d2f35';
431
+ export const idsColorElementPrimaryaccentinvertedActive = '#4d5057';
432
+ export const idsColorElementPrimaryaccentinvertedOnprimaryaccentinverted = '#ffffff';
433
+ export const idsColorElementDisabled = '#adaeb3';
434
+ export const idsColorElementOndisabled = '#707784';
435
+ export const idsColorBorderPrimary = '#2d2f35';
436
+ export const idsColorBorderDisabled = '#adaeb3';
437
+ export const idsColorBorderMuted = '#e0e1e4';
438
+ export const idsColorBorderSubtle = '#f5f5f8';
439
+ export const idsColorBorderFocus = '#7eaaff';
440
+
441
+ export default tokens;