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