@groupeactual/design-tokens 1.7.9 → 2.0.0-beta.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.
Files changed (108) hide show
  1. package/dist/cjs/index.js +23 -1
  2. package/dist/es/index.d.ts +244 -63
  3. package/dist/es/index.js +23 -1
  4. package/dist/types/helpers/theme.helper.d.ts +5 -0
  5. package/dist/types/index.d.ts +2 -0
  6. package/dist/types/interfaces/theme.interface.d.ts +242 -0
  7. package/dist/types/styled/Accordion.d.ts +4 -0
  8. package/dist/types/styled/Alert.d.ts +4 -0
  9. package/dist/types/styled/Autocomplete.d.ts +4 -0
  10. package/dist/types/styled/Breadcrumbs.d.ts +4 -0
  11. package/dist/types/styled/Button.d.ts +4 -0
  12. package/dist/types/styled/Checkbox.d.ts +4 -0
  13. package/dist/types/styled/Chip.d.ts +4 -0
  14. package/dist/types/styled/Divider.d.ts +4 -0
  15. package/dist/types/styled/FormHelperText.d.ts +4 -0
  16. package/dist/types/styled/FormLabel.d.ts +4 -0
  17. package/dist/types/styled/IconButton.d.ts +4 -0
  18. package/dist/types/styled/InputLabel.d.ts +4 -0
  19. package/dist/types/styled/MenuItem.d.ts +4 -0
  20. package/dist/types/styled/OutlinedInput.d.ts +4 -0
  21. package/dist/types/styled/PaginationItem.d.ts +4 -0
  22. package/dist/types/styled/Radio.d.ts +4 -0
  23. package/dist/types/styled/Select.d.ts +4 -0
  24. package/dist/types/styled/Switch.d.ts +4 -0
  25. package/dist/types/styled/Table.d.ts +4 -0
  26. package/dist/types/styled/TextField.d.ts +4 -0
  27. package/dist/types/styled/Typography.d.ts +4 -0
  28. package/dist/types/theme/theme.d.ts +4 -0
  29. package/package.json +22 -14
  30. package/src/helpers/theme.helper.ts +229 -0
  31. package/src/index.ts +2 -4
  32. package/src/interfaces/theme.interface.ts +270 -0
  33. package/src/styled/Accordion.ts +49 -0
  34. package/src/styled/Alert.ts +83 -0
  35. package/src/styled/Autocomplete.ts +24 -0
  36. package/src/styled/Breadcrumbs.ts +29 -0
  37. package/src/styled/Button.ts +109 -0
  38. package/src/styled/Checkbox.ts +81 -0
  39. package/src/styled/Chip.ts +201 -0
  40. package/src/styled/Divider.ts +24 -0
  41. package/src/styled/FormHelperText.ts +28 -0
  42. package/src/styled/FormLabel.ts +30 -0
  43. package/src/styled/IconButton.ts +161 -0
  44. package/src/styled/InputLabel.ts +30 -0
  45. package/src/styled/MenuItem.ts +73 -0
  46. package/src/styled/OutlinedInput.ts +89 -0
  47. package/src/styled/PaginationItem.ts +72 -0
  48. package/src/styled/Radio.ts +67 -0
  49. package/src/styled/Select.ts +38 -0
  50. package/src/styled/Switch.ts +62 -0
  51. package/src/styled/Table.ts +54 -0
  52. package/src/styled/TextField.ts +105 -0
  53. package/src/styled/Typography.ts +67 -0
  54. package/src/theme/theme.tsx +23 -0
  55. package/src/tokens/tokens.json +667 -6
  56. package/dist/types/src/css/accordionCss.d.ts +0 -3
  57. package/dist/types/src/css/bannerNotificationCss.d.ts +0 -3
  58. package/dist/types/src/css/breadcrumbsCss.d.ts +0 -3
  59. package/dist/types/src/css/buttonCss.d.ts +0 -3
  60. package/dist/types/src/css/chipCss.d.ts +0 -3
  61. package/dist/types/src/css/datatable/datatableCss.d.ts +0 -3
  62. package/dist/types/src/css/form/autoCompleteCss.d.ts +0 -3
  63. package/dist/types/src/css/form/checkboxCss.d.ts +0 -3
  64. package/dist/types/src/css/form/checkboxGroupCss.d.ts +0 -3
  65. package/dist/types/src/css/form/datePickerCss.d.ts +0 -3
  66. package/dist/types/src/css/form/radioCss.d.ts +0 -3
  67. package/dist/types/src/css/form/selectCss.d.ts +0 -3
  68. package/dist/types/src/css/form/snackbarCss.d.ts +0 -3
  69. package/dist/types/src/css/form/textFieldCss.d.ts +0 -3
  70. package/dist/types/src/css/iconButtonCss.d.ts +0 -3
  71. package/dist/types/src/css/index.d.ts +0 -20
  72. package/dist/types/src/css/linkCss.d.ts +0 -3
  73. package/dist/types/src/css/menuItemCss.d.ts +0 -3
  74. package/dist/types/src/css/paginationCss.d.ts +0 -3
  75. package/dist/types/src/css/switchCss.d.ts +0 -3
  76. package/dist/types/src/css/tooltipCss.d.ts +0 -2
  77. package/dist/types/src/helpers/theme.d.ts +0 -4
  78. package/dist/types/src/index.d.ts +0 -4
  79. package/dist/types/src/interfaces/theme.d.ts +0 -16
  80. package/dist/types/src/themes/tokens.d.ts +0 -167
  81. package/dist/types/src/useMaterialThemeTokens.d.ts +0 -6
  82. package/dist/types/src/useThemeTokens.d.ts +0 -6
  83. package/src/css/accordionCss.ts +0 -30
  84. package/src/css/bannerNotificationCss.ts +0 -52
  85. package/src/css/breadcrumbsCss.ts +0 -19
  86. package/src/css/buttonCss.ts +0 -80
  87. package/src/css/chipCss.ts +0 -142
  88. package/src/css/datatable/datatableCss.ts +0 -32
  89. package/src/css/form/autoCompleteCss.ts +0 -340
  90. package/src/css/form/checkboxCss.ts +0 -128
  91. package/src/css/form/checkboxGroupCss.ts +0 -42
  92. package/src/css/form/datePickerCss.ts +0 -117
  93. package/src/css/form/radioCss.ts +0 -102
  94. package/src/css/form/selectCss.ts +0 -233
  95. package/src/css/form/snackbarCss.ts +0 -42
  96. package/src/css/form/textFieldCss.ts +0 -188
  97. package/src/css/iconButtonCss.ts +0 -64
  98. package/src/css/index.ts +0 -20
  99. package/src/css/linkCss.ts +0 -15
  100. package/src/css/menuItemCss.ts +0 -31
  101. package/src/css/paginationCss.ts +0 -59
  102. package/src/css/switchCss.ts +0 -58
  103. package/src/css/tooltipCss.ts +0 -5
  104. package/src/helpers/theme.ts +0 -89
  105. package/src/interfaces/theme.ts +0 -34
  106. package/src/themes/tokens.ts +0 -169
  107. package/src/useMaterialThemeTokens.ts +0 -218
  108. package/src/useThemeTokens.ts +0 -30
