@particle-network/ui-react 0.5.1-beta.1 → 0.5.1-beta.10
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.
- package/dist/components/ProgressWrapper/index.d.ts +2 -2
- package/dist/components/ProgressWrapper/index.js +1 -1
- package/dist/components/UXAutocomplete/index.js +1 -2
- package/dist/components/UXButton/button-theme.js +38 -2
- package/dist/components/UXButton/button.js +1 -1
- package/dist/components/UXCheckbox/checkbox.extend.js +16 -13
- package/dist/components/UXChip/chip.extend.d.ts +2 -1
- package/dist/components/UXChip/index.d.ts +1 -1
- package/dist/components/UXColorPicker/color-fields.d.ts +3 -0
- package/dist/components/UXColorPicker/color-fields.js +142 -0
- package/dist/components/UXColorPicker/color-input.d.ts +7 -0
- package/dist/components/UXColorPicker/color-input.js +12 -0
- package/dist/components/UXColorPicker/color-picker.d.ts +3 -0
- package/dist/components/UXColorPicker/color-picker.js +228 -0
- package/dist/components/UXColorPicker/index.d.ts +5 -0
- package/dist/components/UXColorPicker/index.js +3 -0
- package/dist/components/UXColorPicker/types.d.ts +51 -0
- package/dist/components/UXColorPicker/types.js +0 -0
- package/dist/components/UXColorPicker/utils.d.ts +7 -0
- package/dist/components/UXColorPicker/utils.js +6 -0
- package/dist/components/UXCopy/index.js +2 -2
- package/dist/components/UXEmpty/index.js +2 -2
- package/dist/components/UXHint/index.js +1 -1
- package/dist/components/UXInput/index.d.ts +6 -6
- package/dist/components/UXInput/input.extend.d.ts +6 -6
- package/dist/components/UXRadio/radio.extend.js +3 -3
- package/dist/components/UXSlider/use-slider.d.ts +1 -1
- package/dist/components/UXSlider/use-slider.js +1 -1
- package/dist/components/UXSpinner/spinner.d.ts +1 -5
- package/dist/components/UXSpinner/spinner.js +3 -4
- package/dist/components/UXSwitch/index.d.ts +2 -2
- package/dist/components/UXSwitch/switch.extend.d.ts +2 -2
- package/dist/components/UXSwitch/switch.extend.js +6 -6
- package/dist/components/UXTabs/tabs.classes.js +4 -4
- package/dist/components/UXThemeSwitch/constants.d.ts +9 -0
- package/dist/components/UXThemeSwitch/constants.js +3 -0
- package/dist/components/UXThemeSwitch/custom-theme-config.d.ts +2 -0
- package/dist/components/UXThemeSwitch/custom-theme-config.js +171 -0
- package/dist/components/UXThemeSwitch/theme-item.js +94 -15
- package/dist/components/UXThemeSwitch/theme-switch.js +26 -5
- package/dist/components/UXThemeSwitch/use-color-scheme.js +11 -8
- package/dist/components/UXThemeSwitch/use-theme-color.d.ts +1 -22
- package/dist/components/UXThemeSwitch/use-theme-color.js +3 -7
- package/dist/components/UXThemeSwitch/use-theme-store.d.ts +5 -0
- package/dist/components/UXThemeSwitch/use-theme-store.js +9 -3
- package/dist/components/UXThemeSwitch/use-theme.d.ts +2 -0
- package/dist/components/UXThemeSwitch/use-theme.js +10 -53
- package/dist/components/UXThemeSwitch/utils.d.ts +28 -0
- package/dist/components/UXThemeSwitch/utils.js +222 -0
- package/dist/components/UXToast/index.js +3 -3
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/components/layout/Box/box-theme.d.ts +2225 -0
- package/dist/components/layout/Box/box-theme.js +348 -0
- package/dist/components/layout/Box/box.d.ts +14 -0
- package/dist/components/layout/Box/box.js +99 -0
- package/dist/components/layout/Circle.js +2 -3
- package/dist/components/layout/Flex.d.ts +3 -27
- package/dist/components/layout/Flex.js +6 -19
- package/dist/components/layout/HStack.d.ts +1 -1
- package/dist/components/layout/Square.js +3 -3
- package/dist/components/layout/VStack.d.ts +1 -1
- package/dist/components/layout/VStack.js +2 -2
- package/dist/components/layout/index.d.ts +1 -0
- package/dist/components/layout/index.js +1 -0
- package/dist/components/typography/Text.js +22 -7
- package/dist/components/typography/Text.type.d.ts +3 -26
- package/dist/components/typography/Text.type.js +0 -47
- package/dist/components/typography/text-theme.d.ts +178 -0
- package/dist/components/typography/text-theme.js +79 -0
- package/dist/heroui/constants.d.ts +18 -0
- package/dist/heroui/constants.js +98 -0
- package/dist/heroui/types.d.ts +91 -0
- package/dist/heroui/types.js +0 -0
- package/dist/heroui/utils/colors.d.ts +34 -0
- package/dist/heroui/utils/colors.js +121 -0
- package/dist/heroui/utils/object.d.ts +1 -0
- package/dist/heroui/utils/object.js +17 -0
- package/dist/hooks/useI18n.d.ts +133 -25
- package/dist/hooks/useI18n.js +84 -2
- package/dist/hooks/useLang.d.ts +5 -1
- package/dist/hooks/useLang.js +13 -1
- package/dist/utils/cn.d.ts +2 -0
- package/dist/utils/cn.js +258 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +2 -1
- package/dist/utils/input-classes.js +2 -2
- package/package.json +8 -5
- package/tailwind-preset.js +84 -160
package/tailwind-preset.js
CHANGED
|
@@ -8,6 +8,9 @@ module.exports = {
|
|
|
8
8
|
extend: {
|
|
9
9
|
colors: {
|
|
10
10
|
brand: '#D745FF',
|
|
11
|
+
blue: '#0ea5e9',
|
|
12
|
+
'blue-foreground': '#000000',
|
|
13
|
+
'background-pure': 'var(--background-pure)',
|
|
11
14
|
},
|
|
12
15
|
gap: {
|
|
13
16
|
xs: '0.125rem', // 2px
|
|
@@ -79,8 +82,8 @@ module.exports = {
|
|
|
79
82
|
plugins: [
|
|
80
83
|
heroui({
|
|
81
84
|
addCommonColors: true,
|
|
82
|
-
defaultTheme: 'ux-
|
|
83
|
-
defaultExtendTheme: 'ux-
|
|
85
|
+
defaultTheme: 'ux-classic-dark',
|
|
86
|
+
defaultExtendTheme: 'ux-classic-dark',
|
|
84
87
|
layout: {
|
|
85
88
|
radius: {
|
|
86
89
|
small: '6px', // rounded-small
|
|
@@ -98,7 +101,7 @@ module.exports = {
|
|
|
98
101
|
hoverOpacity: 0.7,
|
|
99
102
|
},
|
|
100
103
|
themes: {
|
|
101
|
-
'ux-
|
|
104
|
+
'ux-classic-dark': {
|
|
102
105
|
extend: 'dark',
|
|
103
106
|
colors: {
|
|
104
107
|
content1: {
|
|
@@ -117,7 +120,7 @@ module.exports = {
|
|
|
117
120
|
DEFAULT: '#000000',
|
|
118
121
|
},
|
|
119
122
|
foreground: {
|
|
120
|
-
100: '#
|
|
123
|
+
100: '#75757E',
|
|
121
124
|
300: '#A1A1AA',
|
|
122
125
|
500: '#FFFFFF',
|
|
123
126
|
DEFAULT: '#FFFFFF',
|
|
@@ -144,6 +147,10 @@ module.exports = {
|
|
|
144
147
|
foreground: '#000000',
|
|
145
148
|
},
|
|
146
149
|
tertiary: {
|
|
150
|
+
DEFAULT: '#75757E',
|
|
151
|
+
foreground: '#000000',
|
|
152
|
+
},
|
|
153
|
+
cursor: {
|
|
147
154
|
DEFAULT: '#4E4E56',
|
|
148
155
|
foreground: '#FFFFFF',
|
|
149
156
|
},
|
|
@@ -156,7 +163,7 @@ module.exports = {
|
|
|
156
163
|
foreground: '#FFFFFF',
|
|
157
164
|
},
|
|
158
165
|
warning: {
|
|
159
|
-
DEFAULT: '#
|
|
166
|
+
DEFAULT: '#FFB800',
|
|
160
167
|
foreground: '#FFFFFF',
|
|
161
168
|
},
|
|
162
169
|
divider: {
|
|
@@ -167,10 +174,6 @@ module.exports = {
|
|
|
167
174
|
DEFAULT: '#F57733',
|
|
168
175
|
foreground: '#FFFFFF',
|
|
169
176
|
},
|
|
170
|
-
gold: {
|
|
171
|
-
DEFAULT: '#FFB800',
|
|
172
|
-
foreground: '#FFFFFF',
|
|
173
|
-
},
|
|
174
177
|
bullish: {
|
|
175
178
|
DEFAULT: '#D745FF',
|
|
176
179
|
foreground: '#FFFFFF',
|
|
@@ -181,7 +184,7 @@ module.exports = {
|
|
|
181
184
|
},
|
|
182
185
|
},
|
|
183
186
|
},
|
|
184
|
-
'ux-
|
|
187
|
+
'ux-classic-light': {
|
|
185
188
|
extend: 'light',
|
|
186
189
|
colors: {
|
|
187
190
|
content1: {
|
|
@@ -200,7 +203,7 @@ module.exports = {
|
|
|
200
203
|
DEFAULT: '#F8F8FA',
|
|
201
204
|
},
|
|
202
205
|
foreground: {
|
|
203
|
-
100: '#
|
|
206
|
+
100: '#83878D',
|
|
204
207
|
300: '#61656B',
|
|
205
208
|
500: '#0C0C0F',
|
|
206
209
|
DEFAULT: '#0C0C0F',
|
|
@@ -227,6 +230,10 @@ module.exports = {
|
|
|
227
230
|
foreground: '#FFFFFF',
|
|
228
231
|
},
|
|
229
232
|
tertiary: {
|
|
233
|
+
DEFAULT: '#83878D',
|
|
234
|
+
foreground: '#FFFFFF',
|
|
235
|
+
},
|
|
236
|
+
cursor: {
|
|
230
237
|
DEFAULT: '#D8D8DE',
|
|
231
238
|
foreground: '#000000',
|
|
232
239
|
},
|
|
@@ -239,7 +246,7 @@ module.exports = {
|
|
|
239
246
|
foreground: '#FFFFFF',
|
|
240
247
|
},
|
|
241
248
|
warning: {
|
|
242
|
-
DEFAULT: '#
|
|
249
|
+
DEFAULT: '#F38300',
|
|
243
250
|
foreground: '#FFFFFF',
|
|
244
251
|
},
|
|
245
252
|
divider: {
|
|
@@ -250,10 +257,6 @@ module.exports = {
|
|
|
250
257
|
DEFAULT: '#E65E16',
|
|
251
258
|
foreground: '#FFFFFF',
|
|
252
259
|
},
|
|
253
|
-
gold: {
|
|
254
|
-
DEFAULT: '#F38300',
|
|
255
|
-
foreground: '#FFFFFF',
|
|
256
|
-
},
|
|
257
260
|
bullish: {
|
|
258
261
|
DEFAULT: '#D745FF',
|
|
259
262
|
foreground: '#FFFFFF',
|
|
@@ -283,7 +286,7 @@ module.exports = {
|
|
|
283
286
|
DEFAULT: '#000000',
|
|
284
287
|
},
|
|
285
288
|
foreground: {
|
|
286
|
-
100: '#
|
|
289
|
+
100: '#75757E',
|
|
287
290
|
300: '#A1A1AA',
|
|
288
291
|
500: '#FFFFFF',
|
|
289
292
|
DEFAULT: '#FFFFFF',
|
|
@@ -310,6 +313,10 @@ module.exports = {
|
|
|
310
313
|
foreground: '#000000',
|
|
311
314
|
},
|
|
312
315
|
tertiary: {
|
|
316
|
+
DEFAULT: '#75757E',
|
|
317
|
+
foreground: '#000000',
|
|
318
|
+
},
|
|
319
|
+
cursor: {
|
|
313
320
|
DEFAULT: '#4E4E56',
|
|
314
321
|
foreground: '#FFFFFF',
|
|
315
322
|
},
|
|
@@ -322,7 +329,7 @@ module.exports = {
|
|
|
322
329
|
foreground: '#FFFFFF',
|
|
323
330
|
},
|
|
324
331
|
warning: {
|
|
325
|
-
DEFAULT: '#
|
|
332
|
+
DEFAULT: '#FFB800',
|
|
326
333
|
foreground: '#FFFFFF',
|
|
327
334
|
},
|
|
328
335
|
divider: {
|
|
@@ -333,10 +340,6 @@ module.exports = {
|
|
|
333
340
|
DEFAULT: '#F57733',
|
|
334
341
|
foreground: '#FFFFFF',
|
|
335
342
|
},
|
|
336
|
-
gold: {
|
|
337
|
-
DEFAULT: '#FFB800',
|
|
338
|
-
foreground: '#FFFFFF',
|
|
339
|
-
},
|
|
340
343
|
bullish: {
|
|
341
344
|
DEFAULT: '#45B167',
|
|
342
345
|
foreground: '#FFFFFF',
|
|
@@ -366,8 +369,8 @@ module.exports = {
|
|
|
366
369
|
DEFAULT: '#F8F8FA',
|
|
367
370
|
},
|
|
368
371
|
foreground: {
|
|
369
|
-
100: '#
|
|
370
|
-
300: '#
|
|
372
|
+
100: '#83878D',
|
|
373
|
+
300: '#61656B',
|
|
371
374
|
500: '#000000',
|
|
372
375
|
DEFAULT: '#000000',
|
|
373
376
|
},
|
|
@@ -389,10 +392,14 @@ module.exports = {
|
|
|
389
392
|
foreground: '#FFFFFF',
|
|
390
393
|
},
|
|
391
394
|
secondary: {
|
|
392
|
-
DEFAULT: '#
|
|
395
|
+
DEFAULT: '#61656B',
|
|
393
396
|
foreground: '#FFFFFF',
|
|
394
397
|
},
|
|
395
398
|
tertiary: {
|
|
399
|
+
DEFAULT: '#83878D',
|
|
400
|
+
foreground: '#FFFFFF',
|
|
401
|
+
},
|
|
402
|
+
cursor: {
|
|
396
403
|
DEFAULT: '#D8D8DE',
|
|
397
404
|
foreground: '#000000',
|
|
398
405
|
},
|
|
@@ -405,7 +412,7 @@ module.exports = {
|
|
|
405
412
|
foreground: '#FFFFFF',
|
|
406
413
|
},
|
|
407
414
|
warning: {
|
|
408
|
-
DEFAULT: '#
|
|
415
|
+
DEFAULT: '#F38300',
|
|
409
416
|
foreground: '#FFFFFF',
|
|
410
417
|
},
|
|
411
418
|
divider: {
|
|
@@ -416,10 +423,6 @@ module.exports = {
|
|
|
416
423
|
DEFAULT: '#E65E16',
|
|
417
424
|
foreground: '#FFFFFF',
|
|
418
425
|
},
|
|
419
|
-
gold: {
|
|
420
|
-
DEFAULT: '#F38300',
|
|
421
|
-
foreground: '#FFFFFF',
|
|
422
|
-
},
|
|
423
426
|
bullish: {
|
|
424
427
|
DEFAULT: '#2E9F4A',
|
|
425
428
|
foreground: '#FFFFFF',
|
|
@@ -430,7 +433,7 @@ module.exports = {
|
|
|
430
433
|
},
|
|
431
434
|
},
|
|
432
435
|
},
|
|
433
|
-
'ux-
|
|
436
|
+
'ux-dark': {
|
|
434
437
|
extend: 'dark',
|
|
435
438
|
colors: {
|
|
436
439
|
content1: {
|
|
@@ -442,14 +445,14 @@ module.exports = {
|
|
|
442
445
|
foreground: '#FFFFFF',
|
|
443
446
|
},
|
|
444
447
|
background: {
|
|
445
|
-
200: '#
|
|
448
|
+
200: '#282930',
|
|
446
449
|
300: '#1F2025',
|
|
447
|
-
400: '#
|
|
450
|
+
400: '#151517',
|
|
448
451
|
500: '#100E11',
|
|
449
452
|
DEFAULT: '#100E11',
|
|
450
453
|
},
|
|
451
454
|
foreground: {
|
|
452
|
-
100: '#
|
|
455
|
+
100: '#888891',
|
|
453
456
|
300: '#BBBBC4',
|
|
454
457
|
500: '#FDFDFE',
|
|
455
458
|
DEFAULT: '#FDFDFE',
|
|
@@ -476,6 +479,10 @@ module.exports = {
|
|
|
476
479
|
foreground: '#000000',
|
|
477
480
|
},
|
|
478
481
|
tertiary: {
|
|
482
|
+
DEFAULT: '#888891',
|
|
483
|
+
foreground: '#000000',
|
|
484
|
+
},
|
|
485
|
+
cursor: {
|
|
479
486
|
DEFAULT: '#4E4E56',
|
|
480
487
|
foreground: '#FFFFFF',
|
|
481
488
|
},
|
|
@@ -488,7 +495,7 @@ module.exports = {
|
|
|
488
495
|
foreground: '#FFFFFF',
|
|
489
496
|
},
|
|
490
497
|
warning: {
|
|
491
|
-
DEFAULT: '#
|
|
498
|
+
DEFAULT: '#FFB800',
|
|
492
499
|
foreground: '#FFFFFF',
|
|
493
500
|
},
|
|
494
501
|
divider: {
|
|
@@ -499,10 +506,6 @@ module.exports = {
|
|
|
499
506
|
DEFAULT: '#F37A39',
|
|
500
507
|
foreground: '#FFFFFF',
|
|
501
508
|
},
|
|
502
|
-
gold: {
|
|
503
|
-
DEFAULT: '#FFB800',
|
|
504
|
-
foreground: '#FFFFFF',
|
|
505
|
-
},
|
|
506
509
|
bullish: {
|
|
507
510
|
DEFAULT: '#19AB5E',
|
|
508
511
|
foreground: '#FFFFFF',
|
|
@@ -513,7 +516,7 @@ module.exports = {
|
|
|
513
516
|
},
|
|
514
517
|
},
|
|
515
518
|
},
|
|
516
|
-
'ux-
|
|
519
|
+
'ux-light': {
|
|
517
520
|
extend: 'light',
|
|
518
521
|
colors: {
|
|
519
522
|
content1: {
|
|
@@ -525,14 +528,14 @@ module.exports = {
|
|
|
525
528
|
foreground: '#000000',
|
|
526
529
|
},
|
|
527
530
|
background: {
|
|
528
|
-
200: '#
|
|
531
|
+
200: '#EFEDF5',
|
|
529
532
|
300: '#F6F6F6',
|
|
530
533
|
400: '#FFFFFF',
|
|
531
534
|
500: '#F6F6F6',
|
|
532
535
|
DEFAULT: '#F6F6F6',
|
|
533
536
|
},
|
|
534
537
|
foreground: {
|
|
535
|
-
100: '#
|
|
538
|
+
100: '#7A7E84',
|
|
536
539
|
300: '#55585C',
|
|
537
540
|
500: '#000000',
|
|
538
541
|
DEFAULT: '#000000',
|
|
@@ -559,6 +562,10 @@ module.exports = {
|
|
|
559
562
|
foreground: '#FFFFFF',
|
|
560
563
|
},
|
|
561
564
|
tertiary: {
|
|
565
|
+
DEFAULT: '#7A7E84',
|
|
566
|
+
foreground: '#FFFFFF',
|
|
567
|
+
},
|
|
568
|
+
cursor: {
|
|
562
569
|
DEFAULT: '#CFCFD7',
|
|
563
570
|
foreground: '#000000',
|
|
564
571
|
},
|
|
@@ -571,7 +578,7 @@ module.exports = {
|
|
|
571
578
|
foreground: '#FFFFFF',
|
|
572
579
|
},
|
|
573
580
|
warning: {
|
|
574
|
-
DEFAULT: '#
|
|
581
|
+
DEFAULT: '#F38300',
|
|
575
582
|
foreground: '#FFFFFF',
|
|
576
583
|
},
|
|
577
584
|
divider: {
|
|
@@ -579,11 +586,7 @@ module.exports = {
|
|
|
579
586
|
foreground: '#000000',
|
|
580
587
|
},
|
|
581
588
|
alert: {
|
|
582
|
-
DEFAULT: '#
|
|
583
|
-
foreground: '#FFFFFF',
|
|
584
|
-
},
|
|
585
|
-
gold: {
|
|
586
|
-
DEFAULT: '#FFB800',
|
|
589
|
+
DEFAULT: '#E65E16',
|
|
587
590
|
foreground: '#FFFFFF',
|
|
588
591
|
},
|
|
589
592
|
bullish: {
|
|
@@ -615,7 +618,7 @@ module.exports = {
|
|
|
615
618
|
DEFAULT: '#0C0C0F',
|
|
616
619
|
},
|
|
617
620
|
foreground: {
|
|
618
|
-
100: '#
|
|
621
|
+
100: '#757E80',
|
|
619
622
|
300: '#C4CCCC',
|
|
620
623
|
500: '#F0F5F5',
|
|
621
624
|
DEFAULT: '#F0F5F5',
|
|
@@ -642,6 +645,10 @@ module.exports = {
|
|
|
642
645
|
foreground: '#000000',
|
|
643
646
|
},
|
|
644
647
|
tertiary: {
|
|
648
|
+
DEFAULT: '#757E80',
|
|
649
|
+
foreground: '#000000',
|
|
650
|
+
},
|
|
651
|
+
cursor: {
|
|
645
652
|
DEFAULT: '#5D6466',
|
|
646
653
|
foreground: '#FFFFFF',
|
|
647
654
|
},
|
|
@@ -654,7 +661,7 @@ module.exports = {
|
|
|
654
661
|
foreground: '#000000',
|
|
655
662
|
},
|
|
656
663
|
warning: {
|
|
657
|
-
DEFAULT: '#
|
|
664
|
+
DEFAULT: '#F5DA54',
|
|
658
665
|
foreground: '#000000',
|
|
659
666
|
},
|
|
660
667
|
divider: {
|
|
@@ -665,10 +672,6 @@ module.exports = {
|
|
|
665
672
|
DEFAULT: '#F55832',
|
|
666
673
|
foreground: '#000000',
|
|
667
674
|
},
|
|
668
|
-
gold: {
|
|
669
|
-
DEFAULT: '#F5DA54',
|
|
670
|
-
foreground: '#000000',
|
|
671
|
-
},
|
|
672
675
|
bullish: {
|
|
673
676
|
DEFAULT: '#86D99F',
|
|
674
677
|
foreground: '#000000',
|
|
@@ -698,7 +701,7 @@ module.exports = {
|
|
|
698
701
|
DEFAULT: '#0C0C0F',
|
|
699
702
|
},
|
|
700
703
|
foreground: {
|
|
701
|
-
100: '#
|
|
704
|
+
100: '#777A8C',
|
|
702
705
|
300: '#C8C9D1',
|
|
703
706
|
500: '#FCFCFC',
|
|
704
707
|
DEFAULT: '#FCFCFC',
|
|
@@ -725,6 +728,10 @@ module.exports = {
|
|
|
725
728
|
foreground: '#000000',
|
|
726
729
|
},
|
|
727
730
|
tertiary: {
|
|
731
|
+
DEFAULT: '#777A8C',
|
|
732
|
+
foreground: '#000000',
|
|
733
|
+
},
|
|
734
|
+
cursor: {
|
|
728
735
|
DEFAULT: '#4A4D5E',
|
|
729
736
|
foreground: '#FFFFFF',
|
|
730
737
|
},
|
|
@@ -748,10 +755,6 @@ module.exports = {
|
|
|
748
755
|
DEFAULT: '#F57733',
|
|
749
756
|
foreground: '#000000',
|
|
750
757
|
},
|
|
751
|
-
gold: {
|
|
752
|
-
DEFAULT: '#F7931A',
|
|
753
|
-
foreground: '#000000',
|
|
754
|
-
},
|
|
755
758
|
bullish: {
|
|
756
759
|
DEFAULT: '#2FE3AC',
|
|
757
760
|
foreground: '#000000',
|
|
@@ -781,7 +784,7 @@ module.exports = {
|
|
|
781
784
|
DEFAULT: '#0A1318',
|
|
782
785
|
},
|
|
783
786
|
foreground: {
|
|
784
|
-
100: '#
|
|
787
|
+
100: '#949E9C',
|
|
785
788
|
300: '#D1D4DC',
|
|
786
789
|
500: '#F6FEFD',
|
|
787
790
|
DEFAULT: '#F6FEFD',
|
|
@@ -808,6 +811,10 @@ module.exports = {
|
|
|
808
811
|
foreground: '#000000',
|
|
809
812
|
},
|
|
810
813
|
tertiary: {
|
|
814
|
+
DEFAULT: '#949E9C',
|
|
815
|
+
foreground: '#000000',
|
|
816
|
+
},
|
|
817
|
+
cursor: {
|
|
811
818
|
DEFAULT: '#5D6466',
|
|
812
819
|
foreground: '#FFFFFF',
|
|
813
820
|
},
|
|
@@ -831,10 +838,6 @@ module.exports = {
|
|
|
831
838
|
DEFAULT: '#EF8F50',
|
|
832
839
|
foreground: '#000000',
|
|
833
840
|
},
|
|
834
|
-
gold: {
|
|
835
|
-
DEFAULT: '#FFB648',
|
|
836
|
-
foreground: '#000000',
|
|
837
|
-
},
|
|
838
841
|
bullish: {
|
|
839
842
|
DEFAULT: '#50D2C1',
|
|
840
843
|
foreground: '#000000',
|
|
@@ -864,7 +867,7 @@ module.exports = {
|
|
|
864
867
|
DEFAULT: '#13121A',
|
|
865
868
|
},
|
|
866
869
|
foreground: {
|
|
867
|
-
100: '#
|
|
870
|
+
100: '#717373',
|
|
868
871
|
300: '#999999',
|
|
869
872
|
500: '#FFFFFF',
|
|
870
873
|
DEFAULT: '#FFFFFF',
|
|
@@ -891,6 +894,10 @@ module.exports = {
|
|
|
891
894
|
foreground: '#000000',
|
|
892
895
|
},
|
|
893
896
|
tertiary: {
|
|
897
|
+
DEFAULT: '#717373',
|
|
898
|
+
foreground: '#000000',
|
|
899
|
+
},
|
|
900
|
+
cursor: {
|
|
894
901
|
DEFAULT: '#54515E',
|
|
895
902
|
foreground: '#FFFFFF',
|
|
896
903
|
},
|
|
@@ -903,7 +910,7 @@ module.exports = {
|
|
|
903
910
|
foreground: '#000000',
|
|
904
911
|
},
|
|
905
912
|
warning: {
|
|
906
|
-
DEFAULT: '#
|
|
913
|
+
DEFAULT: '#FFD13F',
|
|
907
914
|
foreground: '#000000',
|
|
908
915
|
},
|
|
909
916
|
divider: {
|
|
@@ -914,10 +921,6 @@ module.exports = {
|
|
|
914
921
|
DEFAULT: '#FF9C3F',
|
|
915
922
|
foreground: '#000000',
|
|
916
923
|
},
|
|
917
|
-
gold: {
|
|
918
|
-
DEFAULT: '#FFD13F',
|
|
919
|
-
foreground: '#000000',
|
|
920
|
-
},
|
|
921
924
|
bullish: {
|
|
922
925
|
DEFAULT: '#2EC08B',
|
|
923
926
|
foreground: '#000000',
|
|
@@ -947,7 +950,7 @@ module.exports = {
|
|
|
947
950
|
DEFAULT: '#0B0E11',
|
|
948
951
|
},
|
|
949
952
|
foreground: {
|
|
950
|
-
100: '#
|
|
953
|
+
100: '#707A8A',
|
|
951
954
|
300: '#929AA5',
|
|
952
955
|
500: '#EAECEF',
|
|
953
956
|
DEFAULT: '#EAECEF',
|
|
@@ -974,6 +977,10 @@ module.exports = {
|
|
|
974
977
|
foreground: '#000000',
|
|
975
978
|
},
|
|
976
979
|
tertiary: {
|
|
980
|
+
DEFAULT: '#707A8A',
|
|
981
|
+
foreground: '#000000',
|
|
982
|
+
},
|
|
983
|
+
cursor: {
|
|
977
984
|
DEFAULT: '#444A56',
|
|
978
985
|
foreground: '#FFFFFF',
|
|
979
986
|
},
|
|
@@ -997,10 +1004,6 @@ module.exports = {
|
|
|
997
1004
|
DEFAULT: '#FF693D',
|
|
998
1005
|
foreground: '#000000',
|
|
999
1006
|
},
|
|
1000
|
-
gold: {
|
|
1001
|
-
DEFAULT: '#2DBD85',
|
|
1002
|
-
foreground: '#000000',
|
|
1003
|
-
},
|
|
1004
1007
|
bullish: {
|
|
1005
1008
|
DEFAULT: '#2EBD85',
|
|
1006
1009
|
foreground: '#000000',
|
|
@@ -1030,7 +1033,7 @@ module.exports = {
|
|
|
1030
1033
|
DEFAULT: '#09090B',
|
|
1031
1034
|
},
|
|
1032
1035
|
foreground: {
|
|
1033
|
-
100: '#
|
|
1036
|
+
100: '#686A6D',
|
|
1034
1037
|
300: '#98989B',
|
|
1035
1038
|
500: '#E9E9E9',
|
|
1036
1039
|
DEFAULT: '#E9E9E9',
|
|
@@ -1057,6 +1060,10 @@ module.exports = {
|
|
|
1057
1060
|
foreground: '#000000',
|
|
1058
1061
|
},
|
|
1059
1062
|
tertiary: {
|
|
1063
|
+
DEFAULT: '#686A6D',
|
|
1064
|
+
foreground: '#000000',
|
|
1065
|
+
},
|
|
1066
|
+
cursor: {
|
|
1060
1067
|
DEFAULT: '#4B4D51',
|
|
1061
1068
|
foreground: '#FFFFFF',
|
|
1062
1069
|
},
|
|
@@ -1069,7 +1076,7 @@ module.exports = {
|
|
|
1069
1076
|
foreground: '#FFFFFF',
|
|
1070
1077
|
},
|
|
1071
1078
|
warning: {
|
|
1072
|
-
DEFAULT: '#
|
|
1079
|
+
DEFAULT: '#E9BF52',
|
|
1073
1080
|
foreground: '#000000',
|
|
1074
1081
|
},
|
|
1075
1082
|
divider: {
|
|
@@ -1080,10 +1087,6 @@ module.exports = {
|
|
|
1080
1087
|
DEFAULT: '#E9BF52',
|
|
1081
1088
|
foreground: '#000000',
|
|
1082
1089
|
},
|
|
1083
|
-
gold: {
|
|
1084
|
-
DEFAULT: '#E9BF52',
|
|
1085
|
-
foreground: '#000000',
|
|
1086
|
-
},
|
|
1087
1090
|
bullish: {
|
|
1088
1091
|
DEFAULT: '#459C6E',
|
|
1089
1092
|
foreground: '#FFFFFF',
|
|
@@ -1094,85 +1097,6 @@ module.exports = {
|
|
|
1094
1097
|
},
|
|
1095
1098
|
},
|
|
1096
1099
|
},
|
|
1097
|
-
'product-test': {
|
|
1098
|
-
extend: 'dark',
|
|
1099
|
-
colors: {
|
|
1100
|
-
default: {
|
|
1101
|
-
DEFAULT: '#222D33',
|
|
1102
|
-
foreground: '#F6FEFD',
|
|
1103
|
-
},
|
|
1104
|
-
secondary: {
|
|
1105
|
-
DEFAULT: '#D1D4DC',
|
|
1106
|
-
foreground: '#000000',
|
|
1107
|
-
},
|
|
1108
|
-
tertiary: {
|
|
1109
|
-
DEFAULT: '#949E9C',
|
|
1110
|
-
foreground: '#000000',
|
|
1111
|
-
},
|
|
1112
|
-
primary: {
|
|
1113
|
-
100: '#EFF5F5',
|
|
1114
|
-
200: '#CEE6E4',
|
|
1115
|
-
300: '#A8DBD6',
|
|
1116
|
-
400: '#7ED4CB',
|
|
1117
|
-
500: '#50D2C1',
|
|
1118
|
-
600: '#34B9A5',
|
|
1119
|
-
700: '#2B8C7C',
|
|
1120
|
-
800: '#206255',
|
|
1121
|
-
900: '#143831',
|
|
1122
|
-
DEFAULT: '#50D2C1',
|
|
1123
|
-
foreground: '#000000',
|
|
1124
|
-
},
|
|
1125
|
-
success: {
|
|
1126
|
-
DEFAULT: '#19AB5E',
|
|
1127
|
-
foreground: '#000000',
|
|
1128
|
-
},
|
|
1129
|
-
danger: {
|
|
1130
|
-
DEFAULT: '#E84A5A',
|
|
1131
|
-
foreground: '#000000',
|
|
1132
|
-
},
|
|
1133
|
-
alert: {
|
|
1134
|
-
DEFAULT: '#F57733',
|
|
1135
|
-
foreground: '#000000',
|
|
1136
|
-
},
|
|
1137
|
-
warning: {
|
|
1138
|
-
DEFAULT: '#FFD13F',
|
|
1139
|
-
foreground: '#000000',
|
|
1140
|
-
},
|
|
1141
|
-
gold: {
|
|
1142
|
-
DEFAULT: '#FFB800',
|
|
1143
|
-
foreground: '#000000',
|
|
1144
|
-
},
|
|
1145
|
-
overlay: {
|
|
1146
|
-
DEFAULT: '#1B2429',
|
|
1147
|
-
foreground: '#FFFFFF',
|
|
1148
|
-
},
|
|
1149
|
-
divider: {
|
|
1150
|
-
DEFAULT: '#394145',
|
|
1151
|
-
foreground: '#FFFFFF',
|
|
1152
|
-
},
|
|
1153
|
-
bullish: {
|
|
1154
|
-
DEFAULT: '#D745FF',
|
|
1155
|
-
foreground: '#000000',
|
|
1156
|
-
},
|
|
1157
|
-
bearish: {
|
|
1158
|
-
DEFAULT: '#F38300',
|
|
1159
|
-
foreground: '#000000',
|
|
1160
|
-
},
|
|
1161
|
-
background: {
|
|
1162
|
-
200: '#222D33',
|
|
1163
|
-
300: '#1B2429',
|
|
1164
|
-
400: '#0F1A1F',
|
|
1165
|
-
500: '#0A1318',
|
|
1166
|
-
DEFAULT: '#0A1318',
|
|
1167
|
-
},
|
|
1168
|
-
foreground: {
|
|
1169
|
-
100: '#949E9C',
|
|
1170
|
-
300: '#D1D4DC',
|
|
1171
|
-
500: '#F6FEFD',
|
|
1172
|
-
DEFAULT: '#F6FEFD',
|
|
1173
|
-
},
|
|
1174
|
-
},
|
|
1175
|
-
},
|
|
1176
1100
|
},
|
|
1177
1101
|
function({ addVariant, addComponents }) {
|
|
1178
1102
|
addVariant('child', '& > *');
|