@serendie/ui 0.1.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.
Files changed (172) hide show
  1. package/README.md +86 -0
  2. package/dist/components/Accordion.d.ts +23 -0
  3. package/dist/components/AccordionGroup.d.ts +2 -0
  4. package/dist/components/Avatar.d.ts +40 -0
  5. package/dist/components/Badge.d.ts +90 -0
  6. package/dist/components/Banner.d.ts +43 -0
  7. package/dist/components/BottomNavigation.d.ts +2 -0
  8. package/dist/components/BottomNavigationItem.d.ts +30 -0
  9. package/dist/components/Button.d.ts +133 -0
  10. package/dist/components/CheckBox.d.ts +47 -0
  11. package/dist/components/ChoiceBox.d.ts +8 -0
  12. package/dist/components/DashboardWidget.d.ts +13 -0
  13. package/dist/components/Divider.d.ts +33 -0
  14. package/dist/components/Drawer.d.ts +40 -0
  15. package/dist/components/DropdownMenu.d.ts +14 -0
  16. package/dist/components/IconButton.d.ts +81 -0
  17. package/dist/components/List.d.ts +2 -0
  18. package/dist/components/ListItem.d.ts +46 -0
  19. package/dist/components/ModalDialog.d.ts +15 -0
  20. package/dist/components/NotificationBadge.d.ts +54 -0
  21. package/dist/components/ProgressIndicator.d.ts +29 -0
  22. package/dist/components/RadioButton.d.ts +30 -0
  23. package/dist/components/RadioGroup.d.ts +2 -0
  24. package/dist/components/Search.d.ts +51 -0
  25. package/dist/components/Select.d.ts +63 -0
  26. package/dist/components/SvgIcon.d.ts +75 -0
  27. package/dist/components/SvgIcon.stories.d.ts +7 -0
  28. package/dist/components/Switch.d.ts +10 -0
  29. package/dist/components/TabItem.d.ts +22 -0
  30. package/dist/components/Tabs.d.ts +3 -0
  31. package/dist/components/TextArea.d.ts +8 -0
  32. package/dist/components/TextField.d.ts +7 -0
  33. package/dist/components/Toast.d.ts +35 -0
  34. package/dist/components/TopAppBar.d.ts +37 -0
  35. package/dist/index.cjs +65 -0
  36. package/dist/index.d.ts +33 -0
  37. package/dist/index.js +19523 -0
  38. package/dist/preset.d.ts +534 -0
  39. package/dist/recipes/index.d.ts +2 -0
  40. package/dist/styles.css +1 -0
  41. package/dist/tokens/getToken.d.ts +789 -0
  42. package/dist/tokens/index.d.ts +1808 -0
  43. package/dist/tokens/keyframes/index.d.ts +10 -0
  44. package/package.json +100 -0
  45. package/styled-system/css/conditions.js +34 -0
  46. package/styled-system/css/css.d.ts +22 -0
  47. package/styled-system/css/css.js +45 -0
  48. package/styled-system/css/cva.d.ts +6 -0
  49. package/styled-system/css/cva.js +87 -0
  50. package/styled-system/css/cx.d.ts +5 -0
  51. package/styled-system/css/cx.js +15 -0
  52. package/styled-system/css/index.d.ts +5 -0
  53. package/styled-system/css/index.js +4 -0
  54. package/styled-system/css/sva.d.ts +4 -0
  55. package/styled-system/css/sva.js +41 -0
  56. package/styled-system/helpers.js +326 -0
  57. package/styled-system/jsx/aspect-ratio.d.ts +10 -0
  58. package/styled-system/jsx/aspect-ratio.js +14 -0
  59. package/styled-system/jsx/bleed.d.ts +10 -0
  60. package/styled-system/jsx/bleed.js +14 -0
  61. package/styled-system/jsx/box.d.ts +10 -0
  62. package/styled-system/jsx/box.js +14 -0
  63. package/styled-system/jsx/center.d.ts +10 -0
  64. package/styled-system/jsx/center.js +14 -0
  65. package/styled-system/jsx/circle.d.ts +10 -0
  66. package/styled-system/jsx/circle.js +14 -0
  67. package/styled-system/jsx/container.d.ts +10 -0
  68. package/styled-system/jsx/container.js +14 -0
  69. package/styled-system/jsx/cq.d.ts +10 -0
  70. package/styled-system/jsx/cq.js +14 -0
  71. package/styled-system/jsx/divider.d.ts +10 -0
  72. package/styled-system/jsx/divider.js +14 -0
  73. package/styled-system/jsx/factory-helper.js +22 -0
  74. package/styled-system/jsx/factory.d.ts +3 -0
  75. package/styled-system/jsx/factory.js +80 -0
  76. package/styled-system/jsx/flex.d.ts +10 -0
  77. package/styled-system/jsx/flex.js +14 -0
  78. package/styled-system/jsx/float.d.ts +10 -0
  79. package/styled-system/jsx/float.js +14 -0
  80. package/styled-system/jsx/grid-item.d.ts +10 -0
  81. package/styled-system/jsx/grid-item.js +14 -0
  82. package/styled-system/jsx/grid.d.ts +10 -0
  83. package/styled-system/jsx/grid.js +14 -0
  84. package/styled-system/jsx/hstack.d.ts +10 -0
  85. package/styled-system/jsx/hstack.js +14 -0
  86. package/styled-system/jsx/index.d.ts +24 -0
  87. package/styled-system/jsx/index.js +22 -0
  88. package/styled-system/jsx/is-valid-prop.d.ts +11 -0
  89. package/styled-system/jsx/is-valid-prop.js +17 -0
  90. package/styled-system/jsx/link-overlay.d.ts +10 -0
  91. package/styled-system/jsx/link-overlay.js +14 -0
  92. package/styled-system/jsx/spacer.d.ts +10 -0
  93. package/styled-system/jsx/spacer.js +14 -0
  94. package/styled-system/jsx/square.d.ts +10 -0
  95. package/styled-system/jsx/square.js +14 -0
  96. package/styled-system/jsx/stack.d.ts +10 -0
  97. package/styled-system/jsx/stack.js +14 -0
  98. package/styled-system/jsx/visually-hidden.d.ts +10 -0
  99. package/styled-system/jsx/visually-hidden.js +14 -0
  100. package/styled-system/jsx/vstack.d.ts +10 -0
  101. package/styled-system/jsx/vstack.js +14 -0
  102. package/styled-system/jsx/wrap.d.ts +10 -0
  103. package/styled-system/jsx/wrap.js +14 -0
  104. package/styled-system/patterns/aspect-ratio.d.ts +21 -0
  105. package/styled-system/patterns/aspect-ratio.js +38 -0
  106. package/styled-system/patterns/bleed.d.ts +22 -0
  107. package/styled-system/patterns/bleed.js +24 -0
  108. package/styled-system/patterns/box.d.ts +21 -0
  109. package/styled-system/patterns/box.js +15 -0
  110. package/styled-system/patterns/center.d.ts +21 -0
  111. package/styled-system/patterns/center.js +21 -0
  112. package/styled-system/patterns/circle.d.ts +21 -0
  113. package/styled-system/patterns/circle.js +25 -0
  114. package/styled-system/patterns/container.d.ts +21 -0
  115. package/styled-system/patterns/container.js +21 -0
  116. package/styled-system/patterns/cq.d.ts +22 -0
  117. package/styled-system/patterns/cq.js +21 -0
  118. package/styled-system/patterns/divider.d.ts +23 -0
  119. package/styled-system/patterns/divider.js +25 -0
  120. package/styled-system/patterns/flex.d.ts +27 -0
  121. package/styled-system/patterns/flex.js +26 -0
  122. package/styled-system/patterns/float.d.ts +24 -0
  123. package/styled-system/patterns/float.js +52 -0
  124. package/styled-system/patterns/grid-item.d.ts +26 -0
  125. package/styled-system/patterns/grid-item.js +25 -0
  126. package/styled-system/patterns/grid.d.ts +25 -0
  127. package/styled-system/patterns/grid.js +27 -0
  128. package/styled-system/patterns/hstack.d.ts +22 -0
  129. package/styled-system/patterns/hstack.js +24 -0
  130. package/styled-system/patterns/index.d.ts +21 -0
  131. package/styled-system/patterns/index.js +20 -0
  132. package/styled-system/patterns/link-overlay.d.ts +21 -0
  133. package/styled-system/patterns/link-overlay.js +24 -0
  134. package/styled-system/patterns/spacer.d.ts +21 -0
  135. package/styled-system/patterns/spacer.js +21 -0
  136. package/styled-system/patterns/square.d.ts +21 -0
  137. package/styled-system/patterns/square.js +24 -0
  138. package/styled-system/patterns/stack.d.ts +24 -0
  139. package/styled-system/patterns/stack.js +24 -0
  140. package/styled-system/patterns/visually-hidden.d.ts +21 -0
  141. package/styled-system/patterns/visually-hidden.js +18 -0
  142. package/styled-system/patterns/vstack.d.ts +22 -0
  143. package/styled-system/patterns/vstack.js +24 -0
  144. package/styled-system/patterns/wrap.d.ts +25 -0
  145. package/styled-system/patterns/wrap.js +25 -0
  146. package/styled-system/themes/asagi.json +5 -0
  147. package/styled-system/themes/index.d.ts +36 -0
  148. package/styled-system/themes/index.js +24 -0
  149. package/styled-system/themes/kurikawa.json +5 -0
  150. package/styled-system/themes/sumire.json +5 -0
  151. package/styled-system/themes/theme-asagi.json +5 -0
  152. package/styled-system/themes/theme-kurikawa.json +5 -0
  153. package/styled-system/themes/theme-sumire.json +5 -0
  154. package/styled-system/themes/theme-tsutsuji.json +5 -0
  155. package/styled-system/themes/tsutsuji.json +5 -0
  156. package/styled-system/tokens/index.d.ts +9 -0
  157. package/styled-system/tokens/index.js +3548 -0
  158. package/styled-system/tokens/tokens.d.ts +48 -0
  159. package/styled-system/types/composition.d.ts +138 -0
  160. package/styled-system/types/conditions.d.ts +214 -0
  161. package/styled-system/types/csstype.d.ts +21298 -0
  162. package/styled-system/types/global.d.ts +19 -0
  163. package/styled-system/types/index.d.ts +8 -0
  164. package/styled-system/types/jsx.d.ts +52 -0
  165. package/styled-system/types/parts.d.ts +8 -0
  166. package/styled-system/types/pattern.d.ts +78 -0
  167. package/styled-system/types/prop-type.d.ts +237 -0
  168. package/styled-system/types/recipe.d.ts +181 -0
  169. package/styled-system/types/selectors.d.ts +59 -0
  170. package/styled-system/types/static-css.d.ts +51 -0
  171. package/styled-system/types/style-props.d.ts +7468 -0
  172. package/styled-system/types/system-types.d.ts +88 -0