@@ -1,5 +1,662 @@
1
1
  {
2
- "Default": {
2
+ "DFLib-Variables/Interne": {
3
+ "palette": {
4
+ "secondary": {
5
+ "main": {
6
+ "value": "#e30421",
7
+ "type": "color"
8
+ },
9
+ "light 3": {
10
+ "value": "#fce6e9",
11
+ "type": "color"
12
+ },
13
+ "light 2": {
14
+ "value": "#f7b4bc",
15
+ "type": "color"
16
+ },
17
+ "light": {
18
+ "value": "#f18290",
19
+ "type": "color"
20
+ },
21
+ "dark": {
22
+ "value": "#cc041e",
23
+ "type": "color"
24
+ },
25
+ "dark 2": {
26
+ "value": "#b6031a",
27
+ "type": "color"
28
+ },
29
+ "dark 3": {
30
+ "value": "#9f0317",
31
+ "type": "color"
32
+ },
33
+ "secondary contrast text": {
34
+ "value": "#ffffff",
35
+ "type": "color"
36
+ }
37
+ },
38
+ "primary": {
39
+ "light": {
40
+ "value": "#51b7ff",
41
+ "type": "color"
42
+ },
43
+ "light 2": {
44
+ "value": "#bddff8",
45
+ "type": "color"
46
+ },
47
+ "light 3": {
48
+ "value": "#e6f4ff",
49
+ "type": "color"
50
+ },
51
+ "main": {
52
+ "value": "#136cac",
53
+ "type": "color"
54
+ },
55
+ "dark": {
56
+ "value": "#004f88",
57
+ "type": "color"
58
+ },
59
+ "dark 2": {
60
+ "value": "#0b3f64",
61
+ "type": "color"
62
+ },
63
+ "dark 3": {
64
+ "value": "#062439",
65
+ "type": "color"
66
+ },
67
+ "primary contrast text": {
68
+ "value": "#ffffff",
69
+ "type": "color"
70
+ },
71
+ "mainChannel": {
72
+ "value": "#136cac1f",
73
+ "type": "color"
74
+ }
75
+ },
76
+ "error": {
77
+ "light 3": {
78
+ "value": "#ffeff2",
79
+ "type": "color"
80
+ },
81
+ "light 2": {
82
+ "value": "#ffd9e1",
83
+ "type": "color"
84
+ },
85
+ "light": {
86
+ "value": "#f60f3e",
87
+ "type": "color"
88
+ },
89
+ "main": {
90
+ "value": "#e20e28",
91
+ "type": "color"
92
+ },
93
+ "dark": {
94
+ "value": "#c1042a",
95
+ "type": "color"
96
+ },
97
+ "dark 2": {
98
+ "value": "#c1042a",
99
+ "type": "color"
100
+ }
101
+ },
102
+ "warning": {
103
+ "light 3": {
104
+ "value": "#fef7ec",
105
+ "type": "color"
106
+ },
107
+ "light 2": {
108
+ "value": "#feedd2",
109
+ "type": "color"
110
+ },
111
+ "light": {
112
+ "value": "#ffa411",
113
+ "type": "color"
114
+ },
115
+ "main": {
116
+ "value": "#e46221",
117
+ "type": "color"
118
+ },
119
+ "dark": {
120
+ "value": "#b13906",
121
+ "type": "color"
122
+ },
123
+ "dark 2": {
124
+ "value": "#872d01",
125
+ "type": "color"
126
+ }
127
+ },
128
+ "success": {
129
+ "light 3": {
130
+ "value": "#ecfdf3",
131
+ "type": "color"
132
+ },
133
+ "light 2": {
134
+ "value": "#d1fadf",
135
+ "type": "color"
136
+ },
137
+ "light": {
138
+ "value": "#5be69c",
139
+ "type": "color"
140
+ },
141
+ "main": {
142
+ "value": "#179b6d",
143
+ "type": "color"
144
+ },
145
+ "dark": {
146
+ "value": "#126e4e",
147
+ "type": "color"
148
+ },
149
+ "dark 2": {
150
+ "value": "#145740",
151
+ "type": "color"
152
+ }
153
+ },
154
+ "infos": {
155
+ "light 3": {
156
+ "value": "#ecfafd",
157
+ "type": "color"
158
+ },
159
+ "light 2": {
160
+ "value": "#c8eaf9",
161
+ "type": "color"
162
+ },
163
+ "light": {
164
+ "value": "#47d1ff",
165
+ "type": "color"
166
+ },
167
+ "main": {
168
+ "value": "#1b87b6",
169
+ "type": "color"
170
+ },
171
+ "dark": {
172
+ "value": "#145a85",
173
+ "type": "color"
174
+ },
175
+ "dark 2": {
176
+ "value": "#143757",
177
+ "type": "color"
178
+ }
179
+ },
180
+ "text": {
181
+ "secondary": {
182
+ "value": "#4d5459",
183
+ "type": "color"
184
+ },
185
+ "primary": {
186
+ "value": "#24272a",
187
+ "type": "color"
188
+ },
189
+ "dark": {
190
+ "value": "#141414",
191
+ "type": "color"
192
+ },
193
+ "disabled": {
194
+ "value": "#5d6879",
195
+ "type": "color"
196
+ }
197
+ },
198
+ "background": {
199
+ "default": {
200
+ "value": "#ffffff",
201
+ "type": "color"
202
+ },
203
+ "grey": {
204
+ "value": "#f0f0f1",
205
+ "type": "color"
206
+ }
207
+ },
208
+ "border": {
209
+ "default": {
210
+ "value": "#e0e0e0",
211
+ "type": "color"
212
+ },
213
+ "grey": {
214
+ "value": "#8F959E",
215
+ "type": "color"
216
+ }
217
+ },
218
+ "action": {
219
+ "hoverOpacity": {
220
+ "value": "0.12",
221
+ "type": "number"
222
+ }
223
+ }
224
+ },
225
+ "Typography": {
226
+ "h1": {
227
+ "fontFamily": {
228
+ "value": "\"Roboto\", sans-serif",
229
+ "type": "text"
230
+ },
231
+ "fontSize": {
232
+ "value": "35px",
233
+ "type": "text"
234
+ },
235
+ "LineHeight": {
236
+ "value": "41px",
237
+ "type": "text"
238
+ },
239
+ "fontWeight": {
240
+ "value": "700",
241
+ "type": "text"
242
+ }
243
+ },
244
+ "h2": {
245
+ "fontFamily": {
246
+ "value": "\"Roboto\", sans-serif",
247
+ "type": "text"
248
+ },
249
+ "fontSize": {
250
+ "value": "29px",
251
+ "type": "text"
252
+ },
253
+ "LineHeight": {
254
+ "value": "34px",
255
+ "type": "text"
256
+ },
257
+ "fontWeight": {
258
+ "value": "500",
259
+ "type": "text"
260
+ }
261
+ },
262
+ "h3": {
263
+ "fontFamily": {
264
+ "value": "\"Roboto\", sans-serif",
265
+ "type": "text"
266
+ },
267
+ "fontSize": {
268
+ "value": "24px",
269
+ "type": "text"
270
+ },
271
+ "LineHeight": {
272
+ "value": "28px",
273
+ "type": "text"
274
+ },
275
+ "fontWeight": {
276
+ "value": "400",
277
+ "type": "text"
278
+ }
279
+ },
280
+ "h4": {
281
+ "fontFamily": {
282
+ "value": "\"Roboto\", sans-serif",
283
+ "type": "text"
284
+ },
285
+ "fontSize": {
286
+ "value": "18px",
287
+ "type": "text"
288
+ },
289
+ "LineHeight": {
290
+ "value": "21px",
291
+ "type": "text"
292
+ },
293
+ "fontWeight": {
294
+ "value": "500",
295
+ "type": "text"
296
+ }
297
+ },
298
+ "h5": {
299
+ "fontFamily": {
300
+ "value": "\"Roboto\", sans-serif",
301
+ "type": "text"
302
+ },
303
+ "fontSize": {
304
+ "value": "16px",
305
+ "type": "text"
306
+ },
307
+ "LineHeight": {
308
+ "value": "21px",
309
+ "type": "text"
310
+ },
311
+ "fontWeight": {
312
+ "value": "500",
313
+ "type": "text"
314
+ }
315
+ },
316
+ "subtitle1": {
317
+ "fontFamily": {
318
+ "value": "\"Roboto\", sans-serif",
319
+ "type": "text"
320
+ },
321
+ "fontSize": {
322
+ "value": "16px",
323
+ "type": "text"
324
+ },
325
+ "LineHeight": {
326
+ "value": "21px",
327
+ "type": "text"
328
+ },
329
+ "fontWeight": {
330
+ "value": "400",
331
+ "type": "text"
332
+ }
333
+ },
334
+ "h6": {
335
+ "fontFamily": {
336
+ "value": "\"Roboto\", sans-serif",
337
+ "type": "text"
338
+ },
339
+ "fontSize": {
340
+ "value": "16px",
341
+ "type": "text"
342
+ },
343
+ "LineHeight": {
344
+ "value": "21px",
345
+ "type": "text"
346
+ },
347
+ "fontWeight": {
348
+ "value": "500",
349
+ "type": "text"
350
+ }
351
+ },
352
+ "subtitle2": {
353
+ "fontFamily": {
354
+ "value": "\"Roboto\", sans-serif",
355
+ "type": "text"
356
+ },
357
+ "fontSize": {
358
+ "value": "14px",
359
+ "type": "text"
360
+ },
361
+ "LineHeight": {
362
+ "value": "18px",
363
+ "type": "text"
364
+ },
365
+ "fontWeight": {
366
+ "value": "400",
367
+ "type": "text"
368
+ }
369
+ },
370
+ "body1": {
371
+ "fontFamily": {
372
+ "value": "\"Roboto\", sans-serif",
373
+ "type": "text"
374
+ },
375
+ "fontSize": {
376
+ "value": "14px",
377
+ "type": "text"
378
+ },
379
+ "LineHeight": {
380
+ "value": "18px",
381
+ "type": "text"
382
+ },
383
+ "fontWeight": {
384
+ "value": "400",
385
+ "type": "text"
386
+ }
387
+ },
388
+ "body2": {
389
+ "fontFamily": {
390
+ "value": "\"Roboto\", sans-serif",
391
+ "type": "text"
392
+ },
393
+ "fontSize": {
394
+ "value": "13px",
395
+ "type": "text"
396
+ },
397
+ "LineHeight": {
398
+ "value": "16px",
399
+ "type": "text"
400
+ },
401
+ "fontWeight": {
402
+ "value": "400",
403
+ "type": "text"
404
+ }
405
+ },
406
+ "button": {
407
+ "fontFamily": {
408
+ "value": "\"Roboto\", sans-serif",
409
+ "type": "text"
410
+ },
411
+ "fontSize": {
412
+ "value": "14px",
413
+ "type": "text"
414
+ },
415
+ "LineHeight": {
416
+ "value": "18px",
417
+ "type": "text"
418
+ },
419
+ "fontWeight": {
420
+ "value": "700",
421
+ "type": "text"
422
+ }
423
+ },
424
+ "caption": {
425
+ "fontFamily": {
426
+ "value": "\"Roboto\", sans-serif",
427
+ "type": "text"
428
+ },
429
+ "fontSize": {
430
+ "value": "11px",
431
+ "type": "text"
432
+ },
433
+ "LineHeight": {
434
+ "value": "12px",
435
+ "type": "text"
436
+ },
437
+ "fontWeight": {
438
+ "value": "400",
439
+ "type": "text"
440
+ }
441
+ }
442
+ },
443
+ "spacing": {
444
+ "xxs": {
445
+ "value": "4",
446
+ "type": "number"
447
+ },
448
+ "xs": {
449
+ "value": "8",
450
+ "type": "number"
451
+ },
452
+ "sm": {
453
+ "value": "12",
454
+ "type": "number"
455
+ },
456
+ "md": {
457
+ "value": "16",
458
+ "type": "number"
459
+ },
460
+ "lg": {
461
+ "value": "24",
462
+ "type": "number"
463
+ },
464
+ "xl": {
465
+ "value": "32",
466
+ "type": "number"
467
+ },
468
+ "xxl": {
469
+ "value": "40",
470
+ "type": "number"
471
+ }
472
+ },
473
+ "radius": {
474
+ "small": {
475
+ "value": "4",
476
+ "type": "number"
477
+ },
478
+ "medium": {
479
+ "value": "8",
480
+ "type": "number"
481
+ },
482
+ "large": {
483
+ "value": "16",
484
+ "type": "number"
485
+ },
486
+ "xLarge": {
487
+ "value": "24",
488
+ "type": "number"
489
+ }
490
+ }
491
+ },
492
+ "DFLib-Variables/Interne/defaultColors": {
493
+ "redActual": {
494
+ "value": "#e40521",
495
+ "type": "color",
496
+ "description": "Official - AA : Pass bold/icon on F0 - #E40521"
497
+ },
498
+ "blueClickable": {
499
+ "value": "#136cac",
500
+ "type": "color",
501
+ "description": "Only for clickable element - AA : Pass all on F0 - #136CAC"
502
+ },
503
+ "blueHoverClickable": {
504
+ "value": "#004f88",
505
+ "type": "color",
506
+ "description": "Only for hover CTA - #004F88"
507
+ },
508
+ "greyMediumInactive": {
509
+ "value": "#808080",
510
+ "type": "color",
511
+ "description": "For inactive cta or icon - AA : Pass bold & icon on F0 - #808080"
512
+ },
513
+ "greyXDark": {
514
+ "value": "#272727",
515
+ "type": "color",
516
+ "description": "For all texts - AA : Pass all on F0 - #272727"
517
+ },
518
+ "textColors": {
519
+ "greyDark": {
520
+ "value": "#545352",
521
+ "type": "color",
522
+ "description": "For 2nd texts - AA : Pass all on F0 - #545352"
523
+ }
524
+ },
525
+ "backgroundColors": {
526
+ "white": {
527
+ "value": "#ffffff",
528
+ "type": "color",
529
+ "description": "For background & typo in cta/notif - #FFFFFF"
530
+ },
531
+ "greyXLight": {
532
+ "value": "#f0f0f0",
533
+ "type": "color",
534
+ "description": "Only for background - #F0F0F0"
535
+ },
536
+ "greyXDarkBgModal": {
537
+ "value": "#27272780",
538
+ "type": "color",
539
+ "description": "Only for layer under modal - #272727 à 50%"
540
+ },
541
+ "blueHoverEquivalence": {
542
+ "value": "#e8f1f7",
543
+ "type": "color",
544
+ "description": "Hover equivalence - AA : Fail on FF - #E8F1F7"
545
+ },
546
+ "blueHoverOpacity12": {
547
+ "value": "#136cac1f",
548
+ "type": "color",
549
+ "description": "Hover - AA : Fail on FF - #136CAC at 12% opacity"
550
+ }
551
+ },
552
+ "borderColors": {
553
+ "greyLightDefaultBorder": {
554
+ "value": "#cbcbcb",
555
+ "type": "color",
556
+ "description": "Only for border - AA : Fail on FF - #CBCBCB"
557
+ }
558
+ },
559
+ "notificationColors": {
560
+ "blueInfo": {
561
+ "value": "#1d91c3",
562
+ "type": "color",
563
+ "description": "Info - AA : Pass bold & icon on F0 - #1D91C3"
564
+ },
565
+ "greenSuccess": {
566
+ "value": "#23956d",
567
+ "type": "color",
568
+ "description": "Success - AA : Pass bold & icon on F0 - #23956D"
569
+ },
570
+ "orangeWarning": {
571
+ "value": "#e46221",
572
+ "type": "color",
573
+ "description": "Warning - AA : Pass bold & icon on F0 - #E46221"
574
+ },
575
+ "redError": {
576
+ "value": "#b80025",
577
+ "type": "color",
578
+ "description": "Error - AA : Pass all on F0 - #B80025"
579
+ }
580
+ },
581
+ "secondaryColors": {
582
+ "blueDark": {
583
+ "value": "#0d2c54",
584
+ "type": "color",
585
+ "description": "Illu & charts - AA : Pass all on F0 - #0D2C54"
586
+ },
587
+ "blueMedium": {
588
+ "value": "#3d5a80",
589
+ "type": "color",
590
+ "description": "Illu & charts - AA : Pass all on F0 - #3D5A80"
591
+ },
592
+ "blueLight": {
593
+ "value": "#7fdcea",
594
+ "type": "color",
595
+ "description": "Illu & charts - AA : Fail on FF - #7FDCEA"
596
+ },
597
+ "greenDark": {
598
+ "value": "#125e42",
599
+ "type": "color",
600
+ "description": "Illu & charts - AA : Pass all on F0 - #125E42"
601
+ },
602
+ "greenMedium": {
603
+ "value": "#1f8461",
604
+ "type": "color",
605
+ "description": "Illu & charts - AA : Pass bold & icon on F0 - #1F8461"
606
+ },
607
+ "green": {
608
+ "value": "#5dca8b",
609
+ "type": "color",
610
+ "description": "Illu & charts - AA : Fail on FF - #5DCA8B"
611
+ },
612
+ "greenLight": {
613
+ "value": "#bad07a",
614
+ "type": "color",
615
+ "description": "Illu & charts - AA : Fail on FF - #BAD07A"
616
+ },
617
+ "brown": {
618
+ "value": "#6f2902",
619
+ "type": "color",
620
+ "description": "Illu & charts - AA : Pass all on F0 - #6F2902"
621
+ },
622
+ "brownLight": {
623
+ "value": "#b65700",
624
+ "type": "color",
625
+ "description": "Illu & charts - AA : Pass bold/icon on F0 - #B65700"
626
+ },
627
+ "orangeLight": {
628
+ "value": "#f59b00",
629
+ "type": "color",
630
+ "description": "Illu & charts - AA : Fail on FF - #F59B00"
631
+ },
632
+ "yellow": {
633
+ "value": "#f9d25e",
634
+ "type": "color",
635
+ "description": "Illu & charts - AA : Fail on FF - #F9D25E"
636
+ },
637
+ "purpleDark": {
638
+ "value": "#530d48",
639
+ "type": "color",
640
+ "description": "Illu & charts - AA : Pass all on F0 - #530D48"
641
+ },
642
+ "purple": {
643
+ "value": "#831443",
644
+ "type": "color",
645
+ "description": "Illu & charts - AA : Pass all on F0 - #831443"
646
+ },
647
+ "pink": {
648
+ "value": "#ca1e5c",
649
+ "type": "color",
650
+ "description": "Illu & charts - AA : Pass all on F0 - #CA1E5C"
651
+ },
652
+ "pinkLight": {
653
+ "value": "#fd6972",
654
+ "type": "color",
655
+ "description": "Illu & charts - AA : Fail on FF - #FD6972"
656
+ }
657
+ }
658
+ },
659
+ "Default(old)": {
3
660
  "Web_shadow-all-content": {
4
661
  "value": {
5
662
  "color": "#2727271f",
@@ -740,9 +1397,10 @@
740
1397
  "id": "5299a7cd30b81817506994f768000dd93bed2d5c",
741
1398
  "name": "Default",
742
1399
  "selectedTokenSets": {
743
- "Default": "enabled"
1400
+ "Default(old)": "enabled"
744
1401
  },
745
- "$figmaStyleReferences": {}
1402
+ "$figmaStyleReferences": {},
1403
+ "$figmaVariableReferences": {}
746
1404
  },
747
1405
  {
748
1406
  "id": "f7ae6c95b0ed8df70d755fec6689617a5b79cabe",
@@ -750,13 +1408,16 @@
750
1408
  "selectedTokenSets": {
751
1409
  "EP": "enabled"
752
1410
  },
753
- "$figmaStyleReferences": {}
1411
+ "$figmaStyleReferences": {},
1412
+ "$figmaVariableReferences": {}
754
1413
  }
755
1414
  ],
756
1415
  "$metadata": {
757
1416
  "tokenSetOrder": [
758
- "Default",
1417
+ "DFLib-Variables/Interne",
1418
+ "DFLib-Variables/Interne/defaultColors",
1419
+ "Default(old)",
759
1420
  "EP"
760
1421
  ]
761
1422
  }
762
- }
1423
+ }
@@ -1,3 +0,0 @@
1
- import { MuiTokens } from '@/interfaces/theme';
2
- declare const AccordionCss: (muiTokens: MuiTokens) => Record<string, unknown>;
3
- export default AccordionCss;
@@ -1,3 +0,0 @@
1
- import { MuiTokens } from '@/interfaces/theme';
2
- declare const bannerNotificationCss: (muiTokens: MuiTokens) => Record<string, unknown>;
3
- export default bannerNotificationCss;
@@ -1,3 +0,0 @@
1
- import { MuiTokens } from '@/interfaces/theme';
2
- declare const BreadcrumbsCss: (muiTokens: MuiTokens) => Record<string, unknown>;
3
- export default BreadcrumbsCss;