@breadstone/mosaik-themes 0.0.175 → 0.0.177

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 (26) hide show
  1. package/Themes/___cosmopolitan-tokens.css +9 -9
  2. package/Themes/cosmopolitan-tokens.scss +9 -9
  3. package/Themes/cosmopolitan.scss +9 -9
  4. package/Theming/Strategies/CosmopolitanThemeGeneratorStrategy.d.ts.map +1 -1
  5. package/Theming/Strategies/CosmopolitanThemeGeneratorStrategy.js +7 -9
  6. package/Theming/Strategies/CosmopolitanThemeGeneratorStrategy.js.map +1 -1
  7. package/Theming/Strategies/MaterialThemeGeneratorStrategy.d.ts.map +1 -1
  8. package/Theming/Strategies/MaterialThemeGeneratorStrategy.js +17 -19
  9. package/Theming/Strategies/MaterialThemeGeneratorStrategy.js.map +1 -1
  10. package/Theming/Tokens/CosmopolitanTokens.d.ts +9 -9
  11. package/Theming/Tokens/CosmopolitanTokens.d.ts.map +1 -1
  12. package/Theming/Tokens/CosmopolitanTokens.js +9 -9
  13. package/Theming/Tokens/CosmopolitanTokens.js.map +1 -1
  14. package/package.json +3 -3
  15. package/tailwind/v3/mosaik-bootstrap.tailwind.config.cjs +85 -65
  16. package/tailwind/v3/mosaik-cosmopolitan.tailwind.config.cjs +110 -226
  17. package/tailwind/v3/mosaik-fluent.tailwind.config.cjs +35 -23
  18. package/tailwind/v3/mosaik-joy.tailwind.config.cjs +380 -517
  19. package/tailwind/v3/mosaik-material.tailwind.config.cjs +27 -15
  20. package/tailwind/v3/mosaik-memphis.tailwind.config.cjs +321 -401
  21. package/tailwind/v3/plugins/mosaik-bootstrap.tailwind.plugin.cjs +96 -80
  22. package/tailwind/v3/plugins/mosaik-cosmopolitan.tailwind.plugin.cjs +120 -240
  23. package/tailwind/v3/plugins/mosaik-fluent.tailwind.plugin.cjs +46 -38
  24. package/tailwind/v3/plugins/mosaik-joy.tailwind.plugin.cjs +391 -532
  25. package/tailwind/v3/plugins/mosaik-material.tailwind.plugin.cjs +38 -30
  26. package/tailwind/v3/plugins/mosaik-memphis.tailwind.plugin.cjs +332 -416
@@ -1,550 +1,409 @@
1
+ // ------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by a tool.
4
+ // Changes to this file may cause incorrect behavior and will be lost if
5
+ // the code is regenerated.
6
+ // </auto-generated>
7
+ // ------------------------------------------------------------------------------
8
+
1
9
  const plugin = require('tailwindcss/plugin');
2
10
 