@@ -0,0 +1,789 @@
1
+ export declare function getToken(): {
2
+ sd: {
3
+ reference: {
4
+ color: {
5
+ scale: {
6
+ white: {
7
+ 1000: string;
8
+ };
9
+ black: {
10
+ 1000: string;
11
+ };
12
+ transparency: {
13
+ 5: string;
14
+ 20: string;
15
+ 60: string;
16
+ };
17
+ gray: {
18
+ 100: string;
19
+ 200: string;
20
+ 300: string;
21
+ 400: string;
22
+ 500: string;
23
+ 600: string;
24
+ 700: string;
25
+ 800: string;
26
+ 900: string;
27
+ 1000: string;
28
+ };
29
+ red: {
30
+ 100: string;
31
+ 200: string;
32
+ 300: string;
33
+ 400: string;
34
+ 500: string;
35
+ 600: string;
36
+ 700: string;
37
+ 800: string;
38
+ 900: string;
39
+ 1000: string;
40
+ };
41
+ chestnut: {
42
+ 100: string;
43
+ 200: string;
44
+ 300: string;
45
+ 400: string;
46
+ 500: string;
47
+ 600: string;
48
+ 700: string;
49
+ 800: string;
50
+ 900: string;
51
+ 1000: string;
52
+ };
53
+ beige: {
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
+ 1000: string;
64
+ };
65
+ yellow: {
66
+ 100: string;
67
+ 200: string;
68
+ 300: string;
69
+ 400: string;
70
+ 500: string;
71
+ 600: string;
72
+ 700: string;
73
+ 800: string;
74
+ 900: string;
75
+ 1000: string;
76
+ };
77
+ green: {
78
+ 100: string;
79
+ 200: string;
80
+ 300: string;
81
+ 400: string;
82
+ 500: string;
83
+ 600: string;
84
+ 700: string;
85
+ 800: string;
86
+ 900: string;
87
+ 1000: string;
88
+ };
89
+ skyBlue: {
90
+ 100: string;
91
+ 200: string;
92
+ 300: string;
93
+ 400: string;
94
+ 500: string;
95
+ 600: string;
96
+ 700: string;
97
+ 800: string;
98
+ 900: string;
99
+ 1000: string;
100
+ };
101
+ blue: {
102
+ 100: string;
103
+ 200: string;
104
+ 300: string;
105
+ 400: string;
106
+ 500: string;
107
+ 600: string;
108
+ 700: string;
109
+ 800: string;
110
+ 900: string;
111
+ 1000: string;
112
+ };
113
+ purple: {
114
+ 100: string;
115
+ 200: string;
116
+ 300: string;
117
+ 400: string;
118
+ 500: string;
119
+ 600: string;
120
+ 700: string;
121
+ 800: string;
122
+ 900: string;
123
+ 1000: string;
124
+ };
125
+ pink: {
126
+ 100: string;
127
+ 200: string;
128
+ 300: string;
129
+ 400: string;
130
+ 500: string;
131
+ 600: string;
132
+ 700: string;
133
+ 800: string;
134
+ 900: string;
135
+ 1000: string;
136
+ };
137
+ };
138
+ };
139
+ dimension: {
140
+ scale: {
141
+ 0: string;
142
+ 1: string;
143
+ 2: string;
144
+ 3: string;
145
+ 4: string;
146
+ 5: string;
147
+ 6: string;
148
+ 7: string;
149
+ 8: string;
150
+ 9: string;
151
+ 10: string;
152
+ 11: string;
153
+ 12: string;
154
+ 13: string;
155
+ 14: string;
156
+ 15: string;
157
+ 16: string;
158
+ 17: string;
159
+ 18: string;
160
+ };
161
+ breakpoint: {
162
+ small: string;
163
+ medium: string;
164
+ large: string;
165
+ extraLarge: string;
166
+ };
167
+ };
168
+ elevation: {
169
+ opacity: {
170
+ scale: {
171
+ 0: number;
172
+ 1: number;
173
+ 2: number;
174
+ 3: number;
175
+ 4: number;
176
+ 5: number;
177
+ 6: number;
178
+ 7: number;
179
+ 8: number;
180
+ 9: number;
181
+ 10: number;
182
+ };
183
+ };
184
+ };
185
+ typography: {
186
+ fontFamily: {
187
+ primary: string;
188
+ monospace: string;
189
+ };
190
+ fontWeight: {
191
+ regular: number;
192
+ bold: number;
193
+ };
194
+ lineHeight: {
195
+ none: number;
196
+ tight: number;
197
+ normal: number;
198
+ relaxed: number;
199
+ };
200
+ scale: {
201
+ expanded: {
202
+ fourExtraSmall: string;
203
+ threeExtraSmall: string;
204
+ twoExtraSmall: string;
205
+ extraSmall: string;
206
+ small: string;
207
+ medium: string;
208
+ large: string;
209
+ extraLarge: string;
210
+ twoExtraLarge: string;
211
+ threeExtraLarge: string;
212
+ fourExtraLarge: string;
213
+ fiveExtraLarge: string;
214
+ };
215
+ compact: {
216
+ twoExtraSmall: string;
217
+ extraSmall: string;
218
+ small: string;
219
+ medium: string;
220
+ large: string;
221
+ extraLarge: string;
222
+ twoExtraLarge: string;
223
+ threeExtraLarge: string;
224
+ fourExtraLarge: string;
225
+ fiveExtraLarge: string;
226
+ };
227
+ };
228
+ };
229
+ };
230
+ system: {
231
+ color: {
232
+ impression: {
233
+ primary: string;
234
+ onPrimary: string;
235
+ primaryContainer: string;
236
+ onPrimaryContainer: string;
237
+ secondary: string;
238
+ onSecondary: string;
239
+ secondaryContainer: string;
240
+ onSecondaryContainer: string;
241
+ tertiary: string;
242
+ onTertiary: string;
243
+ tertiaryContainer: string;
244
+ onTertiaryContainer: string;
245
+ notice: string;
246
+ onNotice: string;
247
+ noticeContainer: string;
248
+ onNoticeContainer: string;
249
+ negative: string;
250
+ onNegative: string;
251
+ negativeContainer: string;
252
+ onNegativeContainer: string;
253
+ positive: string;
254
+ onPositive: string;
255
+ positiveContainer: string;
256
+ onPositiveContainer: string;
257
+ };
258
+ component: {
259
+ surface: string;
260
+ onSurface: string;
261
+ onSurfaceVariant: string;
262
+ inverseSurface: string;
263
+ inverseOnSurface: string;
264
+ outline: string;
265
+ outlineVariant: string;
266
+ scrim: string;
267
+ };
268
+ interaction: {
269
+ disabled: string;
270
+ disabledOnSurface: string;
271
+ selectedSurface: string;
272
+ hovered: string;
273
+ hoveredVariant: string;
274
+ hoveredOnPrimary: string;
275
+ };
276
+ };
277
+ dimension: {
278
+ spacing: {
279
+ none: string;
280
+ twoExtraSmall: string;
281
+ extraSmall: string;
282
+ small: string;
283
+ medium: string;
284
+ large: string;
285
+ extraLarge: string;
286
+ twoExtraLarge: string;
287
+ threeExtraLarge: string;
288
+ fourExtraLarge: string;
289
+ fiveExtraLarge: string;
290
+ sixExtraLarge: string;
291
+ };
292
+ border: {
293
+ medium: string;
294
+ thick: string;
295
+ extraThick: string;
296
+ };
297
+ radius: {
298
+ extraSmall: string;
299
+ small: string;
300
+ medium: string;
301
+ large: string;
302
+ extraLarge: string;
303
+ full: string;
304
+ };
305
+ breakpoint: {
306
+ compact: string;
307
+ expanded: string;
308
+ };
309
+ };
310
+ elevation: {
311
+ shadow: {
312
+ level1: {
313
+ color: string;
314
+ offsetX: string;
315
+ offsetY: string;
316
+ blur: string;
317
+ spread: string;
318
+ };
319
+ level2: {
320
+ color: string;
321
+ offsetX: string;
322
+ offsetY: string;
323
+ blur: string;
324
+ spread: string;
325
+ };
326
+ level3: {
327
+ color: string;
328
+ offsetX: string;
329
+ offsetY: string;
330
+ blur: string;
331
+ spread: string;
332
+ };
333
+ level4: {
334
+ color: string;
335
+ offsetX: string;
336
+ offsetY: string;
337
+ blur: string;
338
+ spread: string;
339
+ };
340
+ level5: {
341
+ color: string;
342
+ offsetX: string;
343
+ offsetY: string;
344
+ blur: string;
345
+ spread: string;
346
+ };
347
+ };
348
+ zIndex: {
349
+ deepDive: number;
350
+ base: number;
351
+ docked: number;
352
+ dropdown: number;
353
+ modal: number;
354
+ toast: number;
355
+ };
356
+ };
357
+ typography: {
358
+ display: {
359
+ small_compact: {
360
+ fontSize: string;
361
+ fontWeight: number;
362
+ fontFamily: string;
363
+ lineHeight: number;
364
+ };
365
+ medium_compact: {
366
+ fontSize: string;
367
+ fontWeight: number;
368
+ fontFamily: string;
369
+ lineHeight: number;
370
+ };
371
+ small_expanded: {
372
+ fontSize: string;
373
+ fontWeight: number;
374
+ fontFamily: string;
375
+ lineHeight: number;
376
+ };
377
+ medium_expanded: {
378
+ fontSize: string;
379
+ fontWeight: number;
380
+ fontFamily: string;
381
+ lineHeight: number;
382
+ };
383
+ };
384
+ headline: {
385
+ small_compact: {
386
+ fontSize: string;
387
+ fontWeight: number;
388
+ fontFamily: string;
389
+ lineHeight: number;
390
+ };
391
+ medium_compact: {
392
+ fontSize: string;
393
+ fontWeight: number;
394
+ fontFamily: string;
395
+ lineHeight: number;
396
+ };
397
+ large_compact: {
398
+ fontSize: string;
399
+ fontWeight: number;
400
+ fontFamily: string;
401
+ lineHeight: number;
402
+ };
403
+ small_expanded: {
404
+ fontSize: string;
405
+ fontWeight: number;
406
+ fontFamily: string;
407
+ lineHeight: number;
408
+ };
409
+ medium_expanded: {
410
+ fontSize: string;
411
+ fontWeight: number;
412
+ fontFamily: string;
413
+ lineHeight: number;
414
+ };
415
+ large_expanded: {
416
+ fontSize: string;
417
+ fontWeight: number;
418
+ fontFamily: string;
419
+ lineHeight: number;
420
+ };
421
+ };
422
+ title: {
423
+ small_compact: {
424
+ fontSize: string;
425
+ fontWeight: number;
426
+ fontFamily: string;
427
+ lineHeight: number;
428
+ };
429
+ medium_compact: {
430
+ fontSize: string;
431
+ fontWeight: number;
432
+ fontFamily: string;
433
+ lineHeight: number;
434
+ };
435
+ large_compact: {
436
+ fontSize: string;
437
+ fontWeight: number;
438
+ fontFamily: string;
439
+ lineHeight: number;
440
+ };
441
+ small_expanded: {
442
+ fontSize: string;
443
+ fontWeight: number;
444
+ fontFamily: string;
445
+ lineHeight: number;
446
+ };
447
+ medium_expanded: {
448
+ fontSize: string;
449
+ fontWeight: number;
450
+ fontFamily: string;
451
+ lineHeight: number;
452
+ };
453
+ large_expanded: {
454
+ fontSize: string;
455
+ fontWeight: number;
456
+ fontFamily: string;
457
+ lineHeight: number;
458
+ };
459
+ };
460
+ body: {
461
+ extraSmall_compact: {
462
+ fontSize: string;
463
+ fontWeight: number;
464
+ fontFamily: string;
465
+ lineHeight: number;
466
+ };
467
+ small_compact: {
468
+ fontSize: string;
469
+ fontWeight: number;
470
+ fontFamily: string;
471
+ lineHeight: number;
472
+ };
473
+ medium_compact: {
474
+ fontSize: string;
475
+ fontWeight: number;
476
+ fontFamily: string;
477
+ lineHeight: number;
478
+ };
479
+ large_compact: {
480
+ fontSize: string;
481
+ fontWeight: number;
482
+ fontFamily: string;
483
+ lineHeight: number;
484
+ };
485
+ extraSmall_expanded: {
486
+ fontSize: string;
487
+ fontWeight: number;
488
+ fontFamily: string;
489
+ lineHeight: number;
490
+ };
491
+ small_expanded: {
492
+ fontSize: string;
493
+ fontWeight: number;
494
+ fontFamily: string;
495
+ lineHeight: number;
496
+ };
497
+ medium_expanded: {
498
+ fontSize: string;
499
+ fontWeight: number;
500
+ fontFamily: string;
501
+ lineHeight: number;
502
+ };
503
+ large_expanded: {
504
+ fontSize: string;
505
+ fontWeight: number;
506
+ fontFamily: string;
507
+ lineHeight: number;
508
+ };
509
+ };
510
+ label: {
511
+ small_compact: {
512
+ fontSize: string;
513
+ fontWeight: number;
514
+ fontFamily: string;
515
+ lineHeight: number;
516
+ };
517
+ medium_compact: {
518
+ fontSize: string;
519
+ fontWeight: number;
520
+ fontFamily: string;
521
+ lineHeight: number;
522
+ };
523
+ large_compact: {
524
+ fontSize: string;
525
+ fontWeight: number;
526
+ fontFamily: string;
527
+ lineHeight: number;
528
+ };
529
+ extraLarge_compact: {
530
+ fontSize: string;
531
+ fontWeight: number;
532
+ fontFamily: string;
533
+ lineHeight: number;
534
+ };
535
+ small_expanded: {
536
+ fontSize: string;
537
+ fontWeight: number;
538
+ fontFamily: string;
539
+ lineHeight: number;
540
+ };
541
+ medium_expanded: {
542
+ fontSize: string;
543
+ fontWeight: number;
544
+ fontFamily: string;
545
+ lineHeight: number;
546
+ };
547
+ large_expanded: {
548
+ fontSize: string;
549
+ fontWeight: number;
550
+ fontFamily: string;
551
+ lineHeight: number;
552
+ };
553
+ extraLarge_expanded: {
554
+ fontSize: string;
555
+ fontWeight: number;
556
+ fontFamily: string;
557
+ lineHeight: number;
558
+ };
559
+ };
560
+ };
561
+ };
562
+ };
563
+ themes: {
564
+ asagi: {
565
+ tokens: {
566
+ colors: {
567
+ sd: {
568
+ system: {
569
+ color: {
570
+ impression: {
571
+ primary: string;
572
+ onPrimary: string;
573
+ primaryContainer: string;
574
+ onPrimaryContainer: string;
575
+ secondary: string;
576
+ onSecondary: string;
577
+ secondaryContainer: string;
578
+ onSecondaryContainer: string;
579
+ tertiary: string;
580
+ onTertiary: string;
581
+ tertiaryContainer: string;
582
+ onTertiaryContainer: string;
583
+ notice: string;
584
+ onNotice: string;
585
+ noticeContainer: string;
586
+ onNoticeContainer: string;
587
+ negative: string;
588
+ onNegative: string;
589
+ negativeContainer: string;
590
+ onNegativeContainer: string;
591
+ positive: string;
592
+ onPositive: string;
593
+ positiveContainer: string;
594
+ onPositiveContainer: string;
595
+ };
596
+ component: {
597
+ surface: string;
598
+ onSurface: string;
599
+ onSurfaceVariant: string;
600
+ inverseSurface: string;
601
+ inverseOnSurface: string;
602
+ outline: string;
603
+ outlineVariant: string;
604
+ scrim: string;
605
+ };
606
+ interaction: {
607
+ disabled: string;
608
+ disabledOnSurface: string;
609
+ selectedSurface: string;
610
+ hovered: string;
611
+ hoveredVariant: string;
612
+ hoveredOnPrimary: string;
613
+ };
614
+ };
615
+ };
616
+ };
617
+ };
618
+ };
619
+ };
620
+ kurikawa: {
621
+ tokens: {
622
+ colors: {
623
+ sd: {
624
+ system: {
625
+ color: {
626
+ impression: {
627
+ primary: string;
628
+ onPrimary: string;
629
+ primaryContainer: string;
630
+ onPrimaryContainer: string;
631
+ secondary: string;
632
+ onSecondary: string;
633
+ secondaryContainer: string;
634
+ onSecondaryContainer: string;
635
+ tertiary: string;
636
+ onTertiary: string;
637
+ tertiaryContainer: string;
638
+ onTertiaryContainer: string;
639
+ notice: string;
640
+ onNotice: string;
641
+ noticeContainer: string;
642
+ onNoticeContainer: string;
643
+ negative: string;
644
+ onNegative: string;
645
+ negativeContainer: string;
646
+ onNegativeContainer: string;
647
+ positive: string;
648
+ onPositive: string;
649
+ positiveContainer: string;
650
+ onPositiveContainer: string;
651
+ };
652
+ component: {
653
+ surface: string;
654
+ onSurface: string;
655
+ onSurfaceVariant: string;
656
+ inverseSurface: string;
657
+ inverseOnSurface: string;
658
+ outline: string;
659
+ outlineVariant: string;
660
+ scrim: string;
661
+ };
662
+ interaction: {
663
+ disabled: string;
664
+ disabledOnSurface: string;
665
+ selectedSurface: string;
666
+ hovered: string;
667
+ hoveredVariant: string;
668
+ hoveredOnPrimary: string;
669
+ };
670
+ };
671
+ };
672
+ };
673
+ };
674
+ };
675
+ };
676
+ sumire: {
677
+ tokens: {
678
+ colors: {
679
+ sd: {
680
+ system: {
681
+ color: {
682
+ impression: {
683
+ primary: string;
684
+ onPrimary: string;
685
+ primaryContainer: string;
686
+ onPrimaryContainer: string;
687
+ secondary: string;
688
+ onSecondary: string;
689
+ secondaryContainer: string;
690
+ onSecondaryContainer: string;
691
+ tertiary: string;
692
+ onTertiary: string;
693
+ tertiaryContainer: string;
694
+ onTertiaryContainer: string;
695
+ notice: string;
696
+ onNotice: string;
697
+ noticeContainer: string;
698
+ onNoticeContainer: string;
699
+ negative: string;
700
+ onNegative: string;
701
+ negativeContainer: string;
702
+ onNegativeContainer: string;
703
+ positive: string;
704
+ onPositive: string;
705
+ positiveContainer: string;
706
+ onPositiveContainer: string;
707
+ };
708
+ component: {
709
+ surface: string;
710
+ onSurface: string;
711
+ onSurfaceVariant: string;
712
+ inverseSurface: string;
713
+ inverseOnSurface: string;
714
+ outline: string;
715
+ outlineVariant: string;
716
+ scrim: string;
717
+ };
718
+ interaction: {
719
+ disabled: string;
720
+ disabledOnSurface: string;
721
+ selectedSurface: string;
722
+ hovered: string;
723
+ hoveredVariant: string;
724
+ hoveredOnPrimary: string;
725
+ };
726
+ };
727
+ };
728
+ };
729
+ };
730
+ };
731
+ };
732
+ tsutsuji: {
733
+ tokens: {
734
+ colors: {
735
+ sd: {
736
+ system: {
737
+ color: {
738
+ impression: {
739
+ primary: string;
740
+ onPrimary: string;
741
+ primaryContainer: string;
742
+ onPrimaryContainer: string;
743
+ secondary: string;
744
+ onSecondary: string;
745
+ secondaryContainer: string;
746
+ onSecondaryContainer: string;
747
+ tertiary: string;
748
+ onTertiary: string;
749
+ tertiaryContainer: string;
750
+ onTertiaryContainer: string;
751
+ notice: string;
752
+ onNotice: string;
753
+ noticeContainer: string;
754
+ onNoticeContainer: string;
755
+ negative: string;
756
+ onNegative: string;
757
+ negativeContainer: string;
758
+ onNegativeContainer: string;
759
+ positive: string;
760
+ onPositive: string;
761
+ positiveContainer: string;
762
+ onPositiveContainer: string;
763
+ };
764
+ component: {
765
+ surface: string;
766
+ onSurface: string;
767
+ onSurfaceVariant: string;
768
+ inverseSurface: string;
769
+ inverseOnSurface: string;
770
+ outline: string;
771
+ outlineVariant: string;
772
+ scrim: string;
773
+ };
774
+ interaction: {
775
+ disabled: string;
776
+ disabledOnSurface: string;
777
+ selectedSurface: string;
778
+ hovered: string;
779
+ hoveredVariant: string;
780
+ hoveredOnPrimary: string;
781
+ };
782
+ };
783
+ };
784
+ };
785
+ };
786
+ };
787
+ };
788
+ };
789
+ };