@officesdk/design 0.1.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,1261 @@
1
+ // ../../node_modules/@officesdk/editor-sdk-core/esm/shared/theme/index.js
2
+ var ThemeMode;
3
+ (function(ThemeMode2) {
4
+ ThemeMode2["LIGHT"] = "light";
5
+ ThemeMode2["DARK"] = "dark";
6
+ })(ThemeMode || (ThemeMode = {}));
7
+
8
+ // src/light/base.ts
9
+ var palettes = {
10
+ // Brand colors
11
+ brand: "#41464b",
12
+ // Red scale
13
+ red: {
14
+ "1": "#fdedf0",
15
+ "2": "#fad2d8",
16
+ "3": "#e9a2a5",
17
+ "4": "#de7f83",
18
+ "5": "#e96465",
19
+ "6": "#e95555",
20
+ "7": "#e0504e",
21
+ "8": "#cd4747",
22
+ "9": "#c04140",
23
+ "10": "#af3a37"
24
+ },
25
+ // Orange scale
26
+ orange: {
27
+ "1": "#fde7e1",
28
+ "2": "#fdc8ab",
29
+ "3": "#faa573",
30
+ "4": "#f3833a",
31
+ "5": "#ed6b00",
32
+ "6": "#e65600",
33
+ "7": "#dc5000",
34
+ "8": "#cf4900",
35
+ "9": "#c24100",
36
+ "10": "#ab3300"
37
+ },
38
+ // Yellow scale
39
+ yellow: {
40
+ "1": "#fcfcea",
41
+ "2": "#f8f7cb",
42
+ "3": "#f4f2aa",
43
+ "4": "#f1ed8b",
44
+ "5": "#eee874",
45
+ "6": "#ebe361",
46
+ "7": "#e9d45c",
47
+ "8": "#e5bf52",
48
+ "9": "#e0a849",
49
+ "10": "#d78539"
50
+ },
51
+ // Green scale
52
+ green: {
53
+ "1": "#e8f3e8",
54
+ "2": "#c7e2c7",
55
+ "3": "#a4d0a3",
56
+ "4": "#80be7f",
57
+ "5": "#66b165",
58
+ "6": "#4ea44b",
59
+ "7": "#459542",
60
+ "8": "#3a8438",
61
+ "9": "#30732e",
62
+ "10": "#1e541d"
63
+ },
64
+ // Cyan scale
65
+ cyan: {
66
+ "1": "#e0f9fd",
67
+ "2": "#b1eff8",
68
+ "3": "#7ae6f5",
69
+ "4": "#37d9f0",
70
+ "5": "#00d2ec",
71
+ "6": "#00c9e8",
72
+ "7": "#00b9d4",
73
+ "8": "#00a3b8",
74
+ "9": "#008fa0",
75
+ "10": "#006c72"
76
+ },
77
+ // Blue scale
78
+ blue: {
79
+ "1": "#e4f1fb",
80
+ "2": "#bfdcf7",
81
+ "3": "#98c7f1",
82
+ "4": "#73b1eb",
83
+ "5": "#6da0e3",
84
+ "6": "#5ba0e7",
85
+ "7": "#4583d4",
86
+ "8": "#3e72c1",
87
+ "9": "#3861af",
88
+ "10": "#2d448f"
89
+ },
90
+ // Purple scale
91
+ purple: {
92
+ "1": "#e7e3f0",
93
+ "2": "#c3bbda",
94
+ "3": "#9c8ec1",
95
+ "4": "#7562ab",
96
+ "5": "#59439e",
97
+ "6": "#3a2590",
98
+ "7": "#31218b",
99
+ "8": "#221a83",
100
+ "9": "#10147b",
101
+ "10": "#000a6d"
102
+ },
103
+ // Gray scale
104
+ gray: {
105
+ "0": "#fff",
106
+ "1": "#fdfdfd",
107
+ "2": "#fbfbfb",
108
+ "3": "#f9f9f9",
109
+ "4": "#f7f7f7",
110
+ "5": "#f6f6f6",
111
+ "6": "#f4f4f4",
112
+ "7": "#f2f2f2",
113
+ "8": "#f1f1f1",
114
+ "9": "#eee",
115
+ "10": "#eceded",
116
+ "20": "#d9dadb",
117
+ "30": "#c6c8c9",
118
+ "40": "#b3b5b7",
119
+ "50": "#a0a2a5",
120
+ "60": "#8d9093",
121
+ "70": "#7a7e81",
122
+ "80": "#676b6f",
123
+ "90": "#54585d",
124
+ "100": "#41464b",
125
+ "110": "#363b3e",
126
+ "120": "#2c3033"
127
+ },
128
+ // Transparency scale (using rgba for light theme)
129
+ transparency: {
130
+ "2": "rgba(65, 70, 75, 0.02)",
131
+ "5": "rgba(65, 70, 75, 0.05)",
132
+ "8": "rgba(65, 70, 75, 0.08)",
133
+ "10": "rgba(65, 70, 75, 0.10)",
134
+ "15": "rgba(65, 70, 75, 0.15)",
135
+ "20": "rgba(65, 70, 75, 0.20)",
136
+ "30": "rgba(65, 70, 75, 0.30)",
137
+ "40": "rgba(65, 70, 75, 0.40)",
138
+ "50": "rgba(65, 70, 75, 0.50)",
139
+ "60": "rgba(65, 70, 75, 0.60)",
140
+ "70": "rgba(65, 70, 75, 0.70)",
141
+ "80": "rgba(65, 70, 75, 0.80)",
142
+ "90": "rgba(65, 70, 75, 0.90)",
143
+ "100": "rgba(65, 70, 75, 1)",
144
+ "110": "#363b3e",
145
+ "120": "#2c3033"
146
+ }
147
+ };
148
+ var colors = {
149
+ base: {
150
+ default: palettes.brand,
151
+ notice: palettes.blue["5"],
152
+ success: palettes.green["6"],
153
+ warning: palettes.yellow["7"],
154
+ error: palettes.red["6"],
155
+ guidance: palettes.blue["6"]
156
+ },
157
+ border: {
158
+ default: palettes.transparency["10"],
159
+ hover: palettes.transparency["20"],
160
+ active: palettes.transparency["30"],
161
+ error: palettes.red["6"],
162
+ disabled: palettes.transparency["10"]
163
+ },
164
+ background: {
165
+ hover: palettes.transparency["5"],
166
+ selected: palettes.transparency["10"],
167
+ disabled: palettes.gray["5"]
168
+ },
169
+ mask: {
170
+ light: palettes.transparency["50"],
171
+ dark: palettes.transparency["80"]
172
+ },
173
+ gradient: {
174
+ dark: `linear-gradient(0deg, ${palettes.gray["120"]} -0.09%, ${palettes.gray["90"]} 100%)`,
175
+ guidance: `linear-gradient(0deg, ${palettes.blue["8"]} -0.09%, ${palettes.blue["5"]} 100%)`,
176
+ light: `linear-gradient(0deg, ${palettes.gray["5"]} -0.09%, ${palettes.gray["0"]} 100%)`,
177
+ error: `linear-gradient(0deg, ${palettes.red["8"]} -0.09%, ${palettes.red["5"]} 100%)`
178
+ },
179
+ palettes: {
180
+ brand: palettes.brand,
181
+ red: palettes.red,
182
+ yellow: palettes.yellow,
183
+ orange: palettes.orange,
184
+ green: palettes.green,
185
+ cyan: palettes.cyan,
186
+ blue: palettes.blue,
187
+ purple: palettes.purple,
188
+ gray: palettes.gray,
189
+ transparency: palettes.transparency
190
+ }
191
+ };
192
+ var boxShadow = {
193
+ small: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
194
+ medium: "0 4px 10px rgba(65, 70, 75, 0.06)",
195
+ large: "0 8px 18px 0 rgba(0, 0, 0, 0.06)",
196
+ xl: "0 20px 32px 0 rgba(0, 0, 0, 0.06)"
197
+ };
198
+ var borderRadius = {
199
+ none: 0,
200
+ small: "2px",
201
+ medium: "4px",
202
+ large: "8px",
203
+ xl: "12px",
204
+ xxl: "16px",
205
+ full: "1000px"
206
+ };
207
+ var typography = {
208
+ title: {
209
+ fontFamily: {
210
+ base: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif'
211
+ },
212
+ fontSize: {
213
+ xs: "12px",
214
+ s: "13px",
215
+ m: "14px",
216
+ l: "16px",
217
+ xl: "20px",
218
+ xxl: "24px",
219
+ xxxl: "32px"
220
+ },
221
+ fontWeight: {
222
+ light: 300,
223
+ regular: 400,
224
+ medium: 500,
225
+ semibold: 600,
226
+ bold: 700
227
+ },
228
+ lineHeight: {
229
+ tight: "1.2",
230
+ regular: "1.4",
231
+ medium: "1.5",
232
+ relaxed: "1.6",
233
+ loose: "1.8"
234
+ }
235
+ },
236
+ paragraph: {
237
+ fontFamily: {
238
+ base: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif'
239
+ },
240
+ fontSize: {
241
+ xs: "12px",
242
+ s: "13px",
243
+ m: "14px",
244
+ l: "16px",
245
+ xl: "18px",
246
+ xxl: "20px",
247
+ xxxl: "24px"
248
+ },
249
+ fontWeight: {
250
+ light: 300,
251
+ regular: 400,
252
+ medium: 500,
253
+ semibold: 600,
254
+ bold: 700
255
+ },
256
+ lineHeight: {
257
+ tight: "1.4",
258
+ regular: "1.5",
259
+ medium: "1.6",
260
+ relaxed: "1.7",
261
+ loose: "2"
262
+ }
263
+ },
264
+ article: {
265
+ fontFamily: {
266
+ base: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif'
267
+ },
268
+ fontSize: {
269
+ xs: "12px",
270
+ s: "14px",
271
+ m: "16px",
272
+ l: "18px",
273
+ xl: "20px",
274
+ xxl: "24px",
275
+ xxxl: "28px"
276
+ },
277
+ fontWeight: {
278
+ light: 300,
279
+ regular: 400,
280
+ medium: 500,
281
+ semibold: 600,
282
+ bold: 700
283
+ },
284
+ lineHeight: {
285
+ tight: "1.5",
286
+ regular: "1.6",
287
+ medium: "1.7",
288
+ relaxed: "1.8",
289
+ loose: "2"
290
+ }
291
+ }
292
+ };
293
+
294
+ // src/light/components/button.ts
295
+ var button = {
296
+ icons: {
297
+ close: {
298
+ url: "",
299
+ size: { width: "16px", height: "16px" }
300
+ },
301
+ clear: {
302
+ url: "",
303
+ size: { width: "16px", height: "16px" }
304
+ },
305
+ search: {
306
+ url: "",
307
+ size: { width: "16px", height: "16px" }
308
+ }
309
+ },
310
+ solid: {
311
+ default: {
312
+ background: `linear-gradient(0deg, ${colors.palettes.gray["120"]} 0%, ${colors.palettes.gray["90"]} 100%)`,
313
+ backgroundHover: colors.palettes.transparency["80"],
314
+ backgroundActive: colors.palettes.gray["120"],
315
+ backgroundDisabled: colors.palettes.transparency["30"],
316
+ color: colors.palettes.gray["0"],
317
+ boxShadow: "none",
318
+ boxShadowHover: "none",
319
+ boxShadowActive: "none",
320
+ boxShadowDisabled: "none",
321
+ borderColor: "transparent",
322
+ borderColorHover: "transparent",
323
+ borderColorActive: "transparent",
324
+ borderColorDisabled: "transparent",
325
+ fontWeight: 500,
326
+ colorHover: colors.palettes.gray["0"],
327
+ colorActive: colors.palettes.gray["0"],
328
+ colorDisabled: colors.palettes.gray["0"]
329
+ },
330
+ guidance: {
331
+ background: `linear-gradient(0deg, ${colors.palettes.blue["7"]} 0%, ${colors.palettes.blue["5"]} 100%)`,
332
+ backgroundHover: colors.palettes.blue["6"],
333
+ backgroundActive: colors.palettes.blue["7"],
334
+ backgroundDisabled: "rgba(91, 160, 231, 0.30)",
335
+ color: colors.palettes.gray["0"],
336
+ boxShadow: "none",
337
+ boxShadowHover: "none",
338
+ boxShadowActive: "none",
339
+ boxShadowDisabled: "none",
340
+ borderColor: "transparent",
341
+ borderColorHover: "transparent",
342
+ borderColorActive: "transparent",
343
+ borderColorDisabled: "transparent",
344
+ fontWeight: 500,
345
+ colorHover: colors.palettes.gray["0"],
346
+ colorActive: colors.palettes.gray["0"],
347
+ colorDisabled: colors.palettes.gray["0"]
348
+ },
349
+ alert: {
350
+ background: `linear-gradient(0deg, ${colors.palettes.red["8"]} 0%, ${colors.palettes.red["6"]} 100%)`,
351
+ backgroundHover: colors.palettes.red["6"],
352
+ backgroundActive: colors.palettes.red["7"],
353
+ backgroundDisabled: "rgba(233, 85, 85, 0.30)",
354
+ color: colors.palettes.gray["0"],
355
+ boxShadow: "none",
356
+ boxShadowHover: "none",
357
+ boxShadowActive: "none",
358
+ boxShadowDisabled: "none",
359
+ borderColor: "transparent",
360
+ borderColorHover: "transparent",
361
+ borderColorActive: "transparent",
362
+ borderColorDisabled: "transparent",
363
+ fontWeight: 500,
364
+ colorHover: colors.palettes.gray["0"],
365
+ colorActive: colors.palettes.gray["0"],
366
+ colorDisabled: colors.palettes.gray["0"]
367
+ }
368
+ },
369
+ outlined: {
370
+ default: {
371
+ background: `linear-gradient(0deg, ${colors.palettes.gray["5"]} 0%, ${colors.palettes.gray["0"]} 100%)`,
372
+ backgroundHover: colors.palettes.gray["0"],
373
+ backgroundActive: colors.palettes.gray["3"],
374
+ backgroundDisabled: colors.palettes.transparency["5"],
375
+ color: colors.palettes.brand,
376
+ boxShadow: "none",
377
+ boxShadowHover: "none",
378
+ boxShadowActive: "none",
379
+ boxShadowDisabled: "none",
380
+ borderColor: colors.palettes.transparency["10"],
381
+ borderColorHover: colors.palettes.transparency["20"],
382
+ borderColorActive: colors.palettes.transparency["30"],
383
+ borderColorDisabled: colors.palettes.transparency["10"],
384
+ fontWeight: 500,
385
+ colorHover: colors.palettes.gray["0"],
386
+ colorActive: colors.palettes.gray["0"],
387
+ colorDisabled: colors.palettes.gray["0"]
388
+ },
389
+ guidance: {
390
+ background: `linear-gradient(0deg, ${colors.palettes.gray["5"]} 0%, ${colors.palettes.gray["0"]} 100%)`,
391
+ backgroundHover: colors.palettes.gray["0"],
392
+ backgroundActive: colors.palettes.gray["3"],
393
+ backgroundDisabled: colors.palettes.transparency["5"],
394
+ color: colors.palettes.blue["6"],
395
+ boxShadow: "none",
396
+ boxShadowHover: "none",
397
+ boxShadowActive: "none",
398
+ boxShadowDisabled: "none",
399
+ borderColor: colors.palettes.transparency["10"],
400
+ borderColorHover: colors.palettes.transparency["20"],
401
+ borderColorActive: colors.palettes.transparency["30"],
402
+ borderColorDisabled: colors.palettes.transparency["10"],
403
+ fontWeight: 500,
404
+ colorHover: colors.palettes.gray["0"],
405
+ colorActive: colors.palettes.gray["0"],
406
+ colorDisabled: colors.palettes.gray["0"]
407
+ },
408
+ alert: {
409
+ background: `linear-gradient(0deg, ${colors.palettes.gray["5"]} 0%, ${colors.palettes.gray["0"]} 100%)`,
410
+ backgroundHover: colors.palettes.gray["0"],
411
+ backgroundActive: colors.palettes.gray["3"],
412
+ backgroundDisabled: colors.palettes.transparency["5"],
413
+ color: colors.palettes.red["6"],
414
+ boxShadow: "none",
415
+ boxShadowHover: "none",
416
+ boxShadowActive: "none",
417
+ boxShadowDisabled: "none",
418
+ borderColor: colors.palettes.transparency["10"],
419
+ borderColorHover: colors.palettes.transparency["20"],
420
+ borderColorActive: colors.palettes.transparency["30"],
421
+ borderColorDisabled: colors.palettes.transparency["10"],
422
+ fontWeight: 500,
423
+ colorHover: colors.palettes.gray["0"],
424
+ colorActive: colors.palettes.gray["0"],
425
+ colorDisabled: colors.palettes.gray["0"]
426
+ }
427
+ },
428
+ text: {
429
+ default: {
430
+ background: "transparent",
431
+ backgroundHover: colors.palettes.transparency["5"],
432
+ backgroundActive: colors.palettes.transparency["10"],
433
+ backgroundDisabled: "transparent",
434
+ color: colors.palettes.brand,
435
+ boxShadow: "none",
436
+ boxShadowHover: "none",
437
+ boxShadowActive: "none",
438
+ boxShadowDisabled: "none",
439
+ borderColor: "transparent",
440
+ borderColorHover: "transparent",
441
+ borderColorActive: "transparent",
442
+ borderColorDisabled: "transparent",
443
+ fontWeight: 500,
444
+ colorHover: colors.palettes.gray["0"],
445
+ colorActive: colors.palettes.gray["0"],
446
+ colorDisabled: colors.palettes.gray["0"]
447
+ },
448
+ guidance: {
449
+ background: "transparent",
450
+ backgroundHover: colors.palettes.blue["1"],
451
+ backgroundActive: colors.palettes.blue["2"],
452
+ backgroundDisabled: "transparent",
453
+ color: colors.palettes.blue["6"],
454
+ boxShadow: "none",
455
+ boxShadowHover: "none",
456
+ boxShadowActive: "none",
457
+ boxShadowDisabled: "none",
458
+ borderColor: "transparent",
459
+ borderColorHover: "transparent",
460
+ borderColorActive: "transparent",
461
+ borderColorDisabled: "transparent",
462
+ fontWeight: 500,
463
+ colorHover: colors.palettes.gray["0"],
464
+ colorActive: colors.palettes.gray["0"],
465
+ colorDisabled: colors.palettes.gray["0"]
466
+ },
467
+ alert: {
468
+ background: "transparent",
469
+ backgroundHover: colors.palettes.red["1"],
470
+ backgroundActive: colors.palettes.red["2"],
471
+ backgroundDisabled: "transparent",
472
+ color: colors.palettes.red["6"],
473
+ boxShadow: "none",
474
+ boxShadowHover: "none",
475
+ boxShadowActive: "none",
476
+ boxShadowDisabled: "none",
477
+ borderColor: "transparent",
478
+ borderColorHover: "transparent",
479
+ borderColorActive: "transparent",
480
+ borderColorDisabled: "transparent",
481
+ fontWeight: 500,
482
+ colorHover: colors.palettes.gray["0"],
483
+ colorActive: colors.palettes.gray["0"],
484
+ colorDisabled: colors.palettes.gray["0"]
485
+ },
486
+ status: {
487
+ background: colors.palettes.blue["1"],
488
+ backgroundHover: colors.palettes.blue["2"],
489
+ backgroundActive: colors.palettes.blue["3"],
490
+ backgroundDisabled: colors.palettes.transparency["5"],
491
+ color: colors.palettes.blue["6"],
492
+ boxShadow: "none",
493
+ boxShadowHover: "none",
494
+ boxShadowActive: "none",
495
+ boxShadowDisabled: "none",
496
+ borderColor: "transparent",
497
+ borderColorHover: "transparent",
498
+ borderColorActive: "transparent",
499
+ borderColorDisabled: "transparent",
500
+ fontWeight: 500,
501
+ colorHover: colors.palettes.gray["0"],
502
+ colorActive: colors.palettes.gray["0"],
503
+ colorDisabled: colors.palettes.gray["0"]
504
+ }
505
+ },
506
+ small: {
507
+ height: "28px",
508
+ padding: "4px 12px",
509
+ fontSize: "13px",
510
+ lineHeight: "20px",
511
+ borderRadius: "4px",
512
+ iconSize: { width: "14px", height: "14px" },
513
+ iconGap: "4px"
514
+ },
515
+ medium: {
516
+ height: "32px",
517
+ padding: "6px 16px",
518
+ fontSize: "14px",
519
+ lineHeight: "20px",
520
+ borderRadius: "4px",
521
+ iconSize: { width: "16px", height: "16px" },
522
+ iconGap: "6px"
523
+ },
524
+ large: {
525
+ height: "36px",
526
+ padding: "8px 20px",
527
+ fontSize: "14px",
528
+ lineHeight: "20px",
529
+ borderRadius: "4px",
530
+ iconSize: { width: "16px", height: "16px" },
531
+ iconGap: "6px"
532
+ },
533
+ extraLarge: {
534
+ height: "40px",
535
+ padding: "10px 24px",
536
+ fontSize: "14px",
537
+ lineHeight: "20px",
538
+ borderRadius: "4px",
539
+ iconSize: { width: "16px", height: "16px" },
540
+ iconGap: "8px"
541
+ }
542
+ };
543
+
544
+ // src/light/components/toast.ts
545
+ var toast = {
546
+ padding: "12px 16px",
547
+ borderRadius: "8px",
548
+ fontSize: "14px",
549
+ fontWeight: 500,
550
+ success: {
551
+ background: colors.palettes.green["1"],
552
+ borderColor: colors.palettes.green["2"],
553
+ icon: {
554
+ url: "",
555
+ size: { width: "20px", height: "20px" }
556
+ },
557
+ button: {
558
+ fontSize: "14px",
559
+ fontWeight: 500,
560
+ color: colors.palettes.green["6"],
561
+ gap: "8px"
562
+ }
563
+ },
564
+ info: {
565
+ background: colors.palettes.blue["1"],
566
+ borderColor: colors.palettes.blue["2"],
567
+ icon: {
568
+ url: "",
569
+ size: { width: "20px", height: "20px" }
570
+ },
571
+ button: {
572
+ fontSize: "14px",
573
+ fontWeight: 500,
574
+ color: colors.palettes.blue["6"],
575
+ gap: "8px"
576
+ }
577
+ },
578
+ error: {
579
+ background: colors.palettes.red["1"],
580
+ borderColor: colors.palettes.red["2"],
581
+ icon: {
582
+ url: "",
583
+ size: { width: "20px", height: "20px" }
584
+ },
585
+ button: {
586
+ fontSize: "14px",
587
+ fontWeight: 500,
588
+ color: colors.palettes.red["6"],
589
+ gap: "8px"
590
+ }
591
+ },
592
+ warn: {
593
+ background: colors.palettes.yellow["1"],
594
+ borderColor: colors.palettes.yellow["2"],
595
+ icon: {
596
+ url: "",
597
+ size: { width: "20px", height: "20px" }
598
+ },
599
+ button: {
600
+ fontSize: "14px",
601
+ fontWeight: 500,
602
+ color: colors.palettes.yellow["7"],
603
+ gap: "8px"
604
+ }
605
+ }
606
+ };
607
+
608
+ // src/light/components/input.ts
609
+ var input = {
610
+ icons: {
611
+ search: {
612
+ url: "",
613
+ size: { width: "16px", height: "16px" }
614
+ },
615
+ clear: {
616
+ url: "",
617
+ size: { width: "16px", height: "16px" }
618
+ }
619
+ },
620
+ outlined: {
621
+ state: {
622
+ borderColor: colors.palettes.transparency["10"],
623
+ borderColorHover: colors.palettes.transparency["20"],
624
+ borderColorActive: colors.palettes.transparency["30"],
625
+ borderColorDisabled: colors.palettes.transparency["10"],
626
+ borderColorError: colors.palettes.red["6"],
627
+ borderColorReadonly: colors.palettes.transparency["10"],
628
+ background: colors.palettes.gray["0"],
629
+ backgroundHover: colors.palettes.gray["0"],
630
+ backgroundActive: colors.palettes.gray["0"],
631
+ backgroundDisabled: colors.palettes.gray["5"],
632
+ backgroundReadonly: colors.palettes.gray["2"]
633
+ },
634
+ mini: {
635
+ borderRadius: "4px",
636
+ iconSize: { width: "12px", height: "12px" },
637
+ padding: "2px 4px",
638
+ height: "20px",
639
+ fontSize: "12px",
640
+ lineHeight: "20px",
641
+ boxShadow: "none",
642
+ boxShadowHover: "none",
643
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
644
+ boxShadowDisabled: "none"
645
+ },
646
+ small: {
647
+ borderRadius: "4px",
648
+ iconSize: { width: "14px", height: "14px" },
649
+ padding: "2px 4px",
650
+ height: "24px",
651
+ fontSize: "12px",
652
+ lineHeight: "20px",
653
+ boxShadow: "none",
654
+ boxShadowHover: "none",
655
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
656
+ boxShadowDisabled: "none"
657
+ },
658
+ medium: {
659
+ borderRadius: "4px",
660
+ iconSize: { width: "18px", height: "18px" },
661
+ padding: "4px 8px",
662
+ height: "32px",
663
+ fontSize: "13px",
664
+ lineHeight: "20px",
665
+ boxShadow: "none",
666
+ boxShadowHover: "none",
667
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
668
+ boxShadowDisabled: "none"
669
+ },
670
+ large: {
671
+ borderRadius: "4px",
672
+ iconSize: { width: "18px", height: "18px" },
673
+ padding: "4px 8px",
674
+ height: "32px",
675
+ fontSize: "13px",
676
+ lineHeight: "20px",
677
+ boxShadow: "none",
678
+ boxShadowHover: "none",
679
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
680
+ boxShadowDisabled: "none"
681
+ },
682
+ extraLarge: {
683
+ borderRadius: "4px",
684
+ iconSize: { width: "20px", height: "20px" },
685
+ padding: "6px 12px",
686
+ height: "40px",
687
+ fontSize: "14px",
688
+ lineHeight: "24px",
689
+ boxShadow: "none",
690
+ boxShadowHover: "none",
691
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
692
+ boxShadowDisabled: "none"
693
+ }
694
+ },
695
+ underlined: {
696
+ state: {
697
+ borderColor: colors.palettes.transparency["10"],
698
+ borderColorHover: colors.palettes.transparency["20"],
699
+ borderColorActive: colors.palettes.transparency["30"],
700
+ borderColorDisabled: colors.palettes.transparency["10"],
701
+ borderColorError: colors.palettes.red["6"],
702
+ borderColorReadonly: colors.palettes.transparency["10"],
703
+ background: "transparent",
704
+ backgroundHover: "transparent",
705
+ backgroundActive: "transparent",
706
+ backgroundDisabled: "transparent",
707
+ backgroundReadonly: "transparent"
708
+ },
709
+ mini: {
710
+ borderRadius: "0",
711
+ iconSize: { width: "12px", height: "12px" },
712
+ padding: "2px 0",
713
+ height: "20px",
714
+ fontSize: "12px",
715
+ lineHeight: "20px",
716
+ boxShadow: "none",
717
+ boxShadowHover: "none",
718
+ boxShadowActive: "none",
719
+ boxShadowDisabled: "none"
720
+ },
721
+ small: {
722
+ borderRadius: "0",
723
+ iconSize: { width: "14px", height: "14px" },
724
+ padding: "2px 0",
725
+ height: "24px",
726
+ fontSize: "12px",
727
+ lineHeight: "20px",
728
+ boxShadow: "none",
729
+ boxShadowHover: "none",
730
+ boxShadowActive: "none",
731
+ boxShadowDisabled: "none"
732
+ },
733
+ medium: {
734
+ borderRadius: "0",
735
+ iconSize: { width: "18px", height: "18px" },
736
+ padding: "4px 0",
737
+ height: "32px",
738
+ fontSize: "13px",
739
+ lineHeight: "20px",
740
+ boxShadow: "none",
741
+ boxShadowHover: "none",
742
+ boxShadowActive: "none",
743
+ boxShadowDisabled: "none"
744
+ },
745
+ large: {
746
+ borderRadius: "0",
747
+ iconSize: { width: "18px", height: "18px" },
748
+ padding: "4px 0",
749
+ height: "32px",
750
+ fontSize: "13px",
751
+ lineHeight: "20px",
752
+ boxShadow: "none",
753
+ boxShadowHover: "none",
754
+ boxShadowActive: "none",
755
+ boxShadowDisabled: "none"
756
+ },
757
+ extraLarge: {
758
+ borderRadius: "0",
759
+ iconSize: { width: "20px", height: "20px" },
760
+ padding: "6px 0",
761
+ height: "40px",
762
+ fontSize: "14px",
763
+ lineHeight: "24px",
764
+ boxShadow: "none",
765
+ boxShadowHover: "none",
766
+ boxShadowActive: "none",
767
+ boxShadowDisabled: "none"
768
+ }
769
+ }
770
+ };
771
+
772
+ // src/light/components/radio.ts
773
+ var radio = {
774
+ unchecked: {
775
+ borderColor: colors.palettes.transparency["30"],
776
+ borderColorHover: colors.palettes.brand,
777
+ borderColorActive: colors.palettes.brand,
778
+ borderColorDisabled: colors.palettes.transparency["10"],
779
+ background: colors.palettes.gray["0"],
780
+ backgroundHover: colors.palettes.gray["0"],
781
+ backgroundDisabled: colors.palettes.gray["5"]
782
+ },
783
+ checked: {
784
+ borderColor: colors.palettes.brand,
785
+ borderColorHover: colors.palettes.brand,
786
+ borderColorActive: colors.palettes.brand,
787
+ borderColorDisabled: colors.palettes.transparency["10"],
788
+ background: colors.palettes.brand,
789
+ backgroundHover: colors.palettes.brand,
790
+ backgroundDisabled: colors.palettes.gray["5"]
791
+ },
792
+ small: {
793
+ size: "16px",
794
+ dotSize: "8px",
795
+ fontSize: "14px",
796
+ gap: "8px"
797
+ }
798
+ };
799
+
800
+ // src/light/components/checkbox.ts
801
+ var checkbox = {
802
+ icons: {
803
+ checked: "",
804
+ indeterminate: ""
805
+ },
806
+ unchecked: {
807
+ borderColor: colors.palettes.transparency["30"],
808
+ borderColorHover: colors.palettes.brand,
809
+ borderColorActive: colors.palettes.brand,
810
+ borderColorDisabled: colors.palettes.transparency["10"],
811
+ background: colors.palettes.gray["0"],
812
+ backgroundHover: colors.palettes.gray["0"],
813
+ backgroundDisabled: colors.palettes.gray["5"]
814
+ },
815
+ checked: {
816
+ borderColor: colors.palettes.brand,
817
+ borderColorHover: colors.palettes.brand,
818
+ borderColorActive: colors.palettes.brand,
819
+ borderColorDisabled: colors.palettes.transparency["10"],
820
+ background: colors.palettes.brand,
821
+ backgroundHover: colors.palettes.brand,
822
+ backgroundDisabled: colors.palettes.gray["5"]
823
+ },
824
+ indeterminate: {
825
+ borderColor: colors.palettes.brand,
826
+ borderColorHover: colors.palettes.brand,
827
+ borderColorActive: colors.palettes.brand,
828
+ borderColorDisabled: colors.palettes.transparency["10"],
829
+ background: colors.palettes.brand,
830
+ backgroundHover: colors.palettes.brand,
831
+ backgroundDisabled: colors.palettes.gray["5"]
832
+ },
833
+ small: {
834
+ size: "16px",
835
+ borderRadius: "4px",
836
+ iconSize: { width: "12px", height: "12px" },
837
+ fontSize: "14px",
838
+ gap: "8px"
839
+ }
840
+ };
841
+
842
+ // src/light/components/switch.ts
843
+ var switchComponent = {
844
+ off: {
845
+ track: {
846
+ background: colors.palettes.transparency["20"],
847
+ backgroundHover: colors.palettes.transparency["30"],
848
+ backgroundDisabled: colors.palettes.transparency["30"],
849
+ boxShadow: "0 0 2px 0 rgba(0, 0, 0, 0.10) inset",
850
+ boxShadowHover: "0 0 2px 0 rgba(0, 0, 0, 0.10) inset",
851
+ boxShadowDisabled: "0 0 2px 0 rgba(0, 0, 0, 0.10) inset"
852
+ },
853
+ thumb: {
854
+ background: colors.palettes.gray["8"],
855
+ backgroundHover: colors.palettes.gray["0"],
856
+ backgroundDisabled: colors.palettes.gray["8"],
857
+ borderColor: colors.palettes.transparency["10"],
858
+ borderColorHover: colors.palettes.transparency["10"],
859
+ borderColorActive: colors.palettes.transparency["10"],
860
+ borderColorDisabled: colors.palettes.transparency["10"],
861
+ boxShadow: "0px 2px 4px 0px rgba(0, 0, 0, 0.1)",
862
+ boxShadowHover: "0px 2px 4px 0px rgba(0, 0, 0, 0.1)",
863
+ boxShadowDisabled: "0px 2px 4px 0px rgba(0, 0, 0, 0.1)"
864
+ }
865
+ },
866
+ on: {
867
+ track: {
868
+ background: colors.base.notice,
869
+ backgroundHover: colors.base.notice,
870
+ backgroundDisabled: colors.palettes.transparency["10"],
871
+ boxShadow: "0 0 2px 0 rgba(0, 0, 0, 0.10) inset",
872
+ boxShadowHover: "0 0 2px 0 rgba(0, 0, 0, 0.10) inset",
873
+ boxShadowDisabled: "0 0 2px 0 rgba(0, 0, 0, 0.10) inset"
874
+ },
875
+ thumb: {
876
+ background: colors.palettes.gray["0"],
877
+ backgroundHover: colors.palettes.gray["0"],
878
+ backgroundDisabled: colors.palettes.gray["0"],
879
+ borderColor: colors.palettes.transparency["10"],
880
+ borderColorHover: colors.palettes.transparency["10"],
881
+ borderColorActive: colors.palettes.transparency["10"],
882
+ borderColorDisabled: colors.palettes.transparency["10"],
883
+ boxShadow: "0px 2px 4px 0px rgba(0, 0, 0, 0.1)",
884
+ boxShadowHover: "0px 2px 4px 0px rgba(0, 0, 0, 0.1)",
885
+ boxShadowDisabled: "0px 2px 4px 0px rgba(0, 0, 0, 0.1)"
886
+ }
887
+ },
888
+ // Smooth transition animation
889
+ transition: "all 0.5s ease",
890
+ small: {
891
+ container: {
892
+ width: "28px",
893
+ height: "16px"
894
+ },
895
+ track: {
896
+ width: "24px",
897
+ height: "10px",
898
+ borderRadius: "8px",
899
+ boxShadow: "inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1)"
900
+ },
901
+ thumb: {
902
+ size: "14px",
903
+ borderRadius: "50%",
904
+ borderWidth: "1px",
905
+ offset: "1px"
906
+ }
907
+ },
908
+ medium: {
909
+ container: {
910
+ width: "42px",
911
+ height: "24px"
912
+ },
913
+ track: {
914
+ width: "38px",
915
+ height: "16px",
916
+ borderRadius: "10px",
917
+ boxShadow: "inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1)"
918
+ },
919
+ thumb: {
920
+ size: "22px",
921
+ borderRadius: "50%",
922
+ borderWidth: "1px",
923
+ offset: "1px"
924
+ }
925
+ },
926
+ large: {
927
+ container: {
928
+ width: "56px",
929
+ height: "32px"
930
+ },
931
+ track: {
932
+ width: "48px",
933
+ height: "20px",
934
+ borderRadius: "12px",
935
+ boxShadow: "inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1)"
936
+ },
937
+ thumb: {
938
+ size: "28px",
939
+ borderRadius: "50%",
940
+ borderWidth: "1px",
941
+ offset: "2px"
942
+ }
943
+ }
944
+ };
945
+
946
+ // src/light/components/dropdown.ts
947
+ var dropdown = {
948
+ icons: {
949
+ arrow: {
950
+ url: "",
951
+ size: { width: "12px", height: "12px" },
952
+ expandedRotateAngel: "180deg"
953
+ },
954
+ check: {
955
+ url: "",
956
+ size: { width: "14px", height: "14px" }
957
+ }
958
+ },
959
+ button: {
960
+ trigger: {
961
+ borderColor: colors.palettes.transparency["20"],
962
+ borderColorHover: colors.palettes.transparency["30"],
963
+ borderColorActive: colors.palettes.transparency["30"],
964
+ borderColorDisabled: colors.palettes.transparency["10"],
965
+ background: colors.palettes.gray["0"],
966
+ backgroundHover: colors.palettes.gray["0"],
967
+ backgroundActive: colors.palettes.gray["0"],
968
+ backgroundDisabled: colors.palettes.gray["5"],
969
+ color: colors.palettes.brand,
970
+ colorDisabled: colors.palettes.transparency["30"],
971
+ boxShadow: "none",
972
+ boxShadowHover: "none",
973
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
974
+ boxShadowDisabled: "none"
975
+ },
976
+ menu: {
977
+ background: colors.palettes.gray["0"],
978
+ borderColor: colors.palettes.transparency["10"],
979
+ borderRadius: "8px",
980
+ padding: "4px",
981
+ boxShadow: "0 8px 18px 0 rgba(0, 0, 0, 0.06)",
982
+ maxHeight: "280px"
983
+ },
984
+ menuItem: {
985
+ background: "transparent",
986
+ backgroundHover: colors.palettes.transparency["5"],
987
+ backgroundDisabled: "transparent",
988
+ backgroundSelected: colors.palettes.transparency["8"],
989
+ color: colors.palettes.brand,
990
+ colorDisabled: colors.palettes.transparency["30"],
991
+ padding: "8px 12px"
992
+ }
993
+ },
994
+ input: {
995
+ trigger: {
996
+ borderColor: colors.palettes.transparency["10"],
997
+ borderColorHover: colors.palettes.transparency["20"],
998
+ borderColorActive: colors.palettes.transparency["30"],
999
+ borderColorDisabled: colors.palettes.transparency["10"],
1000
+ background: colors.palettes.gray["0"],
1001
+ backgroundHover: colors.palettes.gray["0"],
1002
+ backgroundActive: colors.palettes.gray["0"],
1003
+ backgroundDisabled: colors.palettes.gray["5"],
1004
+ color: colors.palettes.brand,
1005
+ colorDisabled: colors.palettes.transparency["30"],
1006
+ boxShadow: "none",
1007
+ boxShadowHover: "none",
1008
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
1009
+ boxShadowDisabled: "none"
1010
+ },
1011
+ menu: {
1012
+ background: colors.palettes.gray["0"],
1013
+ borderColor: colors.palettes.transparency["10"],
1014
+ borderRadius: "8px",
1015
+ padding: "4px",
1016
+ boxShadow: "0 8px 18px 0 rgba(0, 0, 0, 0.06)",
1017
+ maxHeight: "280px"
1018
+ },
1019
+ menuItem: {
1020
+ background: "transparent",
1021
+ backgroundHover: colors.palettes.transparency["5"],
1022
+ backgroundDisabled: "transparent",
1023
+ backgroundSelected: colors.palettes.transparency["8"],
1024
+ color: colors.palettes.brand,
1025
+ colorDisabled: colors.palettes.transparency["30"],
1026
+ padding: "8px 12px"
1027
+ }
1028
+ },
1029
+ large: {
1030
+ height: "36px",
1031
+ padding: "8px 12px",
1032
+ fontSize: "14px",
1033
+ lineHeight: "20px",
1034
+ borderRadius: "4px",
1035
+ fontWeight: 400,
1036
+ iconSize: { width: "16px", height: "16px" }
1037
+ }
1038
+ };
1039
+
1040
+ // src/light/components/tab.ts
1041
+ var tab = {
1042
+ line: {
1043
+ item: {
1044
+ background: "transparent",
1045
+ backgroundHover: "transparent",
1046
+ backgroundActive: "transparent",
1047
+ backgroundDisabled: "transparent",
1048
+ borderColor: "transparent",
1049
+ borderColorHover: "transparent",
1050
+ borderColorActive: colors.palettes.brand,
1051
+ borderColorDisabled: "transparent",
1052
+ color: colors.palettes.transparency["60"],
1053
+ colorHover: colors.palettes.brand,
1054
+ colorActive: colors.palettes.brand,
1055
+ colorDisabled: colors.palettes.transparency["30"]
1056
+ },
1057
+ layout: {
1058
+ gap: "24px"
1059
+ }
1060
+ },
1061
+ card: {
1062
+ item: {
1063
+ background: "transparent",
1064
+ backgroundHover: colors.palettes.transparency["5"],
1065
+ backgroundActive: colors.palettes.gray["0"],
1066
+ backgroundDisabled: "transparent",
1067
+ borderColor: "transparent",
1068
+ borderColorHover: "transparent",
1069
+ borderColorActive: colors.palettes.transparency["10"],
1070
+ borderColorDisabled: "transparent",
1071
+ color: colors.palettes.transparency["60"],
1072
+ colorHover: colors.palettes.brand,
1073
+ colorActive: colors.palettes.brand,
1074
+ colorDisabled: colors.palettes.transparency["30"]
1075
+ },
1076
+ layout: {
1077
+ gap: "0"
1078
+ }
1079
+ },
1080
+ large: {
1081
+ height: "40px",
1082
+ padding: "10px 16px",
1083
+ fontSize: "14px",
1084
+ lineHeight: "20px",
1085
+ borderRadius: "4px",
1086
+ fontWeight: 500
1087
+ }
1088
+ };
1089
+
1090
+ // src/light/components/slider.ts
1091
+ var slider = {
1092
+ thumb: {
1093
+ background: colors.palettes.gray["0"],
1094
+ backgroundHover: colors.palettes.gray["0"],
1095
+ backgroundActive: colors.palettes.gray["0"],
1096
+ backgroundDisabled: colors.palettes.gray["0"],
1097
+ boxShadow: "0 2px 4px rgba(0, 0, 0, 0.15)",
1098
+ boxShadowHover: "0 2px 6px rgba(0, 0, 0, 0.2)",
1099
+ boxShadowActive: "0 2px 6px rgba(0, 0, 0, 0.2)",
1100
+ boxShadowDisabled: "none",
1101
+ borderColor: colors.palettes.brand,
1102
+ borderColorHover: colors.palettes.brand,
1103
+ borderColorActive: colors.palettes.brand,
1104
+ borderColorDisabled: colors.palettes.transparency["20"]
1105
+ },
1106
+ track: {
1107
+ background: colors.palettes.transparency["10"],
1108
+ backgroundDisabled: colors.palettes.transparency["5"],
1109
+ filledBackground: colors.palettes.brand,
1110
+ height: "4px",
1111
+ width: "100%",
1112
+ borderRadius: "2px"
1113
+ },
1114
+ large: {
1115
+ height: "20px",
1116
+ thumbSize: "16px",
1117
+ thumbOffset: "0"
1118
+ }
1119
+ };
1120
+
1121
+ // src/light/components/inputNumber.ts
1122
+ var inputNumber = {
1123
+ icons: {
1124
+ increment: "",
1125
+ decrement: "",
1126
+ url: "",
1127
+ size: { width: "12px", height: "12px" },
1128
+ opacity: 0.6,
1129
+ hoverOpacity: 1,
1130
+ disabledOpacity: 0.3
1131
+ },
1132
+ input: {
1133
+ borderColor: colors.palettes.transparency["10"],
1134
+ borderColorHover: colors.palettes.transparency["20"],
1135
+ borderColorActive: colors.palettes.transparency["30"],
1136
+ borderColorDisabled: colors.palettes.transparency["10"],
1137
+ borderColorError: colors.palettes.red["6"],
1138
+ borderColorReadonly: colors.palettes.transparency["10"],
1139
+ background: colors.palettes.gray["0"],
1140
+ backgroundHover: colors.palettes.gray["0"],
1141
+ backgroundActive: colors.palettes.gray["0"],
1142
+ backgroundDisabled: colors.palettes.gray["5"],
1143
+ backgroundReadonly: colors.palettes.gray["2"],
1144
+ color: colors.palettes.brand,
1145
+ colorDisabled: colors.palettes.transparency["30"]
1146
+ },
1147
+ button: {
1148
+ borderColor: colors.palettes.transparency["10"],
1149
+ borderColorHover: colors.palettes.transparency["20"],
1150
+ borderColorActive: colors.palettes.transparency["30"],
1151
+ borderColorDisabled: colors.palettes.transparency["10"],
1152
+ borderColorError: colors.palettes.red["6"],
1153
+ borderColorReadonly: colors.palettes.transparency["10"],
1154
+ background: colors.palettes.gray["0"],
1155
+ backgroundHover: colors.palettes.transparency["5"],
1156
+ backgroundActive: colors.palettes.transparency["10"],
1157
+ backgroundDisabled: colors.palettes.gray["5"]
1158
+ },
1159
+ small: {
1160
+ button: { width: "28px" },
1161
+ input: {
1162
+ width: "72px",
1163
+ boxShadow: "none",
1164
+ boxShadowHover: "0 2px 4px 0 rgba(0, 0, 0, 0.04)",
1165
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
1166
+ boxShadowDisabled: "none"
1167
+ },
1168
+ height: "24px",
1169
+ borderRadius: "2px"
1170
+ },
1171
+ large: {
1172
+ button: { width: "32px" },
1173
+ input: {
1174
+ width: "80px",
1175
+ boxShadow: "none",
1176
+ boxShadowHover: "0 2px 4px 0 rgba(0, 0, 0, 0.04)",
1177
+ boxShadowActive: "0 2px 8px 0 rgba(0, 0, 0, 0.04)",
1178
+ boxShadowDisabled: "none"
1179
+ },
1180
+ height: "32px",
1181
+ borderRadius: "2px"
1182
+ }
1183
+ };
1184
+
1185
+ // src/light/components/tooltip.ts
1186
+ var tooltip = {
1187
+ arrow: {
1188
+ size: { width: "8px", height: "8px" },
1189
+ borderRadius: "2px",
1190
+ boxShadow: "0 2px 8px rgba(0, 0, 0, 0.1)"
1191
+ },
1192
+ black: {
1193
+ background: colors.palettes.gray["100"],
1194
+ borderColor: "transparent",
1195
+ color: colors.palettes.gray["0"],
1196
+ borderRadius: "4px",
1197
+ padding: "6px 12px",
1198
+ boxShadow: "0 4px 12px rgba(0, 0, 0, 0.15)",
1199
+ fontSize: "13px",
1200
+ lineHeight: "18px",
1201
+ fontWeight: 400,
1202
+ maxWidth: "280px"
1203
+ },
1204
+ white: {
1205
+ small: {
1206
+ background: colors.palettes.gray["0"],
1207
+ borderColor: colors.palettes.transparency["10"],
1208
+ color: colors.palettes.brand,
1209
+ borderRadius: "4px",
1210
+ padding: "4px 8px",
1211
+ boxShadow: "0 4px 12px rgba(0, 0, 0, 0.1)",
1212
+ fontSize: "12px",
1213
+ lineHeight: "16px",
1214
+ fontWeight: 400
1215
+ },
1216
+ large: {
1217
+ background: colors.palettes.gray["0"],
1218
+ borderColor: colors.palettes.transparency["10"],
1219
+ color: colors.palettes.brand,
1220
+ borderRadius: "8px",
1221
+ padding: "12px 16px",
1222
+ boxShadow: "0 8px 24px rgba(0, 0, 0, 0.12)",
1223
+ fontSize: "14px",
1224
+ lineHeight: "20px",
1225
+ fontWeight: 400
1226
+ }
1227
+ }
1228
+ };
1229
+
1230
+ // src/light/components/index.ts
1231
+ var components = {
1232
+ toast,
1233
+ input,
1234
+ radio,
1235
+ checkbox,
1236
+ switch: switchComponent,
1237
+ button,
1238
+ dropdown,
1239
+ tab,
1240
+ slider,
1241
+ inputNumber,
1242
+ tooltip
1243
+ };
1244
+
1245
+ // src/light/index.ts
1246
+ var lightTheme = {
1247
+ name: "sm-light",
1248
+ mode: ThemeMode.LIGHT,
1249
+ colors,
1250
+ boxShadow,
1251
+ borderRadius,
1252
+ typography,
1253
+ components
1254
+ };
1255
+
1256
+ // src/index.ts
1257
+ var theme = lightTheme;
1258
+
1259
+ export { lightTheme, theme };
1260
+ //# sourceMappingURL=index.mjs.map
1261
+ //# sourceMappingURL=index.mjs.map