3
- module.exports = {
4
- theme: {
11
+ module.exports = plugin(function({ addUtilities, theme, e }) {
12
+ // Optional: Add custom utilities here
13
+ // Example: Custom shadow utilities
14
+ // const shadows = theme('boxShadow') || {};
15
+ // const shadowUtils = Object.entries(shadows).reduce((acc, [key, value]) => {
16
+ // acc['.' + e('shadow-' + key)] = { boxShadow: value };
17
+ // return acc;
18
+ // }, {});
19
+ // addUtilities(shadowUtils);
20
+ }, {
5
21
  "extend": {
6
22
  "fontFamily": {
7
- "font.family": "Nunito, sans-serif",
8
- "typography.headline1.fontFamily": "Nunito, sans-serif",
9
- "typography.headline2'.fontFamily": "Nunito, sans-serif",
10
- "typography.headline3.fontFamily": "Nunito, sans-serif",
11
- "typography.headline4.fontFamily": "Nunito, sans-serif",
12
- "typography.headline5.fontFamily": "Nunito, sans-serif",
13
- "typography.headline6.fontFamily": "Nunito, sans-serif",
14
- "typography.subtitle1.fontFamily": "Nunito, sans-serif",
15
- "typography.subtitle2.fontFamily": "Nunito, sans-serif",
16
- "typography.body1.fontFamily": "Nunito, sans-serif",
17
- "typography.body2.fontFamily": "Nunito, sans-serif",
18
- "typography.caption.fontFamily": "Nunito, sans-serif",
19
- "typography.button.fontFamily": "Nunito, sans-serif",
20
- "typography.overline.fontFamily": "Nunito, sans-serif"
23
+ "sans": "Nunito, sans-serif",
24
+ "headline1": "Nunito, sans-serif",
25
+ "headline2'": "Nunito, sans-serif",
26
+ "headline3": "Nunito, sans-serif",
27
+ "headline4": "Nunito, sans-serif",
28
+ "headline5": "Nunito, sans-serif",
29
+ "headline6": "Nunito, sans-serif",
30
+ "subtitle1": "Nunito, sans-serif",
31
+ "subtitle2": "Nunito, sans-serif",
32
+ "body1": "Nunito, sans-serif",
33
+ "body2": "Nunito, sans-serif",
34
+ "caption": "Nunito, sans-serif",
35
+ "button": "Nunito, sans-serif",
36
+ "overline": "Nunito, sans-serif"
37
+ },
38
+ "borderRadius": {
39
+ "DEFAULT": "12px"
21
40
  },
22
41
  "spacing": {
23
- "layout.radius": "12px",
24
- "layout.space": "8px",
25
- "layout.thickness": "2px",
26
- "typography.headline1.lineHeight": "100px",
27
- "typography.headline2'.lineHeight": "64px",
28
- "typography.headline3.lineHeight": "52px",
29
- "typography.headline4.lineHeight": "38px",
30
- "typography.headline5.lineHeight": "28px",
31
- "typography.headline6.lineHeight": "24px",
32
- "typography.subtitle1.lineHeight": "20px",
33
- "typography.subtitle2.lineHeight": "18px",
34
- "typography.body1.lineHeight": "20px",
35
- "typography.body2.lineHeight": "18px",
36
- "typography.caption.lineHeight": "16px",
37
- "typography.button.lineHeight": "18px",
38
- "typography.overline.lineHeight": "16px",
39
- "elevation.light.light.offsetX.0": "0px",
40
- "elevation.light.light.offsetX.1": "0px",
41
- "elevation.light.light.offsetY.0": "0px",
42
- "elevation.light.light.offsetY.1": "1px",
43
- "elevation.light.light.blur.0": "2px",
44
- "elevation.light.light.blur.1": "2px",
45
- "elevation.light.light.spread.0": "0px",
46
- "elevation.light.light.spread.1": "0px",
47
- "elevation.light.semilight.offsetX.0": "0px",
48
- "elevation.light.semilight.offsetX.1": "0px",
49
- "elevation.light.semilight.offsetY.0": "0px",
50
- "elevation.light.semilight.offsetY.1": "2px",
51
- "elevation.light.semilight.blur.0": "2px",
52
- "elevation.light.semilight.blur.1": "4px",
53
- "elevation.light.semilight.spread.0": "0px",
54
- "elevation.light.semilight.spread.1": "0px",
55
- "elevation.light.regular.offsetX.0": "0px",
56
- "elevation.light.regular.offsetX.1": "0px",
57
- "elevation.light.regular.offsetY.0": "0px",
58
- "elevation.light.regular.offsetY.1": "4px",
59
- "elevation.light.regular.blur.0": "2px",
60
- "elevation.light.regular.blur.1": "8px",
61
- "elevation.light.regular.spread.0": "0px",
62
- "elevation.light.regular.spread.1": "0px",
63
- "elevation.light.semibold.offsetX.0": "0px",
64
- "elevation.light.semibold.offsetX.1": "0px",
65
- "elevation.light.semibold.offsetY.0": "0px",
66
- "elevation.light.semibold.offsetY.1": "8px",
67
- "elevation.light.semibold.blur.0": "2px",
68
- "elevation.light.semibold.blur.1": "16px",
69
- "elevation.light.semibold.spread.0": "0px",
70
- "elevation.light.semibold.spread.1": "0px",
71
- "elevation.light.bold.offsetX.0": "0px",
72
- "elevation.light.bold.offsetX.1": "0px",
73
- "elevation.light.bold.offsetY.0": "0px",
74
- "elevation.light.bold.offsetY.1": "14px",
75
- "elevation.light.bold.blur.0": "8px",
76
- "elevation.light.bold.blur.1": "28px",
77
- "elevation.light.bold.spread.0": "0px",
78
- "elevation.light.bold.spread.1": "0px",
79
- "elevation.light.extrabold.offsetX.0": "0px",
80
- "elevation.light.extrabold.offsetX.1": "0px",
81
- "elevation.light.extrabold.offsetY.0": "0px",
82
- "elevation.light.extrabold.offsetY.1": "32px",
83
- "elevation.light.extrabold.blur.0": "8px",
84
- "elevation.light.extrabold.blur.1": "64px",
85
- "elevation.light.extrabold.spread.0": "0px",
86
- "elevation.light.extrabold.spread.1": "0px",
87
- "elevation.dark.light.offsetX.0": "0px",
88
- "elevation.dark.light.offsetX.1": "0px",
89
- "elevation.dark.light.offsetY.0": "0px",
90
- "elevation.dark.light.offsetY.1": "1px",
91
- "elevation.dark.light.blur.0": "2px",
92
- "elevation.dark.light.blur.1": "2px",
93
- "elevation.dark.light.spread.0": "0px",
94
- "elevation.dark.light.spread.1": "0px",
95
- "elevation.dark.semilight.offsetX.0": "0px",
96
- "elevation.dark.semilight.offsetX.1": "0px",
97
- "elevation.dark.semilight.offsetY.0": "0px",
98
- "elevation.dark.semilight.offsetY.1": "2px",
99
- "elevation.dark.semilight.blur.0": "2px",
100
- "elevation.dark.semilight.blur.1": "4px",
101
- "elevation.dark.semilight.spread.0": "0px",
102
- "elevation.dark.semilight.spread.1": "0px",
103
- "elevation.dark.regular.offsetX.0": "0px",
104
- "elevation.dark.regular.offsetX.1": "0px",
105
- "elevation.dark.regular.offsetY.0": "0px",
106
- "elevation.dark.regular.offsetY.1": "4px",
107
- "elevation.dark.regular.blur.0": "2px",
108
- "elevation.dark.regular.blur.1": "8px",
109
- "elevation.dark.regular.spread.0": "0px",
110
- "elevation.dark.regular.spread.1": "0px",
111
- "elevation.dark.semibold.offsetX.0": "0px",
112
- "elevation.dark.semibold.offsetX.1": "0px",
113
- "elevation.dark.semibold.offsetY.0": "0px",
114
- "elevation.dark.semibold.offsetY.1": "8px",
115
- "elevation.dark.semibold.blur.0": "2px",
116
- "elevation.dark.semibold.blur.1": "16px",
117
- "elevation.dark.semibold.spread.0": "0px",
118
- "elevation.dark.semibold.spread.1": "0px",
119
- "elevation.dark.bold.offsetX.0": "0px",
120
- "elevation.dark.bold.offsetX.1": "0px",
121
- "elevation.dark.bold.offsetY.0": "0px",
122
- "elevation.dark.bold.offsetY.1": "14px",
123
- "elevation.dark.bold.blur.0": "8px",
124
- "elevation.dark.bold.blur.1": "28px",
125
- "elevation.dark.bold.spread.0": "0px",
126
- "elevation.dark.bold.spread.1": "0px",
127
- "elevation.dark.extrabold.offsetX.0": "0px",
128
- "elevation.dark.extrabold.offsetX.1": "0px",
129
- "elevation.dark.extrabold.offsetY.0": "0px",
130
- "elevation.dark.extrabold.offsetY.1": "32px",
131
- "elevation.dark.extrabold.blur.0": "8px",
132
- "elevation.dark.extrabold.blur.1": "64px",
133
- "elevation.dark.extrabold.spread.0": "0px",
134
- "elevation.dark.extrabold.spread.1": "0px",
135
- "size.tiny": "2px",
136
- "size.small": "4px",
137
- "size.medium": "8px",
138
- "size.large": "16px",
139
- "size.giant": "32px"
42
+ "DEFAULT": "8px"
43
+ },
44
+ "borderWidth": {
45
+ "DEFAULT": "2px"
140
46
  },
141
47
  "colors": {
142
- "scheme": {
143
- "light": {
144
- "background": "rgb(234, 234, 234)",
145
- "foreground": "rgb(60, 69, 79)",
146
- "highlight": "rgb(209, 209, 209)",
147
- "middlelight": "rgb(138, 138, 138)",
148
- "lowlight": "rgb(92, 92, 92)",
149
- "transparent": "rgba(255, 255, 255, 0)",
150
- "semiTransparent": "rgba(255, 255, 255, 0.67)",
151
- "disabled": "rgb(104, 104, 104)",
152
- "contrast": "rgb(255, 255, 255)",
153
- "selection": "rgba(204, 204, 204, 0.44)"
154
- },
155
- "dark": {
156
- "background": "rgb(21, 21, 21)",
157
- "foreground": "rgb(195, 186, 176)",
158
- "highlight": "rgb(46, 46, 46)",
159
- "middlelight": "rgb(117, 117, 117)",
160
- "lowlight": "rgb(163, 163, 163)",
161
- "transparent": "rgba(255, 255, 255, 0)",
162
- "semiTransparent": "rgba(255, 255, 255, 0.03)",
163
- "disabled": "rgb(71, 71, 71)",
164
- "contrast": "rgb(0, 0, 0)",
165
- "selection": "rgba(204, 204, 204, 0.44)"
166
- }
167
- },
168
- "color": {
169
- "light": {
170
- "primary": {
171
- "0": "rgb(255, 255, 255)",
172
- "50": "rgb(252, 228, 236)",
173
- "100": "#f8bcd0",
174
- "200": "rgb(244, 143, 177)",
175
- "300": "rgb(240, 98, 146)",
176
- "400": "#ec407a",
177
- "500": "rgb(233, 30, 99)",
178
- "600": "rgb(203, 26, 86)",
179
- "700": "rgb(163, 21, 69)",
180
- "800": "rgb(126, 16, 53)",
181
- "900": "rgb(58, 8, 25)"
182
- },
183
- "secondary": {
184
- "0": "rgb(255, 255, 255)",
185
- "50": "rgb(230, 246, 233)",
186
- "100": "rgb(195, 232, 201)",
187
- "200": "rgb(155, 217, 167)",
188
- "300": "rgb(112, 203, 131)",
189
- "400": "rgb(77, 191, 104)",
190
- "500": "rgb(33, 179, 77)",
191
- "600": "rgb(22, 164, 68)",
192
- "700": "rgb(0, 146, 56)",
193
- "800": "rgb(0, 129, 45)",
194
- "900": "rgb(0, 98, 24)"
195
- },
196
- "tertiary": {
197
- "0": "rgb(255, 255, 255)",
198
- "50": "rgb(225, 245, 252)",
199
- "100": "rgb(180, 230, 247)",
200
- "200": "rgb(132, 213, 243)",
201
- "300": "rgb(86, 197, 238)",
202
- "400": "rgb(53, 184, 235)",
203
- "500": "rgb(25, 172, 233)",
204
- "600": "rgb(19, 158, 219)",
205
- "700": "rgb(9, 139, 199)",
206
- "800": "rgb(8, 122, 180)",
207
- "900": "rgb(0, 90, 146)"
208
- },
209
- "info": {
210
- "0": "rgb(255, 255, 255)",
211
- "50": "rgb(244, 250, 255)",
212
- "100": "rgb(221, 241, 255)",
213
- "200": "rgb(173, 219, 255)",
214
- "300": "rgb(111, 182, 255)",
215
- "400": "rgb(57, 144, 255)",
216
- "500": "rgb(9, 107, 222)",
217
- "600": "rgb(5, 77, 167)",
218
- "700": "rgb(2, 54, 125)",
219
- "800": "rgb(7, 40, 89)",
220
- "900": "rgb(0, 21, 60)"
221
- },
222
- "warning": {
223
- "0": "rgb(255, 255, 255)",
224
- "50": "rgb(255, 248, 197)",
225
- "100": "rgb(250, 225, 125)",
226
- "200": "rgb(234, 197, 79)",
227
- "300": "rgb(212, 167, 44)",
228
- "400": "rgb(191, 135, 0)",
229
- "500": "rgb(154, 103, 0)",
230
- "600": "rgb(125, 78, 0)",
231
- "700": "rgb(99, 60, 1)",
232
- "800": "rgb(77, 45, 0)",
233
- "900": "rgb(59, 35, 0)"
234
- },
235
- "danger": {
236
- "0": "rgb(255, 255, 255)",
237
- "50": "rgb(255, 248, 246)",
238
- "100": "rgb(255, 233, 232)",
239
- "200": "rgb(255, 199, 197)",
240
- "300": "rgb(255, 145, 146)",
241
- "400": "rgb(250, 82, 85)",
242
- "500": "rgb(211, 35, 47)",
243
- "600": "rgb(161, 14, 37)",
244
- "700": "rgb(119, 6, 27)",
245
- "800": "rgb(88, 0, 19)",
246
- "900": "rgb(57, 0, 13)"
247
- },
248
- "success": {
249
- "0": "rgb(255, 255, 255)",
250
- "50": "rgb(243, 254, 245)",
251
- "100": "rgb(215, 245, 221)",
252
- "200": "rgb(119, 236, 149)",
253
- "300": "rgb(76, 199, 110)",
254
- "400": "rgb(44, 162, 77)",
255
- "500": "rgb(26, 125, 54)",
256
- "600": "rgb(15, 93, 38)",
257
- "700": "rgb(3, 67, 24)",
258
- "800": "rgb(0, 47, 15)",
259
- "900": "rgb(0, 29, 9)"
260
- },
261
- "highlight": {
262
- "0": "rgb(255, 255, 255)",
263
- "50": "rgb(253, 247, 255)",
264
- "100": "rgb(244, 234, 255)",
265
- "200": "rgb(225, 203, 255)",
266
- "300": "rgb(198, 158, 255)",
267
- "400": "rgb(163, 116, 249)",
268
- "500": "rgb(129, 77, 222)",
269
- "600": "rgb(95, 53, 174)",
270
- "700": "rgb(69, 35, 130)",
271
- "800": "rgb(48, 23, 97)",
272
- "900": "rgb(29, 10, 66)"
273
- },
274
- "neutral": {
275
- "0": "rgb(255, 255, 255)",
276
- "50": "rgb(247, 247, 248)",
277
- "100": "rgb(235, 235, 239)",
278
- "200": "rgb(216, 216, 223)",
279
- "300": "rgb(185, 185, 198)",
280
- "400": "rgb(143, 143, 163)",
281
- "500": "rgb(115, 115, 140)",
282
- "600": "rgb(90, 90, 114)",
283
- "700": "rgb(67, 67, 86)",
284
- "800": "rgb(37, 37, 45)",
285
- "900": "rgb(19, 19, 24)"
286
- }
287
- },
288
- "dark": {
289
- "primary": {
290
- "0": "rgb(0, 0, 0)",
291
- "50": "rgb(58, 8, 25)",
292
- "100": "rgb(126, 16, 53)",
293
- "200": "rgb(163, 21, 69)",
294
- "300": "rgb(203, 26, 86)",
295
- "400": "rgb(233, 30, 99)",
296
- "500": "rgb(236, 64, 122)",
297
- "600": "rgb(240, 98, 146)",
298
- "700": "rgb(244, 143, 177)",
299
- "800": "rgb(248, 188, 208)",
300
- "900": "rgb(252, 228, 236)"
301
- },
302
- "secondary": {
303
- "0": "rgb(0, 0, 0)",
304
- "50": "rgb(0, 98, 24)",
305
- "100": "rgb(0, 129, 45)",
306
- "200": "rgb(0, 146, 56)",
307
- "300": "rgb(22, 164, 68)",
308
- "400": "rgb(33, 179, 77)",
309
- "500": "rgb(77, 191, 104)",
310
- "600": "rgb(112, 203, 131)",
311
- "700": "rgb(155, 217, 167)",
312
- "800": "rgb(195, 232, 201)",
313
- "900": "rgb(230, 246, 233)"
314
- },
315
- "tertiary": {
316
- "0": "rgb(0, 0, 0)",
317
- "50": "rgb(0, 90, 146)",
318
- "100": "rgb(8, 122, 180)",
319
- "200": "rgb(9, 139, 199)",
320
- "300": "rgb(19, 158, 219)",
321
- "400": "rgb(25, 172, 233)",
322
- "500": "rgb(53, 184, 235)",
323
- "600": "rgb(86, 197, 238)",
324
- "700": "rgb(132, 213, 243)",
325
- "800": "rgb(180, 230, 247)",
326
- "900": "rgb(225, 245, 252)"
327
- },
328
- "info": {
329
- "0": "rgb(0, 0, 0)",
330
- "50": "rgb(0, 21, 60)",
331
- "100": "rgb(7, 40, 89)",
332
- "200": "rgb(2, 54, 125)",
333
- "300": "rgb(5, 77, 167)",
334
- "400": "rgb(9, 107, 222)",
335
- "500": "rgb(57, 144, 255)",
336
- "600": "rgb(111, 182, 255)",
337
- "700": "rgb(173, 219, 255)",
338
- "800": "rgb(221, 241, 255)",
339
- "900": "rgb(244, 250, 255)"
340
- },
341
- "warning": {
342
- "0": "rgb(0, 0, 0)",
343
- "50": "rgb(59, 35, 0)",
344
- "100": "rgb(77, 45, 0)",
345
- "200": "rgb(99, 60, 1)",
346
- "300": "rgb(125, 78, 0)",
347
- "400": "rgb(154, 103, 0)",
348
- "500": "rgb(191, 135, 0)",
349
- "600": "rgb(212, 167, 44)",
350
- "700": "rgb(234, 197, 79)",
351
- "800": "rgb(250, 225, 125)",
352
- "900": "rgb(255, 248, 197)"
353
- },
354
- "danger": {
355
- "0": "rgb(0, 0, 0)",
356
- "50": "rgb(57, 0, 13)",
357
- "100": "rgb(88, 0, 19)",
358
- "200": "rgb(119, 6, 27)",
359
- "300": "rgb(161, 14, 37)",
360
- "400": "rgb(211, 35, 47)",
361
- "500": "rgb(250, 82, 85)",
362
- "600": "rgb(255, 145, 146)",
363
- "700": "rgb(255, 199, 197)",
364
- "800": "rgb(255, 233, 232)",
365
- "900": "rgb(255, 248, 246)"
366
- },
367
- "success": {
368
- "0": "rgb(0, 0, 0)",
369
- "50": "rgb(0, 29, 9)",
370
- "100": "rgb(0, 47, 15)",
371
- "200": "rgb(3, 67, 24)",
372
- "300": "rgb(15, 93, 38)",
373
- "400": "rgb(26, 125, 54)",
374
- "500": "rgb(44, 162, 77)",
375
- "600": "rgb(76, 199, 110)",
376
- "700": "rgb(119, 236, 149)",
377
- "800": "rgb(215, 245, 221)",
378
- "900": "rgb(243, 254, 245)"
379
- },
380
- "highlight": {
381
- "0": "rgb(0, 0, 0)",
382
- "50": "rgb(29, 10, 66)",
383
- "100": "rgb(48, 23, 97)",
384
- "200": "rgb(69, 35, 130)",
385
- "300": "rgb(95, 53, 174)",
386
- "400": "rgb(129, 77, 222)",
387
- "500": "rgb(163, 116, 249)",
388
- "600": "rgb(198, 158, 255)",
389
- "700": "rgb(225, 203, 255)",
390
- "800": "rgb(244, 234, 255)",
391
- "900": "rgb(253, 247, 255)"
392
- },
393
- "neutral": {
394
- "0": "rgb(0, 0, 0)",
395
- "50": "rgb(19, 19, 24)",
396
- "100": "rgb(37, 37, 45)",
397
- "200": "rgb(67, 67, 86)",
398
- "300": "rgb(90, 90, 114)",
399
- "400": "rgb(115, 115, 140)",
400
- "500": "rgb(143, 143, 163)",
401
- "600": "rgb(185, 185, 198)",
402
- "700": "rgb(216, 216, 223)",
403
- "800": "rgb(235, 235, 239)",
404
- "900": "rgb(247, 247, 248)"
405
- }
406
- }
407
- },
408
- "elevation": {
409
- "light": {
410
- "light": {
411
- "color": {
412
- "0": "rgba(0, 0, 0, 0.12)",
413
- "1": "rgba(0, 0, 0, 0.14)"
414
- }
415
- },
416
- "semilight": {
417
- "color": {
418
- "0": "rgba(0, 0, 0, 0.12)",
419
- "1": "rgba(0, 0, 0, 0.14)"
420
- }
421
- },
422
- "regular": {
423
- "color": {
424
- "0": "rgba(0, 0, 0, 0.12)",
425
- "1": "rgba(0, 0, 0, 0.14)"
426
- }
427
- },
428
- "semibold": {
429
- "color": {
430
- "0": "rgba(0, 0, 0, 0.12)",
431
- "1": "rgba(0, 0, 0, 0.14)"
432
- }
433
- },
434
- "bold": {
435
- "color": {
436
- "0": "rgba(0, 0, 0, 0.12)",
437
- "1": "rgba(0, 0, 0, 0.14)"
438
- }
439
- },
440
- "extrabold": {
441
- "color": {
442
- "0": "rgba(0, 0, 0, 0.12)",
443
- "1": "rgba(0, 0, 0, 0.14)"
444
- }
445
- }
446
- },
447
- "dark": {
448
- "light": {
449
- "color": {
450
- "0": "rgba(0, 0, 0, 0.24)",
451
- "1": "rgba(0, 0, 0, 0.28)"
452
- }
453
- },
454
- "semilight": {
455
- "color": {
456
- "0": "rgba(0, 0, 0, 0.24)",
457
- "1": "rgba(0, 0, 0, 0.28)"
458
- }
459
- },
460
- "regular": {
461
- "color": {
462
- "0": "rgba(0, 0, 0, 0.24)",
463
- "1": "rgba(0, 0, 0, 0.28)"
464
- }
465
- },
466
- "semibold": {
467
- "color": {
468
- "0": "rgba(0, 0, 0, 0.24)",
469
- "1": "rgba(0, 0, 0, 0.28)"
470
- }
471
- },
472
- "bold": {
473
- "color": {
474
- "0": "rgba(0, 0, 0, 0.24)",
475
- "1": "rgba(0, 0, 0, 0.28)"
476
- }
477
- },
478
- "extrabold": {
479
- "color": {
480
- "0": "rgba(0, 0, 0, 0.24)",
481
- "1": "rgba(0, 0, 0, 0.28)"
482
- }
483
- }
484
- }
48
+ "scheme-background": {
49
+ "DEFAULT": "oklch(93.70% 0.0000 NaN)"
50
+ },
51
+ "scheme-foreground": {
52
+ "DEFAULT": "oklch(38.62% 0.0207 251.11)"
53
+ },
54
+ "scheme-highlight": {
55
+ "DEFAULT": "oklch(86.07% 0.0000 NaN)"
56
+ },
57
+ "scheme-middlelight": {
58
+ "DEFAULT": "oklch(63.34% 0.0000 NaN)"
59
+ },
60
+ "scheme-lowlight": {
61
+ "DEFAULT": "oklch(47.48% 0.0000 NaN)"
62
+ },
63
+ "scheme-transparent": {
64
+ "DEFAULT": "oklch(100.00% 0.0000 NaN / 0.00)"
65
+ },
66
+ "scheme-semiTransparent": {
67
+ "DEFAULT": "oklch(100.00% 0.0000 NaN / 0.67)"
68
+ },
69
+ "scheme-disabled": {
70
+ "DEFAULT": "oklch(51.73% 0.0000 NaN)"
71
+ },
72
+ "scheme-contrast": {
73
+ "DEFAULT": "oklch(100.00% 0.0000 NaN)"
74
+ },
75
+ "scheme-selection": {
76
+ "DEFAULT": "oklch(84.52% 0.0000 NaN / 0.44)"
77
+ },
78
+ "scheme-background-dark": {
79
+ "DEFAULT": "oklch(19.57% 0.0000 NaN)"
80
+ },
81
+ "scheme-foreground-dark": {
82
+ "DEFAULT": "oklch(79.35% 0.0173 70.48)"
83
+ },
84
+ "scheme-highlight-dark": {
85
+ "DEFAULT": "oklch(30.12% 0.0000 NaN)"
86
+ },
87
+ "scheme-middlelight-dark": {
88
+ "DEFAULT": "oklch(56.24% 0.0000 NaN)"
89
+ },
90
+ "scheme-lowlight-dark": {
91
+ "DEFAULT": "oklch(71.55% 0.0000 NaN)"
92
+ },
93
+ "scheme-transparent-dark": {
94
+ "DEFAULT": "oklch(100.00% 0.0000 NaN / 0.00)"
95
+ },
96
+ "scheme-semiTransparent-dark": {
97
+ "DEFAULT": "oklch(100.00% 0.0000 NaN / 0.03)"
98
+ },
99
+ "scheme-disabled-dark": {
100
+ "DEFAULT": "oklch(39.79% 0.0000 NaN)"
101
+ },
102
+ "scheme-contrast-dark": {
103
+ "DEFAULT": "oklch(0.00% 0.0000 NaN)"
104
+ },
105
+ "scheme-selection-dark": {
106
+ "DEFAULT": "oklch(84.52% 0.0000 NaN / 0.44)"
107
+ },
108
+ "primary": {
109
+ "0": "oklch(100.00% 0.0000 NaN)",
110
+ "50": "oklch(94.05% 0.0282 355.51)",
111
+ "100": "#f8bcd0",
112
+ "200": "oklch(76.57% 0.1276 358.98)",
113
+ "300": "oklch(68.78% 0.1797 1.97)",
114
+ "400": "#ec407a",
115
+ "500": "oklch(60.62% 0.2298 9.63)",
116
+ "600": "oklch(54.73% 0.2066 9.46)",
117
+ "700": "oklch(46.66% 0.1743 9.02)",
118
+ "800": "oklch(38.85% 0.1431 8.52)",
119
+ "900": "oklch(23.55% 0.0784 5.22)"
120
+ },
121
+ "secondary": {
122
+ "0": "oklch(100.00% 0.0000 NaN)",
123
+ "50": "oklch(95.77% 0.0241 151.10)",
124
+ "100": "oklch(89.61% 0.0571 149.74)",
125
+ "200": "oklch(82.99% 0.0942 149.93)",
126
+ "300": "oklch(76.70% 0.1351 149.12)",
127
+ "400": "oklch(71.84% 0.1617 148.57)",
128
+ "500": "oklch(67.23% 0.1848 147.88)",
129
+ "600": "oklch(62.90% 0.1763 147.89)",
130
+ "700": "oklch(57.54% 0.1673 147.83)",
131
+ "800": "oklch(52.56% 0.1558 147.09)",
132
+ "900": "oklch(43.14% 0.1344 145.31)"
133
+ },
134
+ "tertiary": {
135
+ "0": "oklch(100.00% 0.0000 NaN)",
136
+ "50": "oklch(95.75% 0.0231 220.67)",
137
+ "100": "oklch(89.57% 0.0563 220.64)",
138
+ "200": "oklch(83.17% 0.0896 223.70)",
139
+ "300": "oklch(77.54% 0.1158 225.67)",
140
+ "400": "oklch(73.53% 0.1310 229.33)",
141
+ "500": "oklch(70.20% 0.1419 233.82)",
142
+ "600": "oklch(66.14% 0.1382 235.75)",
143
+ "700": "oklch(60.48% 0.1324 238.12)",
144
+ "800": "oklch(55.32% 0.1255 240.41)",
145
+ "900": "oklch(45.31% 0.1162 245.86)"
146
+ },
147
+ "info": {
148
+ "0": "oklch(100.00% 0.0000 NaN)",
149
+ "50": "oklch(98.20% 0.0092 242.79)",
150
+ "100": "oklch(94.76% 0.0284 238.21)",
151
+ "200": "oklch(87.12% 0.0693 242.12)",
152
+ "300": "oklch(75.94% 0.1278 250.45)",
153
+ "400": "oklch(65.77% 0.1844 256.27)",
154
+ "500": "oklch(54.72% 0.1933 257.47)",
155
+ "600": "oklch(43.86% 0.1585 258.07)",
156
+ "700": "oklch(35.06% 0.1310 258.67)",
157
+ "800": "oklch(28.68% 0.0962 258.87)",
158
+ "900": "oklch(20.84% 0.0811 259.09)"
159
+ },
160
+ "warning": {
161
+ "0": "oklch(100.00% 0.0000 NaN)",
162
+ "50": "oklch(97.22% 0.0659 100.99)",
163
+ "100": "oklch(90.99% 0.1235 95.66)",
164
+ "200": "oklch(83.42% 0.1401 91.50)",
165
+ "300": "oklch(74.98% 0.1407 87.05)",
166
+ "400": "oklch(66.19% 0.1374 79.24)",
167
+ "500": "oklch(55.42% 0.1169 75.00)",
168
+ "600": "oklch(46.65% 0.1009 70.17)",
169
+ "700": "oklch(39.37% 0.0853 68.93)",
170
+ "800": "oklch(32.98% 0.0722 68.30)",
171
+ "900": "oklch(28.03% 0.0602 71.48)"
172
+ },
173
+ "danger": {
174
+ "0": "oklch(100.00% 0.0000 NaN)",
175
+ "50": "oklch(98.40% 0.0080 36.71)",
176
+ "100": "oklch(95.14% 0.0241 20.79)",
177
+ "200": "oklch(87.87% 0.0643 20.84)",
178
+ "300": "oklch(77.41% 0.1330 20.02)",
179
+ "400": "oklch(67.11% 0.2042 23.57)",
180
+ "500": "oklch(55.98% 0.2080 24.57)",
181
+ "600": "oklch(45.31% 0.1751 21.97)",
182
+ "700": "oklch(36.34% 0.1413 20.63)",
183
+ "800": "oklch(29.16% 0.1169 18.65)",
184
+ "900": "oklch(21.92% 0.0876 14.52)"
185
+ },
186
+ "success": {
187
+ "0": "oklch(100.00% 0.0000 NaN)",
188
+ "50": "oklch(98.64% 0.0165 150.99)",
189
+ "100": "oklch(94.20% 0.0448 151.23)",
190
+ "200": "oklch(85.32% 0.1616 150.11)",
191
+ "300": "oklch(73.96% 0.1674 149.48)",
192
+ "400": "oklch(62.86% 0.1606 148.43)",
193
+ "500": "oklch(51.86% 0.1383 147.98)",
194
+ "600": "oklch(42.02% 0.1131 148.08)",
195
+ "700": "oklch(33.49% 0.0936 148.36)",
196
+ "800": "oklch(26.65% 0.0750 149.11)",
197
+ "900": "oklch(20.20% 0.0538 151.47)"
198
+ },
199
+ "highlight": {
200
+ "0": "oklch(100.00% 0.0000 NaN)",
201
+ "50": "oklch(98.30% 0.0123 317.91)",
202
+ "100": "oklch(95.10% 0.0298 307.19)",
203
+ "200": "oklch(87.70% 0.0743 304.18)",
204
+ "300": "oklch(77.21% 0.1405 302.22)",
205
+ "400": "oklch(66.65% 0.1915 297.24)",
206
+ "500": "oklch(55.72% 0.2094 295.22)",
207
+ "600": "oklch(45.17% 0.1813 293.78)",
208
+ "700": "oklch(36.12% 0.1494 293.98)",
209
+ "800": "oklch(28.99% 0.1222 292.55)",
210
+ "900": "oklch(21.71% 0.0975 291.58)"
211
+ },
212
+ "neutral": {
213
+ "0": "oklch(100.00% 0.0000 NaN)",
214
+ "50": "oklch(97.64% 0.0013 287.31)",
215
+ "100": "oklch(94.12% 0.0053 286.52)",
216
+ "200": "oklch(88.43% 0.0095 286.32)",
217
+ "300": "oklch(78.98% 0.0182 286.03)",
218
+ "400": "oklch(65.67% 0.0294 285.59)",
219
+ "500": "oklch(56.46% 0.0383 285.12)",
220
+ "600": "oklch(47.68% 0.0384 284.87)",
221
+ "700": "oklch(39.06% 0.0320 284.84)",
222
+ "800": "oklch(26.79% 0.0148 285.38)",
223
+ "900": "oklch(18.91% 0.0101 285.42)"
224
+ },
225
+ "primary-dark": {
226
+ "0": "oklch(0.00% 0.0000 NaN)",
227
+ "50": "oklch(23.55% 0.0784 5.22)",
228
+ "100": "oklch(38.85% 0.1431 8.52)",
229
+ "200": "oklch(46.66% 0.1743 9.02)",
230
+ "300": "oklch(54.73% 0.2066 9.46)",
231
+ "400": "oklch(60.62% 0.2298 9.63)",
232
+ "500": "oklch(63.92% 0.2104 5.28)",
233
+ "600": "oklch(68.78% 0.1797 1.97)",
234
+ "700": "oklch(76.57% 0.1276 358.98)",
235
+ "800": "oklch(85.51% 0.0733 356.98)",
236
+ "900": "oklch(94.05% 0.0282 355.51)"
237
+ },
238
+ "secondary-dark": {
239
+ "0": "oklch(0.00% 0.0000 NaN)",
240
+ "50": "oklch(43.14% 0.1344 145.31)",
241
+ "100": "oklch(52.56% 0.1558 147.09)",
242
+ "200": "oklch(57.54% 0.1673 147.83)",
243
+ "300": "oklch(62.90% 0.1763 147.89)",
244
+ "400": "oklch(67.23% 0.1848 147.88)",
245
+ "500": "oklch(71.84% 0.1617 148.57)",
246
+ "600": "oklch(76.70% 0.1351 149.12)",
247
+ "700": "oklch(82.99% 0.0942 149.93)",
248
+ "800": "oklch(89.61% 0.0571 149.74)",
249
+ "900": "oklch(95.77% 0.0241 151.10)"
250
+ },
251
+ "tertiary-dark": {
252
+ "0": "oklch(0.00% 0.0000 NaN)",
253
+ "50": "oklch(45.31% 0.1162 245.86)",
254
+ "100": "oklch(55.32% 0.1255 240.41)",
255
+ "200": "oklch(60.48% 0.1324 238.12)",
256
+ "300": "oklch(66.14% 0.1382 235.75)",
257
+ "400": "oklch(70.20% 0.1419 233.82)",
258
+ "500": "oklch(73.53% 0.1310 229.33)",
259
+ "600": "oklch(77.54% 0.1158 225.67)",
260
+ "700": "oklch(83.17% 0.0896 223.70)",
261
+ "800": "oklch(89.57% 0.0563 220.64)",
262
+ "900": "oklch(95.75% 0.0231 220.67)"
263
+ },
264
+ "info-dark": {
265
+ "0": "oklch(0.00% 0.0000 NaN)",
266
+ "50": "oklch(20.84% 0.0811 259.09)",
267
+ "100": "oklch(28.68% 0.0962 258.87)",
268
+ "200": "oklch(35.06% 0.1310 258.67)",
269
+ "300": "oklch(43.86% 0.1585 258.07)",
270
+ "400": "oklch(54.72% 0.1933 257.47)",
271
+ "500": "oklch(65.77% 0.1844 256.27)",
272
+ "600": "oklch(75.94% 0.1278 250.45)",
273
+ "700": "oklch(87.12% 0.0693 242.12)",
274
+ "800": "oklch(94.76% 0.0284 238.21)",
275
+ "900": "oklch(98.20% 0.0092 242.79)"
276
+ },
277
+ "warning-dark": {
278
+ "0": "oklch(0.00% 0.0000 NaN)",
279
+ "50": "oklch(28.03% 0.0602 71.48)",
280
+ "100": "oklch(32.98% 0.0722 68.30)",
281
+ "200": "oklch(39.37% 0.0853 68.93)",
282
+ "300": "oklch(46.65% 0.1009 70.17)",
283
+ "400": "oklch(55.42% 0.1169 75.00)",
284
+ "500": "oklch(66.19% 0.1374 79.24)",
285
+ "600": "oklch(74.98% 0.1407 87.05)",
286
+ "700": "oklch(83.42% 0.1401 91.50)",
287
+ "800": "oklch(90.99% 0.1235 95.66)",
288
+ "900": "oklch(97.22% 0.0659 100.99)"
289
+ },
290
+ "danger-dark": {
291
+ "0": "oklch(0.00% 0.0000 NaN)",
292
+ "50": "oklch(21.92% 0.0876 14.52)",
293
+ "100": "oklch(29.16% 0.1169 18.65)",
294
+ "200": "oklch(36.34% 0.1413 20.63)",
295
+ "300": "oklch(45.31% 0.1751 21.97)",
296
+ "400": "oklch(55.98% 0.2080 24.57)",
297
+ "500": "oklch(67.11% 0.2042 23.57)",
298
+ "600": "oklch(77.41% 0.1330 20.02)",
299
+ "700": "oklch(87.87% 0.0643 20.84)",
300
+ "800": "oklch(95.14% 0.0241 20.79)",
301
+ "900": "oklch(98.40% 0.0080 36.71)"
302
+ },
303
+ "success-dark": {
304
+ "0": "oklch(0.00% 0.0000 NaN)",
305
+ "50": "oklch(20.20% 0.0538 151.47)",
306
+ "100": "oklch(26.65% 0.0750 149.11)",
307
+ "200": "oklch(33.49% 0.0936 148.36)",
308
+ "300": "oklch(42.02% 0.1131 148.08)",
309
+ "400": "oklch(51.86% 0.1383 147.98)",
310
+ "500": "oklch(62.86% 0.1606 148.43)",
311
+ "600": "oklch(73.96% 0.1674 149.48)",
312
+ "700": "oklch(85.32% 0.1616 150.11)",
313
+ "800": "oklch(94.20% 0.0448 151.23)",
314
+ "900": "oklch(98.64% 0.0165 150.99)"
315
+ },
316
+ "highlight-dark": {
317
+ "0": "oklch(0.00% 0.0000 NaN)",
318
+ "50": "oklch(21.71% 0.0975 291.58)",
319
+ "100": "oklch(28.99% 0.1222 292.55)",
320
+ "200": "oklch(36.12% 0.1494 293.98)",
321
+ "300": "oklch(45.17% 0.1813 293.78)",
322
+ "400": "oklch(55.72% 0.2094 295.22)",
323
+ "500": "oklch(66.65% 0.1915 297.24)",
324
+ "600": "oklch(77.21% 0.1405 302.22)",
325
+ "700": "oklch(87.70% 0.0743 304.18)",
326
+ "800": "oklch(95.10% 0.0298 307.19)",
327
+ "900": "oklch(98.30% 0.0123 317.91)"
328
+ },
329
+ "neutral-dark": {
330
+ "0": "oklch(0.00% 0.0000 NaN)",
331
+ "50": "oklch(18.91% 0.0101 285.42)",
332
+ "100": "oklch(26.79% 0.0148 285.38)",
333
+ "200": "oklch(39.06% 0.0320 284.84)",
334
+ "300": "oklch(47.68% 0.0384 284.87)",
335
+ "400": "oklch(56.46% 0.0383 285.12)",
336
+ "500": "oklch(65.67% 0.0294 285.59)",
337
+ "600": "oklch(78.98% 0.0182 286.03)",
338
+ "700": "oklch(88.43% 0.0095 286.32)",
339
+ "800": "oklch(94.12% 0.0053 286.52)",
340
+ "900": "oklch(97.64% 0.0013 287.31)"
485
341
  }
486
342
  },
487
- "fontSize": {
488
- "typography.headline1.fontSize": "96px",
489
- "typography.headline2'.fontSize": "60px",
490
- "typography.headline3.fontSize": "48px",
491
- "typography.headline4.fontSize": "34px",
492
- "typography.headline5.fontSize": "24px",
493
- "typography.headline6.fontSize": "20px",
494
- "typography.subtitle1.fontSize": "16px",
495
- "typography.subtitle2.fontSize": "14px",
496
- "typography.body1.fontSize": "16px",
497
- "typography.body2.fontSize": "14px",
498
- "typography.caption.fontSize": "12px",
499
- "typography.button.fontSize": "14px",
500
- "typography.overline.fontSize": "12px"
343
+ "lineHeight": {
344
+ "headline1": "100px",
345
+ "headline2'": "64px",
346
+ "headline3": "52px",
347
+ "headline4": "38px",
348
+ "headline5": "28px",
349
+ "headline6": "24px",
350
+ "subtitle1": "20px",
351
+ "subtitle2": "18px",
352
+ "body1": "20px",
353
+ "body2": "18px",
354
+ "caption": "16px",
355
+ "button": "18px",
356
+ "overline": "16px"
357
+ },
358
+ "fontWeight": {
359
+ "headline1": "300",
360
+ "headline2'": "300",
361
+ "headline3": "400",
362
+ "headline4": "400",
363
+ "headline5": "400",
364
+ "headline6": "500",
365
+ "subtitle1": "400",
366
+ "subtitle2": "500",
367
+ "body1": "400",
368
+ "body2": "400",
369
+ "caption": "400",
370
+ "button": "700",
371
+ "overline": "500"
501
372
  },
502
373
  "letterSpacing": {
503
- "typography.headline1.letterSpacing": "-0.25px",
504
- "typography.headline2'.letterSpacing": "-0.13333333333333333px",
505
- "typography.headline3.letterSpacing": "normal",
506
- "typography.headline4.letterSpacing": "0.11764705882352941px",
507
- "typography.headline5.letterSpacing": "normal",
508
- "typography.headline6.letterSpacing": "0.2px",
509
- "typography.subtitle1.letterSpacing": "0.15px",
510
- "typography.subtitle2.letterSpacing": "0.1142857142857143px",
511
- "typography.body1.letterSpacing": "0.5px",
512
- "typography.body2.letterSpacing": "0.2857142857142857px",
513
- "typography.caption.letterSpacing": "0.5333333333333333px",
514
- "typography.button.letterSpacing": "1.4285714285714286px",
515
- "typography.overline.letterSpacing": "2.6666666666666665px"
374
+ "headline1": "-0.25px",
375
+ "headline2'": "-0.13333333333333333px",
376
+ "headline3": "normal",
377
+ "headline4": "0.11764705882352941px",
378
+ "headline5": "normal",
379
+ "headline6": "0.2px",
380
+ "subtitle1": "0.15px",
381
+ "subtitle2": "0.1142857142857143px",
382
+ "body1": "0.5px",
383
+ "body2": "0.2857142857142857px",
384
+ "caption": "0.5333333333333333px",
385
+ "button": "1.4285714285714286px",
386
+ "overline": "2.6666666666666665px"
516
387
  },
517
388
  "boxShadow": {
518
- "elevation-light-light-_": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.14)",
519
- "elevation-light-semilight-_": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14)",
520
- "elevation-light-regular-_": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 4px 8px 0px rgba(0, 0, 0, 0.14)",
521
- "elevation-light-semibold-_": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 8px 16px 0px rgba(0, 0, 0, 0.14)",
522
- "elevation-light-bold-_": "0px 0px 8px 0px rgba(0, 0, 0, 0.12), 0px 14px 28px 0px rgba(0, 0, 0, 0.14)",
523
- "elevation-light-extrabold-_": "0px 0px 8px 0px rgba(0, 0, 0, 0.12), 0px 32px 64px 0px rgba(0, 0, 0, 0.14)",
524
- "elevation-dark-light-_": "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 1px 2px 0px rgba(0, 0, 0, 0.28)",
525
- "elevation-dark-semilight-_": "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 2px 4px 0px rgba(0, 0, 0, 0.28)",
526
- "elevation-dark-regular-_": "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 4px 8px 0px rgba(0, 0, 0, 0.28)",
527
- "elevation-dark-semibold-_": "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 8px 16px 0px rgba(0, 0, 0, 0.28)",
528
- "elevation-dark-bold-_": "0px 0px 8px 0px rgba(0, 0, 0, 0.24), 0px 14px 28px 0px rgba(0, 0, 0, 0.28)",
529
- "elevation-dark-extrabold-_": "0px 0px 8px 0px rgba(0, 0, 0, 0.24), 0px 32px 64px 0px rgba(0, 0, 0, 0.28)"
389
+ "elevation-none": "none",
390
+ "light": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.14)",
391
+ "semilight": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14)",
392
+ "regular": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 4px 8px 0px rgba(0, 0, 0, 0.14)",
393
+ "semibold": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 8px 16px 0px rgba(0, 0, 0, 0.14)",
394
+ "bold": "0px 0px 8px 0px rgba(0, 0, 0, 0.12), 0px 14px 28px 0px rgba(0, 0, 0, 0.14)",
395
+ "extrabold": "0px 0px 8px 0px rgba(0, 0, 0, 0.12), 0px 32px 64px 0px rgba(0, 0, 0, 0.14)",
396
+ "light-dark": "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 1px 2px 0px rgba(0, 0, 0, 0.28)",
397
+ "semilight-dark": "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 2px 4px 0px rgba(0, 0, 0, 0.28)",
398
+ "regular-dark": "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 4px 8px 0px rgba(0, 0, 0, 0.28)",
399
+ "semibold-dark": "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 8px 16px 0px rgba(0, 0, 0, 0.28)",
400
+ "bold-dark": "0px 0px 8px 0px rgba(0, 0, 0, 0.24), 0px 14px 28px 0px rgba(0, 0, 0, 0.28)",
401
+ "extrabold-dark": "0px 0px 8px 0px rgba(0, 0, 0, 0.24), 0px 32px 64px 0px rgba(0, 0, 0, 0.28)"
530
402
  },
531
403
  "transitionDuration": {
532
- "duration._": "200ms 400ms 600ms",
533
- "duration.short": "200ms",
534
- "duration.medium": "400ms",
535
- "duration.long": "600ms"
404
+ "short": "200ms",
405
+ "medium": "400ms",
406
+ "long": "600ms"
536
407
  }
537
408
  }
538
- },
539
- plugins: [
540
- plugin(function({ addUtilities, theme, e }) {
541
- const shadows = theme('boxShadow') || {};
542
- const utils = Object.entries(shadows).reduce((acc, [key, value]) => {
543
- acc['.' + e('shadow-' + key)] = { boxShadow: value };
544
- return acc;
545
- }, {});
546
- addUtilities(utils, ['responsive', 'hover', 'focus']);
547
- // You can extend with more utilities here (spacing, radii, etc.)
548
- })
549
- ]
550
- };
409
+ });