@matteoaliano/forest-ui 0.2.6 → 0.2.8
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/bin/sync.mjs +44 -0
- package/dist/{chunk-CQX6QWMF.mjs → chunk-3FZJFTY7.mjs} +624 -253
- package/dist/chunk-3FZJFTY7.mjs.map +1 -0
- package/dist/{index-lqHy9CQ4.d.mts → index-C7JP9vAZ.d.mts} +37 -27
- package/dist/{index-lqHy9CQ4.d.ts → index-C7JP9vAZ.d.ts} +37 -27
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +625 -253
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/theme.d.mts +1 -1
- package/dist/theme.d.ts +1 -1
- package/dist/theme.js +622 -250
- package/dist/theme.js.map +1 -1
- package/dist/theme.mjs +1 -1
- package/fonts/aeonik/aeonik-bold.woff +0 -0
- package/fonts/aeonik/aeonik-bold.woff2 +0 -0
- package/fonts/aeonik/aeonik-medium.woff +0 -0
- package/fonts/aeonik/aeonik-medium.woff2 +0 -0
- package/fonts/aeonik/aeonik-regular.woff +0 -0
- package/fonts/aeonik/aeonik-regular.woff2 +0 -0
- package/fonts/aeonik/aeonik-semibold.woff +0 -0
- package/fonts/aeonik/aeonik-semibold.woff2 +0 -0
- package/fonts/aeonik/aeonik.css +42 -0
- package/guidelines/FOREST_AI_GUIDELINES.md +8 -1
- package/guidelines/FOREST_DEV_GUIDELINES.md +1 -1
- package/guidelines/themes/FOREST_THEME_ALKEMY_PLUS.md +139 -0
- package/guidelines/themes/FOREST_THEME_DEFAULT.md +1 -1
- package/package.json +5 -3
- package/dist/chunk-CQX6QWMF.mjs.map +0 -1
|
@@ -220,12 +220,12 @@ var text = {
|
|
|
220
220
|
var bg = {
|
|
221
221
|
primary: colors.gray[50],
|
|
222
222
|
primaryAlt: colors.gray[50],
|
|
223
|
-
primaryHover: colors.gray[
|
|
223
|
+
primaryHover: colors.gray[100],
|
|
224
224
|
primarySolid: colors.gray[950],
|
|
225
225
|
secondary: colors.base.white,
|
|
226
226
|
secondaryAlt: colors.base.white,
|
|
227
227
|
secondarySubtle: colors.gray[25],
|
|
228
|
-
secondaryHover: colors.gray[
|
|
228
|
+
secondaryHover: colors.gray[50],
|
|
229
229
|
secondarySolid: colors.gray[600],
|
|
230
230
|
tertiary: colors.gray[100],
|
|
231
231
|
quaternary: colors.gray[200],
|
|
@@ -436,60 +436,60 @@ var alpha = {
|
|
|
436
436
|
|
|
437
437
|
// src/theme/palette.ts
|
|
438
438
|
function buildPalette(tokens) {
|
|
439
|
-
const { colors:
|
|
439
|
+
const { colors: colors3, text: text3, bg: bg3, fg: fg3, border: border3 } = tokens;
|
|
440
440
|
return {
|
|
441
441
|
primary: {
|
|
442
|
-
main:
|
|
443
|
-
light:
|
|
444
|
-
dark:
|
|
445
|
-
contrastText:
|
|
442
|
+
main: colors3.brand[600],
|
|
443
|
+
light: colors3.brand[400],
|
|
444
|
+
dark: colors3.brand[700],
|
|
445
|
+
contrastText: colors3.base.white
|
|
446
446
|
},
|
|
447
447
|
secondary: {
|
|
448
|
-
main:
|
|
449
|
-
light:
|
|
450
|
-
dark:
|
|
451
|
-
contrastText:
|
|
448
|
+
main: colors3.gray[600],
|
|
449
|
+
light: colors3.gray[400],
|
|
450
|
+
dark: colors3.gray[700],
|
|
451
|
+
contrastText: colors3.base.white
|
|
452
452
|
},
|
|
453
453
|
error: {
|
|
454
|
-
main:
|
|
455
|
-
light:
|
|
456
|
-
dark:
|
|
457
|
-
contrastText:
|
|
454
|
+
main: colors3.error[600],
|
|
455
|
+
light: colors3.error[300],
|
|
456
|
+
dark: colors3.error[700],
|
|
457
|
+
contrastText: colors3.base.white
|
|
458
458
|
},
|
|
459
459
|
warning: {
|
|
460
|
-
main:
|
|
461
|
-
light:
|
|
462
|
-
dark:
|
|
463
|
-
contrastText:
|
|
460
|
+
main: colors3.warning[600],
|
|
461
|
+
light: colors3.warning[300],
|
|
462
|
+
dark: colors3.warning[700],
|
|
463
|
+
contrastText: colors3.base.white
|
|
464
464
|
},
|
|
465
465
|
success: {
|
|
466
|
-
main:
|
|
467
|
-
light:
|
|
468
|
-
dark:
|
|
469
|
-
contrastText:
|
|
466
|
+
main: colors3.success[600],
|
|
467
|
+
light: colors3.success[300],
|
|
468
|
+
dark: colors3.success[700],
|
|
469
|
+
contrastText: colors3.base.white
|
|
470
470
|
},
|
|
471
471
|
info: {
|
|
472
|
-
main:
|
|
473
|
-
light:
|
|
474
|
-
dark:
|
|
475
|
-
contrastText:
|
|
472
|
+
main: colors3.blue[600],
|
|
473
|
+
light: colors3.blue[300],
|
|
474
|
+
dark: colors3.blue[700],
|
|
475
|
+
contrastText: colors3.base.white
|
|
476
476
|
},
|
|
477
477
|
background: {
|
|
478
|
-
default:
|
|
479
|
-
paper:
|
|
478
|
+
default: bg3.primary,
|
|
479
|
+
paper: bg3.secondary
|
|
480
480
|
},
|
|
481
481
|
text: {
|
|
482
|
-
primary:
|
|
483
|
-
secondary:
|
|
484
|
-
disabled:
|
|
482
|
+
primary: text3.primary,
|
|
483
|
+
secondary: text3.secondary,
|
|
484
|
+
disabled: text3.disabled
|
|
485
485
|
},
|
|
486
|
-
divider:
|
|
486
|
+
divider: border3.secondary,
|
|
487
487
|
action: {
|
|
488
|
-
active:
|
|
489
|
-
hover:
|
|
490
|
-
selected:
|
|
491
|
-
disabled:
|
|
492
|
-
disabledBackground:
|
|
488
|
+
active: fg3.tertiary,
|
|
489
|
+
hover: bg3.primaryHover,
|
|
490
|
+
selected: bg3.brandPrimary,
|
|
491
|
+
disabled: fg3.disabled,
|
|
492
|
+
disabledBackground: bg3.disabled
|
|
493
493
|
}
|
|
494
494
|
};
|
|
495
495
|
}
|
|
@@ -594,15 +594,15 @@ var typography = buildTypography({
|
|
|
594
594
|
// src/theme/components.ts
|
|
595
595
|
function buildComponents(tokens) {
|
|
596
596
|
const {
|
|
597
|
-
colors:
|
|
598
|
-
radius:
|
|
599
|
-
focusRings:
|
|
597
|
+
colors: colors3,
|
|
598
|
+
radius: radius3,
|
|
599
|
+
focusRings: focusRings3,
|
|
600
600
|
shadows: tokenShadows,
|
|
601
|
-
text:
|
|
602
|
-
bg:
|
|
603
|
-
fg:
|
|
604
|
-
border:
|
|
605
|
-
buttonColors:
|
|
601
|
+
text: text3,
|
|
602
|
+
bg: bg3,
|
|
603
|
+
fg: fg3,
|
|
604
|
+
border: border3,
|
|
605
|
+
buttonColors: buttonColors3
|
|
606
606
|
} = tokens;
|
|
607
607
|
return {
|
|
608
608
|
// ─── Button ─────────────────────────────────────────────────────
|
|
@@ -612,7 +612,7 @@ function buildComponents(tokens) {
|
|
|
612
612
|
},
|
|
613
613
|
styleOverrides: {
|
|
614
614
|
root: {
|
|
615
|
-
borderRadius:
|
|
615
|
+
borderRadius: radius3.md,
|
|
616
616
|
fontWeight: 600,
|
|
617
617
|
boxShadow: tokenShadows.xs,
|
|
618
618
|
height: 32,
|
|
@@ -620,36 +620,36 @@ function buildComponents(tokens) {
|
|
|
620
620
|
fontSize: 14,
|
|
621
621
|
lineHeight: "20px",
|
|
622
622
|
"&:focus-visible": {
|
|
623
|
-
boxShadow:
|
|
623
|
+
boxShadow: focusRings3.brandShadowXs
|
|
624
624
|
}
|
|
625
625
|
},
|
|
626
626
|
containedPrimary: {
|
|
627
|
-
backgroundColor:
|
|
627
|
+
backgroundColor: buttonColors3.primary.bg,
|
|
628
628
|
"&:hover": {
|
|
629
|
-
backgroundColor:
|
|
629
|
+
backgroundColor: buttonColors3.primary.bgHover
|
|
630
630
|
}
|
|
631
631
|
},
|
|
632
632
|
outlinedPrimary: {
|
|
633
|
-
borderColor:
|
|
634
|
-
color:
|
|
633
|
+
borderColor: buttonColors3.secondaryColor.border,
|
|
634
|
+
color: buttonColors3.secondaryColor.fg,
|
|
635
635
|
"&:hover": {
|
|
636
|
-
backgroundColor:
|
|
637
|
-
borderColor:
|
|
636
|
+
backgroundColor: buttonColors3.secondaryColor.bgHover,
|
|
637
|
+
borderColor: buttonColors3.secondaryColor.borderHover
|
|
638
638
|
}
|
|
639
639
|
},
|
|
640
640
|
outlinedSecondary: {
|
|
641
|
-
borderColor:
|
|
641
|
+
borderColor: buttonColors3.secondary.border,
|
|
642
642
|
"&:hover": {
|
|
643
|
-
borderColor:
|
|
643
|
+
borderColor: buttonColors3.secondary.borderHover
|
|
644
644
|
}
|
|
645
645
|
},
|
|
646
646
|
text: {
|
|
647
647
|
boxShadow: "none"
|
|
648
648
|
},
|
|
649
649
|
textPrimary: {
|
|
650
|
-
color:
|
|
650
|
+
color: buttonColors3.tertiaryColor.fg,
|
|
651
651
|
"&:hover": {
|
|
652
|
-
backgroundColor:
|
|
652
|
+
backgroundColor: buttonColors3.tertiaryColor.bgHover
|
|
653
653
|
}
|
|
654
654
|
}
|
|
655
655
|
}
|
|
@@ -661,11 +661,11 @@ function buildComponents(tokens) {
|
|
|
661
661
|
},
|
|
662
662
|
styleOverrides: {
|
|
663
663
|
root: {
|
|
664
|
-
borderRadius:
|
|
664
|
+
borderRadius: radius3.md
|
|
665
665
|
},
|
|
666
666
|
grouped: {
|
|
667
667
|
"&:not(:last-of-type)": {
|
|
668
|
-
borderRight: `1px solid ${
|
|
668
|
+
borderRight: `1px solid ${buttonColors3.primary.borderHover}`
|
|
669
669
|
}
|
|
670
670
|
}
|
|
671
671
|
}
|
|
@@ -679,13 +679,13 @@ function buildComponents(tokens) {
|
|
|
679
679
|
boxShadow: tokenShadows.lg
|
|
680
680
|
},
|
|
681
681
|
"&:focus-visible": {
|
|
682
|
-
boxShadow:
|
|
682
|
+
boxShadow: focusRings3.brandShadowSm
|
|
683
683
|
}
|
|
684
684
|
},
|
|
685
685
|
primary: {
|
|
686
|
-
backgroundColor:
|
|
686
|
+
backgroundColor: buttonColors3.primary.bg,
|
|
687
687
|
"&:hover": {
|
|
688
|
-
backgroundColor:
|
|
688
|
+
backgroundColor: buttonColors3.primary.bgHover
|
|
689
689
|
}
|
|
690
690
|
}
|
|
691
691
|
}
|
|
@@ -693,16 +693,15 @@ function buildComponents(tokens) {
|
|
|
693
693
|
// ─── TextField / Input ──────────────────────────────────────────
|
|
694
694
|
MuiTextField: {
|
|
695
695
|
defaultProps: {
|
|
696
|
-
variant: "outlined"
|
|
697
|
-
size: "small"
|
|
696
|
+
variant: "outlined"
|
|
698
697
|
}
|
|
699
698
|
},
|
|
700
699
|
MuiInputBase: {
|
|
701
700
|
styleOverrides: {
|
|
702
701
|
input: {
|
|
703
702
|
"&::placeholder": {
|
|
704
|
-
color:
|
|
705
|
-
WebkitTextFillColor:
|
|
703
|
+
color: text3.placeholder,
|
|
704
|
+
WebkitTextFillColor: text3.placeholder,
|
|
706
705
|
fontWeight: 400,
|
|
707
706
|
opacity: 1
|
|
708
707
|
}
|
|
@@ -712,34 +711,29 @@ function buildComponents(tokens) {
|
|
|
712
711
|
MuiOutlinedInput: {
|
|
713
712
|
styleOverrides: {
|
|
714
713
|
root: {
|
|
715
|
-
borderRadius:
|
|
714
|
+
borderRadius: radius3.md,
|
|
716
715
|
boxShadow: tokenShadows.xs,
|
|
717
716
|
"&:hover .MuiOutlinedInput-notchedOutline": {
|
|
718
|
-
borderColor:
|
|
717
|
+
borderColor: border3.brand
|
|
719
718
|
},
|
|
720
719
|
"&.Mui-focused .MuiOutlinedInput-notchedOutline": {
|
|
721
|
-
borderColor:
|
|
720
|
+
borderColor: border3.brandSolid,
|
|
722
721
|
borderWidth: 1,
|
|
723
722
|
boxShadow: "none"
|
|
724
723
|
},
|
|
725
724
|
"&.Mui-error .MuiOutlinedInput-notchedOutline": {
|
|
726
|
-
borderColor:
|
|
725
|
+
borderColor: border3.error
|
|
727
726
|
},
|
|
728
727
|
"&.Mui-error.Mui-focused .MuiOutlinedInput-notchedOutline": {
|
|
729
|
-
borderColor:
|
|
728
|
+
borderColor: border3.errorSolid,
|
|
730
729
|
boxShadow: "none"
|
|
731
730
|
}
|
|
732
731
|
},
|
|
733
732
|
notchedOutline: {
|
|
734
|
-
borderColor:
|
|
733
|
+
borderColor: border3.primary
|
|
735
734
|
},
|
|
736
735
|
input: {
|
|
737
|
-
padding: "
|
|
738
|
-
fontSize: 16,
|
|
739
|
-
lineHeight: "24px"
|
|
740
|
-
},
|
|
741
|
-
inputSizeSmall: {
|
|
742
|
-
padding: "8px 12px",
|
|
736
|
+
padding: "6px 12px",
|
|
743
737
|
fontSize: 14,
|
|
744
738
|
lineHeight: "20px"
|
|
745
739
|
}
|
|
@@ -748,12 +742,12 @@ function buildComponents(tokens) {
|
|
|
748
742
|
MuiFormLabel: {
|
|
749
743
|
styleOverrides: {
|
|
750
744
|
root: {
|
|
751
|
-
color:
|
|
745
|
+
color: text3.placeholder,
|
|
752
746
|
"&.Mui-focused": {
|
|
753
|
-
color:
|
|
747
|
+
color: text3.placeholder
|
|
754
748
|
},
|
|
755
749
|
"&.Mui-error": {
|
|
756
|
-
color:
|
|
750
|
+
color: text3.errorPrimary
|
|
757
751
|
}
|
|
758
752
|
}
|
|
759
753
|
}
|
|
@@ -763,12 +757,18 @@ function buildComponents(tokens) {
|
|
|
763
757
|
root: {
|
|
764
758
|
fontSize: 14,
|
|
765
759
|
fontWeight: 500,
|
|
766
|
-
color:
|
|
760
|
+
color: text3.placeholder,
|
|
767
761
|
"&.Mui-focused": {
|
|
768
|
-
color:
|
|
762
|
+
color: text3.placeholder
|
|
769
763
|
},
|
|
770
764
|
"&.Mui-error": {
|
|
771
|
-
color:
|
|
765
|
+
color: text3.errorPrimary
|
|
766
|
+
}
|
|
767
|
+
},
|
|
768
|
+
outlined: {
|
|
769
|
+
transform: "translate(12px, 6px) scale(1)",
|
|
770
|
+
"&.MuiInputLabel-shrink": {
|
|
771
|
+
transform: "translate(14px, -9px) scale(0.75)"
|
|
772
772
|
}
|
|
773
773
|
}
|
|
774
774
|
}
|
|
@@ -781,7 +781,7 @@ function buildComponents(tokens) {
|
|
|
781
781
|
marginTop: 6,
|
|
782
782
|
marginLeft: 0,
|
|
783
783
|
"&.Mui-error": {
|
|
784
|
-
color:
|
|
784
|
+
color: text3.errorPrimary
|
|
785
785
|
}
|
|
786
786
|
}
|
|
787
787
|
}
|
|
@@ -789,18 +789,38 @@ function buildComponents(tokens) {
|
|
|
789
789
|
// ─── Select ─────────────────────────────────────────────────────
|
|
790
790
|
MuiSelect: {
|
|
791
791
|
defaultProps: {
|
|
792
|
-
|
|
792
|
+
MenuProps: {
|
|
793
|
+
autoFocus: false,
|
|
794
|
+
slotProps: {
|
|
795
|
+
backdrop: {
|
|
796
|
+
sx: { backgroundColor: "transparent" }
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
}
|
|
793
800
|
},
|
|
794
801
|
styleOverrides: {
|
|
795
802
|
select: {
|
|
796
803
|
"&.MuiSelect-select": {
|
|
797
|
-
"
|
|
798
|
-
|
|
799
|
-
|
|
804
|
+
minHeight: "auto",
|
|
805
|
+
padding: "6px 12px",
|
|
806
|
+
fontSize: 14,
|
|
807
|
+
lineHeight: "20px"
|
|
800
808
|
}
|
|
801
809
|
},
|
|
802
810
|
icon: {
|
|
803
|
-
color:
|
|
811
|
+
color: text3.placeholder
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
MuiMenuItem: {
|
|
816
|
+
styleOverrides: {
|
|
817
|
+
root: {
|
|
818
|
+
borderRadius: radius3.md,
|
|
819
|
+
padding: "6px 8px",
|
|
820
|
+
gap: 4,
|
|
821
|
+
"&:hover": {
|
|
822
|
+
backgroundColor: bg3.primaryHover
|
|
823
|
+
}
|
|
804
824
|
}
|
|
805
825
|
}
|
|
806
826
|
},
|
|
@@ -808,20 +828,29 @@ function buildComponents(tokens) {
|
|
|
808
828
|
MuiAutocomplete: {
|
|
809
829
|
styleOverrides: {
|
|
810
830
|
paper: {
|
|
811
|
-
borderRadius:
|
|
831
|
+
borderRadius: radius3.md,
|
|
812
832
|
boxShadow: tokenShadows.lg,
|
|
813
|
-
border: `1px solid ${
|
|
833
|
+
border: `1px solid ${border3.secondary}`,
|
|
814
834
|
marginTop: 4
|
|
815
835
|
},
|
|
836
|
+
inputRoot: {
|
|
837
|
+
// Override Autocomplete's default padding so the input height stays 32px
|
|
838
|
+
padding: "0 12px",
|
|
839
|
+
"&.MuiOutlinedInput-root .MuiAutocomplete-input": {
|
|
840
|
+
padding: "6px 0",
|
|
841
|
+
fontSize: 14,
|
|
842
|
+
lineHeight: "20px"
|
|
843
|
+
}
|
|
844
|
+
},
|
|
816
845
|
option: {
|
|
817
|
-
fontSize:
|
|
818
|
-
lineHeight: "
|
|
819
|
-
padding: "
|
|
846
|
+
fontSize: 14,
|
|
847
|
+
lineHeight: "20px",
|
|
848
|
+
padding: "6px 12px",
|
|
820
849
|
"&.Mui-focused": {
|
|
821
|
-
backgroundColor:
|
|
850
|
+
backgroundColor: bg3.primaryHover
|
|
822
851
|
},
|
|
823
852
|
'&[aria-selected="true"]': {
|
|
824
|
-
backgroundColor:
|
|
853
|
+
backgroundColor: bg3.brandPrimary
|
|
825
854
|
}
|
|
826
855
|
},
|
|
827
856
|
listbox: {
|
|
@@ -836,28 +865,28 @@ function buildComponents(tokens) {
|
|
|
836
865
|
},
|
|
837
866
|
styleOverrides: {
|
|
838
867
|
root: {
|
|
839
|
-
color:
|
|
840
|
-
borderRadius:
|
|
868
|
+
color: border3.primary,
|
|
869
|
+
borderRadius: radius3.xs,
|
|
841
870
|
padding: 0,
|
|
842
871
|
width: 20,
|
|
843
872
|
height: 20,
|
|
844
873
|
"&:hover": {
|
|
845
874
|
backgroundColor: "transparent",
|
|
846
|
-
color:
|
|
875
|
+
color: fg3.brandPrimary
|
|
847
876
|
},
|
|
848
877
|
"&.Mui-checked": {
|
|
849
|
-
color:
|
|
878
|
+
color: fg3.brandPrimary
|
|
850
879
|
},
|
|
851
880
|
"&.Mui-checked:hover": {
|
|
852
|
-
color:
|
|
881
|
+
color: colors3.brand[700]
|
|
853
882
|
},
|
|
854
883
|
"&.Mui-focusVisible": {
|
|
855
884
|
outline: "none",
|
|
856
|
-
boxShadow:
|
|
857
|
-
borderRadius:
|
|
885
|
+
boxShadow: focusRings3.brand,
|
|
886
|
+
borderRadius: radius3.xs
|
|
858
887
|
},
|
|
859
888
|
"&.Mui-disabled": {
|
|
860
|
-
color:
|
|
889
|
+
color: border3.primary
|
|
861
890
|
}
|
|
862
891
|
}
|
|
863
892
|
}
|
|
@@ -869,25 +898,25 @@ function buildComponents(tokens) {
|
|
|
869
898
|
},
|
|
870
899
|
styleOverrides: {
|
|
871
900
|
root: {
|
|
872
|
-
color:
|
|
901
|
+
color: border3.primary,
|
|
873
902
|
padding: 0,
|
|
874
903
|
"&:hover": {
|
|
875
904
|
backgroundColor: "transparent",
|
|
876
|
-
color:
|
|
905
|
+
color: fg3.brandPrimary
|
|
877
906
|
},
|
|
878
907
|
"&.Mui-checked": {
|
|
879
|
-
color:
|
|
908
|
+
color: fg3.brandPrimary
|
|
880
909
|
},
|
|
881
910
|
"&.Mui-checked:hover": {
|
|
882
|
-
color:
|
|
911
|
+
color: colors3.brand[700]
|
|
883
912
|
},
|
|
884
913
|
"&.Mui-focusVisible": {
|
|
885
914
|
outline: "none",
|
|
886
|
-
boxShadow:
|
|
887
|
-
borderRadius:
|
|
915
|
+
boxShadow: focusRings3.brand,
|
|
916
|
+
borderRadius: radius3.full
|
|
888
917
|
},
|
|
889
918
|
"&.Mui-disabled": {
|
|
890
|
-
color:
|
|
919
|
+
color: border3.primary
|
|
891
920
|
}
|
|
892
921
|
}
|
|
893
922
|
}
|
|
@@ -907,20 +936,20 @@ function buildComponents(tokens) {
|
|
|
907
936
|
padding: 2,
|
|
908
937
|
"&.Mui-checked": {
|
|
909
938
|
transform: "translateX(20px)",
|
|
910
|
-
color:
|
|
939
|
+
color: fg3.white,
|
|
911
940
|
"& + .MuiSwitch-track": {
|
|
912
|
-
backgroundColor:
|
|
941
|
+
backgroundColor: fg3.brandPrimary,
|
|
913
942
|
opacity: 1
|
|
914
943
|
}
|
|
915
944
|
},
|
|
916
945
|
"&.Mui-checked:hover + .MuiSwitch-track": {
|
|
917
|
-
backgroundColor:
|
|
946
|
+
backgroundColor: colors3.brand[700]
|
|
918
947
|
},
|
|
919
948
|
"&.Mui-focusVisible .MuiSwitch-thumb": {
|
|
920
|
-
boxShadow:
|
|
949
|
+
boxShadow: focusRings3.brand
|
|
921
950
|
},
|
|
922
951
|
"&.Mui-disabled .MuiSwitch-thumb": {
|
|
923
|
-
color:
|
|
952
|
+
color: bg3.disabled
|
|
924
953
|
},
|
|
925
954
|
"&.Mui-disabled + .MuiSwitch-track": {
|
|
926
955
|
opacity: 0.5
|
|
@@ -932,8 +961,8 @@ function buildComponents(tokens) {
|
|
|
932
961
|
boxShadow: "0px 1px 2px 0px #1018280d"
|
|
933
962
|
},
|
|
934
963
|
track: {
|
|
935
|
-
borderRadius:
|
|
936
|
-
backgroundColor:
|
|
964
|
+
borderRadius: radius3.full,
|
|
965
|
+
backgroundColor: border3.secondary,
|
|
937
966
|
opacity: 1
|
|
938
967
|
}
|
|
939
968
|
}
|
|
@@ -942,8 +971,8 @@ function buildComponents(tokens) {
|
|
|
942
971
|
MuiToggleButton: {
|
|
943
972
|
styleOverrides: {
|
|
944
973
|
root: {
|
|
945
|
-
borderColor:
|
|
946
|
-
color:
|
|
974
|
+
borderColor: border3.primary,
|
|
975
|
+
color: text3.secondary,
|
|
947
976
|
fontSize: 14,
|
|
948
977
|
fontWeight: 600,
|
|
949
978
|
lineHeight: "20px",
|
|
@@ -951,19 +980,19 @@ function buildComponents(tokens) {
|
|
|
951
980
|
padding: "6px 12px",
|
|
952
981
|
textTransform: "none",
|
|
953
982
|
"&:hover": {
|
|
954
|
-
backgroundColor:
|
|
955
|
-
borderColor:
|
|
983
|
+
backgroundColor: bg3.primaryHover,
|
|
984
|
+
borderColor: border3.primary
|
|
956
985
|
},
|
|
957
986
|
"&.Mui-selected": {
|
|
958
|
-
backgroundColor:
|
|
959
|
-
color:
|
|
960
|
-
borderColor:
|
|
987
|
+
backgroundColor: bg3.brandPrimary,
|
|
988
|
+
color: buttonColors3.secondaryColor.fg,
|
|
989
|
+
borderColor: border3.brandSolid,
|
|
961
990
|
"&:hover": {
|
|
962
|
-
backgroundColor:
|
|
991
|
+
backgroundColor: bg3.brandSecondary
|
|
963
992
|
}
|
|
964
993
|
},
|
|
965
994
|
"&:focus-visible": {
|
|
966
|
-
boxShadow:
|
|
995
|
+
boxShadow: focusRings3.brandShadowXs
|
|
967
996
|
}
|
|
968
997
|
}
|
|
969
998
|
}
|
|
@@ -971,7 +1000,7 @@ function buildComponents(tokens) {
|
|
|
971
1000
|
MuiToggleButtonGroup: {
|
|
972
1001
|
styleOverrides: {
|
|
973
1002
|
root: {
|
|
974
|
-
borderRadius:
|
|
1003
|
+
borderRadius: radius3.md,
|
|
975
1004
|
overflow: "hidden"
|
|
976
1005
|
},
|
|
977
1006
|
grouped: {
|
|
@@ -980,12 +1009,12 @@ function buildComponents(tokens) {
|
|
|
980
1009
|
marginLeft: -1
|
|
981
1010
|
},
|
|
982
1011
|
"&:first-of-type": {
|
|
983
|
-
borderTopLeftRadius:
|
|
984
|
-
borderBottomLeftRadius:
|
|
1012
|
+
borderTopLeftRadius: radius3.md,
|
|
1013
|
+
borderBottomLeftRadius: radius3.md
|
|
985
1014
|
},
|
|
986
1015
|
"&:last-of-type": {
|
|
987
|
-
borderTopRightRadius:
|
|
988
|
-
borderBottomRightRadius:
|
|
1016
|
+
borderTopRightRadius: radius3.md,
|
|
1017
|
+
borderBottomRightRadius: radius3.md
|
|
989
1018
|
}
|
|
990
1019
|
}
|
|
991
1020
|
}
|
|
@@ -997,9 +1026,9 @@ function buildComponents(tokens) {
|
|
|
997
1026
|
},
|
|
998
1027
|
styleOverrides: {
|
|
999
1028
|
root: {
|
|
1000
|
-
borderRadius:
|
|
1001
|
-
border: `1px solid ${
|
|
1002
|
-
backgroundColor:
|
|
1029
|
+
borderRadius: radius3.xl,
|
|
1030
|
+
border: `1px solid ${border3.secondary}`,
|
|
1031
|
+
backgroundColor: bg3.primary,
|
|
1003
1032
|
boxShadow: tokenShadows.xs,
|
|
1004
1033
|
overflow: "hidden"
|
|
1005
1034
|
}
|
|
@@ -1046,35 +1075,35 @@ function buildComponents(tokens) {
|
|
|
1046
1075
|
backgroundImage: "none"
|
|
1047
1076
|
},
|
|
1048
1077
|
rounded: {
|
|
1049
|
-
borderRadius:
|
|
1078
|
+
borderRadius: radius3.lg
|
|
1050
1079
|
},
|
|
1051
1080
|
elevation1: {
|
|
1052
1081
|
boxShadow: tokenShadows.xs,
|
|
1053
|
-
border: `1px solid ${
|
|
1082
|
+
border: `1px solid ${border3.secondary}`
|
|
1054
1083
|
},
|
|
1055
1084
|
elevation2: {
|
|
1056
1085
|
boxShadow: tokenShadows.sm,
|
|
1057
|
-
border: `1px solid ${
|
|
1086
|
+
border: `1px solid ${border3.secondary}`
|
|
1058
1087
|
},
|
|
1059
1088
|
elevation3: {
|
|
1060
1089
|
boxShadow: tokenShadows.md,
|
|
1061
|
-
border: `1px solid ${
|
|
1090
|
+
border: `1px solid ${border3.secondary}`
|
|
1062
1091
|
},
|
|
1063
1092
|
elevation4: {
|
|
1064
1093
|
boxShadow: tokenShadows.lg,
|
|
1065
|
-
border: `1px solid ${
|
|
1094
|
+
border: `1px solid ${border3.secondary}`
|
|
1066
1095
|
},
|
|
1067
1096
|
elevation8: {
|
|
1068
1097
|
boxShadow: tokenShadows.xl,
|
|
1069
|
-
border: `1px solid ${
|
|
1098
|
+
border: `1px solid ${border3.secondary}`
|
|
1070
1099
|
},
|
|
1071
1100
|
elevation16: {
|
|
1072
1101
|
boxShadow: tokenShadows["2xl"],
|
|
1073
|
-
border: `1px solid ${
|
|
1102
|
+
border: `1px solid ${border3.secondary}`
|
|
1074
1103
|
},
|
|
1075
1104
|
elevation24: {
|
|
1076
1105
|
boxShadow: tokenShadows["3xl"],
|
|
1077
|
-
border: `1px solid ${
|
|
1106
|
+
border: `1px solid ${border3.secondary}`
|
|
1078
1107
|
}
|
|
1079
1108
|
}
|
|
1080
1109
|
},
|
|
@@ -1086,8 +1115,8 @@ function buildComponents(tokens) {
|
|
|
1086
1115
|
},
|
|
1087
1116
|
styleOverrides: {
|
|
1088
1117
|
root: {
|
|
1089
|
-
border: `1px solid ${
|
|
1090
|
-
borderRadius:
|
|
1118
|
+
border: `1px solid ${border3.secondary}`,
|
|
1119
|
+
borderRadius: radius3.lg,
|
|
1091
1120
|
"&:not(:last-child)": {
|
|
1092
1121
|
marginBottom: 8
|
|
1093
1122
|
},
|
|
@@ -1097,7 +1126,7 @@ function buildComponents(tokens) {
|
|
|
1097
1126
|
"&.Mui-expanded": {
|
|
1098
1127
|
margin: 0,
|
|
1099
1128
|
marginBottom: 8,
|
|
1100
|
-
borderRadius:
|
|
1129
|
+
borderRadius: radius3.lg
|
|
1101
1130
|
}
|
|
1102
1131
|
}
|
|
1103
1132
|
}
|
|
@@ -1109,7 +1138,7 @@ function buildComponents(tokens) {
|
|
|
1109
1138
|
minHeight: 56,
|
|
1110
1139
|
"&.Mui-expanded": {
|
|
1111
1140
|
minHeight: 56,
|
|
1112
|
-
borderBottom: `1px solid ${
|
|
1141
|
+
borderBottom: `1px solid ${border3.secondary}`
|
|
1113
1142
|
}
|
|
1114
1143
|
},
|
|
1115
1144
|
content: {
|
|
@@ -1135,8 +1164,8 @@ function buildComponents(tokens) {
|
|
|
1135
1164
|
},
|
|
1136
1165
|
styleOverrides: {
|
|
1137
1166
|
root: {
|
|
1138
|
-
borderBottom: `1px solid ${
|
|
1139
|
-
backgroundColor:
|
|
1167
|
+
borderBottom: `1px solid ${border3.secondary}`,
|
|
1168
|
+
backgroundColor: bg3.primary
|
|
1140
1169
|
}
|
|
1141
1170
|
}
|
|
1142
1171
|
},
|
|
@@ -1160,7 +1189,7 @@ function buildComponents(tokens) {
|
|
|
1160
1189
|
MuiChip: {
|
|
1161
1190
|
styleOverrides: {
|
|
1162
1191
|
root: {
|
|
1163
|
-
borderRadius:
|
|
1192
|
+
borderRadius: radius3.md
|
|
1164
1193
|
},
|
|
1165
1194
|
label: {
|
|
1166
1195
|
fontWeight: 500
|
|
@@ -1176,51 +1205,51 @@ function buildComponents(tokens) {
|
|
|
1176
1205
|
},
|
|
1177
1206
|
colorDefault: {
|
|
1178
1207
|
"&.MuiChip-filled": {
|
|
1179
|
-
backgroundColor:
|
|
1180
|
-
color:
|
|
1181
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1208
|
+
backgroundColor: colors3.gray[50],
|
|
1209
|
+
color: colors3.gray[700],
|
|
1210
|
+
"& .MuiChip-deleteIcon": { color: colors3.gray[400] }
|
|
1182
1211
|
}
|
|
1183
1212
|
},
|
|
1184
1213
|
colorPrimary: {
|
|
1185
1214
|
"&.MuiChip-filled": {
|
|
1186
|
-
backgroundColor:
|
|
1187
|
-
color:
|
|
1188
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1215
|
+
backgroundColor: colors3.brand[50],
|
|
1216
|
+
color: colors3.brand[700],
|
|
1217
|
+
"& .MuiChip-deleteIcon": { color: colors3.brand[400] }
|
|
1189
1218
|
}
|
|
1190
1219
|
},
|
|
1191
1220
|
colorSecondary: {
|
|
1192
1221
|
"&.MuiChip-filled": {
|
|
1193
|
-
backgroundColor:
|
|
1194
|
-
color:
|
|
1195
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1222
|
+
backgroundColor: colors3.gray[50],
|
|
1223
|
+
color: colors3.gray[700],
|
|
1224
|
+
"& .MuiChip-deleteIcon": { color: colors3.gray[400] }
|
|
1196
1225
|
}
|
|
1197
1226
|
},
|
|
1198
1227
|
colorError: {
|
|
1199
1228
|
"&.MuiChip-filled": {
|
|
1200
|
-
backgroundColor:
|
|
1201
|
-
color:
|
|
1202
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1229
|
+
backgroundColor: colors3.error[50],
|
|
1230
|
+
color: colors3.error[700],
|
|
1231
|
+
"& .MuiChip-deleteIcon": { color: colors3.error[400] }
|
|
1203
1232
|
}
|
|
1204
1233
|
},
|
|
1205
1234
|
colorWarning: {
|
|
1206
1235
|
"&.MuiChip-filled": {
|
|
1207
|
-
backgroundColor:
|
|
1208
|
-
color:
|
|
1209
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1236
|
+
backgroundColor: colors3.warning[50],
|
|
1237
|
+
color: colors3.warning[700],
|
|
1238
|
+
"& .MuiChip-deleteIcon": { color: colors3.warning[400] }
|
|
1210
1239
|
}
|
|
1211
1240
|
},
|
|
1212
1241
|
colorSuccess: {
|
|
1213
1242
|
"&.MuiChip-filled": {
|
|
1214
|
-
backgroundColor:
|
|
1215
|
-
color:
|
|
1216
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1243
|
+
backgroundColor: colors3.success[50],
|
|
1244
|
+
color: colors3.success[700],
|
|
1245
|
+
"& .MuiChip-deleteIcon": { color: colors3.success[400] }
|
|
1217
1246
|
}
|
|
1218
1247
|
},
|
|
1219
1248
|
colorInfo: {
|
|
1220
1249
|
"&.MuiChip-filled": {
|
|
1221
|
-
backgroundColor:
|
|
1222
|
-
color:
|
|
1223
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1250
|
+
backgroundColor: colors3.blue[50],
|
|
1251
|
+
color: colors3.blue[700],
|
|
1252
|
+
"& .MuiChip-deleteIcon": { color: colors3.blue[400] }
|
|
1224
1253
|
}
|
|
1225
1254
|
}
|
|
1226
1255
|
}
|
|
@@ -1236,7 +1265,7 @@ function buildComponents(tokens) {
|
|
|
1236
1265
|
fontSize: 14,
|
|
1237
1266
|
lineHeight: "20px",
|
|
1238
1267
|
fontWeight: 500,
|
|
1239
|
-
color:
|
|
1268
|
+
color: text3.secondary
|
|
1240
1269
|
}
|
|
1241
1270
|
}
|
|
1242
1271
|
},
|
|
@@ -1252,29 +1281,29 @@ function buildComponents(tokens) {
|
|
|
1252
1281
|
MuiTableCell: {
|
|
1253
1282
|
styleOverrides: {
|
|
1254
1283
|
root: {
|
|
1255
|
-
borderBottom: `1px solid ${
|
|
1284
|
+
borderBottom: `1px solid ${border3.secondary}`,
|
|
1256
1285
|
padding: "16px 24px",
|
|
1257
1286
|
fontSize: 14,
|
|
1258
1287
|
lineHeight: "20px",
|
|
1259
|
-
color:
|
|
1288
|
+
color: fg3.tertiary
|
|
1260
1289
|
},
|
|
1261
1290
|
head: {
|
|
1262
|
-
backgroundColor:
|
|
1263
|
-
color:
|
|
1291
|
+
backgroundColor: bg3.secondary,
|
|
1292
|
+
color: fg3.tertiary,
|
|
1264
1293
|
fontWeight: 500,
|
|
1265
1294
|
fontSize: 12,
|
|
1266
1295
|
lineHeight: "18px"
|
|
1267
1296
|
},
|
|
1268
1297
|
body: {
|
|
1269
|
-
color:
|
|
1298
|
+
color: fg3.tertiary
|
|
1270
1299
|
}
|
|
1271
1300
|
}
|
|
1272
1301
|
},
|
|
1273
1302
|
MuiTableHead: {
|
|
1274
1303
|
styleOverrides: {
|
|
1275
1304
|
root: {
|
|
1276
|
-
backgroundColor:
|
|
1277
|
-
borderBottom: `1px solid ${
|
|
1305
|
+
backgroundColor: bg3.secondary,
|
|
1306
|
+
borderBottom: `1px solid ${border3.secondary}`
|
|
1278
1307
|
}
|
|
1279
1308
|
}
|
|
1280
1309
|
},
|
|
@@ -1285,12 +1314,12 @@ function buildComponents(tokens) {
|
|
|
1285
1314
|
border: 0
|
|
1286
1315
|
},
|
|
1287
1316
|
"&:hover": {
|
|
1288
|
-
backgroundColor:
|
|
1317
|
+
backgroundColor: bg3.primaryHover
|
|
1289
1318
|
},
|
|
1290
1319
|
"&.Mui-selected": {
|
|
1291
|
-
backgroundColor:
|
|
1320
|
+
backgroundColor: bg3.brandPrimary,
|
|
1292
1321
|
"&:hover": {
|
|
1293
|
-
backgroundColor:
|
|
1322
|
+
backgroundColor: bg3.brandPrimary
|
|
1294
1323
|
}
|
|
1295
1324
|
}
|
|
1296
1325
|
}
|
|
@@ -1299,8 +1328,8 @@ function buildComponents(tokens) {
|
|
|
1299
1328
|
MuiTableContainer: {
|
|
1300
1329
|
styleOverrides: {
|
|
1301
1330
|
root: {
|
|
1302
|
-
borderRadius:
|
|
1303
|
-
border: `1px solid ${
|
|
1331
|
+
borderRadius: radius3.xl,
|
|
1332
|
+
border: `1px solid ${border3.secondary}`,
|
|
1304
1333
|
boxShadow: "none"
|
|
1305
1334
|
}
|
|
1306
1335
|
}
|
|
@@ -1314,24 +1343,24 @@ function buildComponents(tokens) {
|
|
|
1314
1343
|
lineHeight: "18px",
|
|
1315
1344
|
minWidth: 20,
|
|
1316
1345
|
height: 20,
|
|
1317
|
-
borderRadius:
|
|
1346
|
+
borderRadius: radius3.full
|
|
1318
1347
|
},
|
|
1319
1348
|
colorPrimary: {
|
|
1320
|
-
backgroundColor:
|
|
1349
|
+
backgroundColor: bg3.brandSolid
|
|
1321
1350
|
},
|
|
1322
1351
|
colorError: {
|
|
1323
|
-
backgroundColor:
|
|
1352
|
+
backgroundColor: bg3.errorSolid
|
|
1324
1353
|
},
|
|
1325
1354
|
colorSuccess: {
|
|
1326
|
-
backgroundColor:
|
|
1355
|
+
backgroundColor: bg3.successSolid
|
|
1327
1356
|
},
|
|
1328
1357
|
colorWarning: {
|
|
1329
|
-
backgroundColor:
|
|
1358
|
+
backgroundColor: bg3.warningSolid
|
|
1330
1359
|
},
|
|
1331
1360
|
dot: {
|
|
1332
1361
|
minWidth: 8,
|
|
1333
1362
|
height: 8,
|
|
1334
|
-
borderRadius:
|
|
1363
|
+
borderRadius: radius3.full
|
|
1335
1364
|
}
|
|
1336
1365
|
}
|
|
1337
1366
|
},
|
|
@@ -1339,7 +1368,7 @@ function buildComponents(tokens) {
|
|
|
1339
1368
|
MuiDivider: {
|
|
1340
1369
|
styleOverrides: {
|
|
1341
1370
|
root: {
|
|
1342
|
-
borderColor:
|
|
1371
|
+
borderColor: border3.secondary
|
|
1343
1372
|
}
|
|
1344
1373
|
}
|
|
1345
1374
|
},
|
|
@@ -1354,16 +1383,16 @@ function buildComponents(tokens) {
|
|
|
1354
1383
|
MuiListItemButton: {
|
|
1355
1384
|
styleOverrides: {
|
|
1356
1385
|
root: {
|
|
1357
|
-
borderRadius:
|
|
1386
|
+
borderRadius: radius3.sm,
|
|
1358
1387
|
padding: "8px 12px",
|
|
1359
1388
|
"&:hover": {
|
|
1360
|
-
backgroundColor:
|
|
1389
|
+
backgroundColor: bg3.primaryHover
|
|
1361
1390
|
},
|
|
1362
1391
|
"&.Mui-selected": {
|
|
1363
|
-
backgroundColor:
|
|
1364
|
-
color:
|
|
1392
|
+
backgroundColor: bg3.brandPrimary,
|
|
1393
|
+
color: buttonColors3.secondaryColor.fg,
|
|
1365
1394
|
"&:hover": {
|
|
1366
|
-
backgroundColor:
|
|
1395
|
+
backgroundColor: bg3.brandSecondary
|
|
1367
1396
|
}
|
|
1368
1397
|
}
|
|
1369
1398
|
}
|
|
@@ -1373,7 +1402,7 @@ function buildComponents(tokens) {
|
|
|
1373
1402
|
styleOverrides: {
|
|
1374
1403
|
root: {
|
|
1375
1404
|
minWidth: 36,
|
|
1376
|
-
color:
|
|
1405
|
+
color: fg3.quaternary
|
|
1377
1406
|
}
|
|
1378
1407
|
}
|
|
1379
1408
|
},
|
|
@@ -1383,12 +1412,12 @@ function buildComponents(tokens) {
|
|
|
1383
1412
|
fontSize: 14,
|
|
1384
1413
|
lineHeight: "20px",
|
|
1385
1414
|
fontWeight: 500,
|
|
1386
|
-
color:
|
|
1415
|
+
color: text3.secondary
|
|
1387
1416
|
},
|
|
1388
1417
|
secondary: {
|
|
1389
1418
|
fontSize: 14,
|
|
1390
1419
|
lineHeight: "20px",
|
|
1391
|
-
color:
|
|
1420
|
+
color: text3.quaternary
|
|
1392
1421
|
}
|
|
1393
1422
|
}
|
|
1394
1423
|
},
|
|
@@ -1396,17 +1425,17 @@ function buildComponents(tokens) {
|
|
|
1396
1425
|
MuiTooltip: {
|
|
1397
1426
|
styleOverrides: {
|
|
1398
1427
|
tooltip: {
|
|
1399
|
-
backgroundColor:
|
|
1400
|
-
color:
|
|
1428
|
+
backgroundColor: bg3.primarySolid,
|
|
1429
|
+
color: text3.white,
|
|
1401
1430
|
fontSize: 12,
|
|
1402
1431
|
lineHeight: "18px",
|
|
1403
1432
|
fontWeight: 600,
|
|
1404
1433
|
padding: "8px 12px",
|
|
1405
|
-
borderRadius:
|
|
1434
|
+
borderRadius: radius3.md,
|
|
1406
1435
|
boxShadow: tokenShadows.lg
|
|
1407
1436
|
},
|
|
1408
1437
|
arrow: {
|
|
1409
|
-
color:
|
|
1438
|
+
color: bg3.primarySolid
|
|
1410
1439
|
}
|
|
1411
1440
|
}
|
|
1412
1441
|
},
|
|
@@ -1417,42 +1446,42 @@ function buildComponents(tokens) {
|
|
|
1417
1446
|
},
|
|
1418
1447
|
styleOverrides: {
|
|
1419
1448
|
root: {
|
|
1420
|
-
borderRadius:
|
|
1449
|
+
borderRadius: radius3.xl,
|
|
1421
1450
|
fontSize: 14,
|
|
1422
1451
|
lineHeight: "20px",
|
|
1423
1452
|
padding: "12px 16px",
|
|
1424
1453
|
alignItems: "center"
|
|
1425
1454
|
},
|
|
1426
1455
|
standardError: {
|
|
1427
|
-
backgroundColor:
|
|
1428
|
-
color:
|
|
1429
|
-
border: `1px solid ${
|
|
1456
|
+
backgroundColor: bg3.errorPrimary,
|
|
1457
|
+
color: colors3.error[700],
|
|
1458
|
+
border: `1px solid ${border3.error}`,
|
|
1430
1459
|
"& .MuiAlert-icon": {
|
|
1431
|
-
color:
|
|
1460
|
+
color: fg3.errorPrimary
|
|
1432
1461
|
}
|
|
1433
1462
|
},
|
|
1434
1463
|
standardWarning: {
|
|
1435
|
-
backgroundColor:
|
|
1436
|
-
color:
|
|
1437
|
-
border: `1px solid ${
|
|
1464
|
+
backgroundColor: bg3.warningPrimary,
|
|
1465
|
+
color: colors3.warning[700],
|
|
1466
|
+
border: `1px solid ${colors3.warning[300]}`,
|
|
1438
1467
|
"& .MuiAlert-icon": {
|
|
1439
|
-
color:
|
|
1468
|
+
color: fg3.warningPrimary
|
|
1440
1469
|
}
|
|
1441
1470
|
},
|
|
1442
1471
|
standardSuccess: {
|
|
1443
|
-
backgroundColor:
|
|
1444
|
-
color:
|
|
1445
|
-
border: `1px solid ${
|
|
1472
|
+
backgroundColor: bg3.successPrimary,
|
|
1473
|
+
color: colors3.success[700],
|
|
1474
|
+
border: `1px solid ${colors3.success[300]}`,
|
|
1446
1475
|
"& .MuiAlert-icon": {
|
|
1447
|
-
color:
|
|
1476
|
+
color: fg3.successPrimary
|
|
1448
1477
|
}
|
|
1449
1478
|
},
|
|
1450
1479
|
standardInfo: {
|
|
1451
|
-
backgroundColor:
|
|
1452
|
-
color:
|
|
1453
|
-
border: `1px solid ${
|
|
1480
|
+
backgroundColor: colors3.blue[50],
|
|
1481
|
+
color: colors3.blue[700],
|
|
1482
|
+
border: `1px solid ${colors3.blue[300]}`,
|
|
1454
1483
|
"& .MuiAlert-icon": {
|
|
1455
|
-
color:
|
|
1484
|
+
color: colors3.blue[600]
|
|
1456
1485
|
}
|
|
1457
1486
|
},
|
|
1458
1487
|
icon: {
|
|
@@ -1483,7 +1512,7 @@ function buildComponents(tokens) {
|
|
|
1483
1512
|
MuiDialog: {
|
|
1484
1513
|
styleOverrides: {
|
|
1485
1514
|
paper: {
|
|
1486
|
-
borderRadius:
|
|
1515
|
+
borderRadius: radius3.xl,
|
|
1487
1516
|
boxShadow: tokenShadows.xl,
|
|
1488
1517
|
padding: 0
|
|
1489
1518
|
}
|
|
@@ -1495,7 +1524,7 @@ function buildComponents(tokens) {
|
|
|
1495
1524
|
fontSize: 18,
|
|
1496
1525
|
lineHeight: "28px",
|
|
1497
1526
|
fontWeight: 600,
|
|
1498
|
-
color:
|
|
1527
|
+
color: text3.primary,
|
|
1499
1528
|
padding: "24px 24px 0"
|
|
1500
1529
|
}
|
|
1501
1530
|
}
|
|
@@ -1506,7 +1535,7 @@ function buildComponents(tokens) {
|
|
|
1506
1535
|
padding: "20px 24px",
|
|
1507
1536
|
fontSize: 14,
|
|
1508
1537
|
lineHeight: "20px",
|
|
1509
|
-
color:
|
|
1538
|
+
color: text3.tertiary
|
|
1510
1539
|
}
|
|
1511
1540
|
}
|
|
1512
1541
|
},
|
|
@@ -1522,27 +1551,27 @@ function buildComponents(tokens) {
|
|
|
1522
1551
|
MuiLinearProgress: {
|
|
1523
1552
|
styleOverrides: {
|
|
1524
1553
|
root: {
|
|
1525
|
-
borderRadius:
|
|
1554
|
+
borderRadius: radius3.full,
|
|
1526
1555
|
height: 8,
|
|
1527
|
-
backgroundColor:
|
|
1556
|
+
backgroundColor: border3.secondary
|
|
1528
1557
|
},
|
|
1529
1558
|
barColorPrimary: {
|
|
1530
|
-
backgroundColor:
|
|
1531
|
-
borderRadius:
|
|
1559
|
+
backgroundColor: fg3.brandPrimary,
|
|
1560
|
+
borderRadius: radius3.full
|
|
1532
1561
|
},
|
|
1533
1562
|
barColorSecondary: {
|
|
1534
|
-
backgroundColor:
|
|
1535
|
-
borderRadius:
|
|
1563
|
+
backgroundColor: bg3.secondarySolid,
|
|
1564
|
+
borderRadius: radius3.full
|
|
1536
1565
|
}
|
|
1537
1566
|
}
|
|
1538
1567
|
},
|
|
1539
1568
|
MuiCircularProgress: {
|
|
1540
1569
|
styleOverrides: {
|
|
1541
1570
|
colorPrimary: {
|
|
1542
|
-
color:
|
|
1571
|
+
color: fg3.brandPrimary
|
|
1543
1572
|
},
|
|
1544
1573
|
colorSecondary: {
|
|
1545
|
-
color:
|
|
1574
|
+
color: bg3.secondarySolid
|
|
1546
1575
|
}
|
|
1547
1576
|
}
|
|
1548
1577
|
},
|
|
@@ -1553,13 +1582,13 @@ function buildComponents(tokens) {
|
|
|
1553
1582
|
},
|
|
1554
1583
|
styleOverrides: {
|
|
1555
1584
|
root: {
|
|
1556
|
-
backgroundColor:
|
|
1585
|
+
backgroundColor: bg3.tertiary
|
|
1557
1586
|
},
|
|
1558
1587
|
rounded: {
|
|
1559
|
-
borderRadius:
|
|
1588
|
+
borderRadius: radius3.md
|
|
1560
1589
|
},
|
|
1561
1590
|
circular: {
|
|
1562
|
-
borderRadius:
|
|
1591
|
+
borderRadius: radius3.full
|
|
1563
1592
|
}
|
|
1564
1593
|
}
|
|
1565
1594
|
},
|
|
@@ -1567,9 +1596,9 @@ function buildComponents(tokens) {
|
|
|
1567
1596
|
MuiSnackbarContent: {
|
|
1568
1597
|
styleOverrides: {
|
|
1569
1598
|
root: {
|
|
1570
|
-
backgroundColor:
|
|
1571
|
-
color:
|
|
1572
|
-
borderRadius:
|
|
1599
|
+
backgroundColor: bg3.primarySolid,
|
|
1600
|
+
color: text3.white,
|
|
1601
|
+
borderRadius: radius3.xl,
|
|
1573
1602
|
boxShadow: tokenShadows.lg,
|
|
1574
1603
|
fontSize: 14,
|
|
1575
1604
|
lineHeight: "20px",
|
|
@@ -1603,21 +1632,21 @@ function buildComponents(tokens) {
|
|
|
1603
1632
|
MuiDataGrid: {
|
|
1604
1633
|
styleOverrides: {
|
|
1605
1634
|
root: {
|
|
1606
|
-
border: `1px solid ${
|
|
1607
|
-
borderRadius:
|
|
1635
|
+
border: `1px solid ${border3.secondary}`,
|
|
1636
|
+
borderRadius: radius3.xl,
|
|
1608
1637
|
fontFamily: "inherit",
|
|
1609
1638
|
"& .MuiDataGrid-withBorderColor": {
|
|
1610
|
-
borderColor:
|
|
1639
|
+
borderColor: border3.secondary
|
|
1611
1640
|
}
|
|
1612
1641
|
},
|
|
1613
1642
|
columnHeaders: {
|
|
1614
|
-
backgroundColor:
|
|
1643
|
+
backgroundColor: bg3.secondary
|
|
1615
1644
|
},
|
|
1616
1645
|
columnHeader: {
|
|
1617
1646
|
fontSize: 12,
|
|
1618
1647
|
lineHeight: "18px",
|
|
1619
1648
|
fontWeight: 500,
|
|
1620
|
-
color:
|
|
1649
|
+
color: fg3.tertiary,
|
|
1621
1650
|
"&:focus, &:focus-within": {
|
|
1622
1651
|
outline: "none"
|
|
1623
1652
|
}
|
|
@@ -1628,27 +1657,27 @@ function buildComponents(tokens) {
|
|
|
1628
1657
|
cell: {
|
|
1629
1658
|
fontSize: 14,
|
|
1630
1659
|
lineHeight: "20px",
|
|
1631
|
-
color:
|
|
1660
|
+
color: fg3.tertiary,
|
|
1632
1661
|
"&:focus, &:focus-within": {
|
|
1633
1662
|
outline: "none"
|
|
1634
1663
|
}
|
|
1635
1664
|
},
|
|
1636
1665
|
row: {
|
|
1637
1666
|
"&:hover": {
|
|
1638
|
-
backgroundColor:
|
|
1667
|
+
backgroundColor: bg3.primaryHover
|
|
1639
1668
|
},
|
|
1640
1669
|
"&.Mui-selected": {
|
|
1641
|
-
backgroundColor:
|
|
1670
|
+
backgroundColor: bg3.brandPrimary,
|
|
1642
1671
|
"&:hover": {
|
|
1643
|
-
backgroundColor:
|
|
1672
|
+
backgroundColor: bg3.brandPrimary
|
|
1644
1673
|
}
|
|
1645
1674
|
}
|
|
1646
1675
|
},
|
|
1647
1676
|
footerContainer: {
|
|
1648
|
-
borderTop: `1px solid ${
|
|
1677
|
+
borderTop: `1px solid ${border3.secondary}`
|
|
1649
1678
|
},
|
|
1650
1679
|
columnSeparator: {
|
|
1651
|
-
color:
|
|
1680
|
+
color: border3.secondary
|
|
1652
1681
|
}
|
|
1653
1682
|
}
|
|
1654
1683
|
}
|
|
@@ -1777,9 +1806,351 @@ var forestPreset = {
|
|
|
1777
1806
|
}
|
|
1778
1807
|
};
|
|
1779
1808
|
|
|
1809
|
+
// src/theme/presets/alkemy-plus.ts
|
|
1810
|
+
var red = {
|
|
1811
|
+
50: "#fef2f2",
|
|
1812
|
+
100: "#fee2e2",
|
|
1813
|
+
200: "#fecaca",
|
|
1814
|
+
600: "#dc2626",
|
|
1815
|
+
700: "#b91c1c",
|
|
1816
|
+
800: "#991b1b",
|
|
1817
|
+
900: "#7f1d1d"};
|
|
1818
|
+
var colors2 = {
|
|
1819
|
+
base: {
|
|
1820
|
+
white: "#ffffff",
|
|
1821
|
+
black: "#000000",
|
|
1822
|
+
transparent: "#ffffff00"
|
|
1823
|
+
},
|
|
1824
|
+
/** Brand scale — black-based for primary actions */
|
|
1825
|
+
brand: {
|
|
1826
|
+
25: "#fafafa",
|
|
1827
|
+
50: "#f5f5f5",
|
|
1828
|
+
100: "#ebebeb",
|
|
1829
|
+
200: "#d6d6d6",
|
|
1830
|
+
300: "#b0b0b0",
|
|
1831
|
+
400: "#737373",
|
|
1832
|
+
500: "#404040",
|
|
1833
|
+
600: "#1a1a1a",
|
|
1834
|
+
700: "#0d0d0d",
|
|
1835
|
+
800: "#050505",
|
|
1836
|
+
900: "#000000",
|
|
1837
|
+
950: "#000000"
|
|
1838
|
+
},
|
|
1839
|
+
/** Warm-neutral gray scale */
|
|
1840
|
+
gray: {
|
|
1841
|
+
25: "#fdfcfc",
|
|
1842
|
+
50: "#faf9f8",
|
|
1843
|
+
100: "#f5f3f1",
|
|
1844
|
+
200: "#e8e5e3",
|
|
1845
|
+
300: "#d8d8dc",
|
|
1846
|
+
400: "#a0a0a6",
|
|
1847
|
+
500: "#71717a",
|
|
1848
|
+
600: "#52525b",
|
|
1849
|
+
700: "#3f3f46",
|
|
1850
|
+
800: "#27272a",
|
|
1851
|
+
900: "#18181b",
|
|
1852
|
+
950: "#09090b"
|
|
1853
|
+
},
|
|
1854
|
+
/** Error — forest defaults (standard UX red) */
|
|
1855
|
+
error: colors.error,
|
|
1856
|
+
/** Warning — orange/yellow tones from Alkemy+ palette */
|
|
1857
|
+
warning: {
|
|
1858
|
+
25: "#fffcf5",
|
|
1859
|
+
50: "#fff7ed",
|
|
1860
|
+
100: "#ffedd5",
|
|
1861
|
+
200: "#fed7aa",
|
|
1862
|
+
300: "#fdba74",
|
|
1863
|
+
400: "#fb923c",
|
|
1864
|
+
500: "#f08828",
|
|
1865
|
+
600: "#ea580c",
|
|
1866
|
+
700: "#c2410c",
|
|
1867
|
+
800: "#9a3412",
|
|
1868
|
+
900: "#7c2d12",
|
|
1869
|
+
950: "#431407"
|
|
1870
|
+
},
|
|
1871
|
+
/** Success — forest defaults (standard UX green) */
|
|
1872
|
+
success: colors.success,
|
|
1873
|
+
/** Blue (info) — forest defaults (standard UX) */
|
|
1874
|
+
blue: colors.blue
|
|
1875
|
+
};
|
|
1876
|
+
var radius2 = {
|
|
1877
|
+
...radius,
|
|
1878
|
+
xxs: 1,
|
|
1879
|
+
xs: 2,
|
|
1880
|
+
sm: 3,
|
|
1881
|
+
md: 4,
|
|
1882
|
+
lg: 5,
|
|
1883
|
+
xl: 6,
|
|
1884
|
+
"2xl": 8,
|
|
1885
|
+
"3xl": 10,
|
|
1886
|
+
"4xl": 12
|
|
1887
|
+
};
|
|
1888
|
+
var text2 = {
|
|
1889
|
+
primary: colors2.gray[900],
|
|
1890
|
+
secondary: colors2.gray[700],
|
|
1891
|
+
secondaryHover: colors2.gray[800],
|
|
1892
|
+
tertiary: colors2.gray[600],
|
|
1893
|
+
tertiaryHover: colors2.gray[700],
|
|
1894
|
+
quaternary: colors2.gray[500],
|
|
1895
|
+
disabled: colors2.gray[500],
|
|
1896
|
+
placeholder: colors2.gray[500],
|
|
1897
|
+
placeholderSubtle: colors2.gray[300],
|
|
1898
|
+
white: colors2.base.white,
|
|
1899
|
+
brandPrimary: red[900],
|
|
1900
|
+
brandSecondary: red[700],
|
|
1901
|
+
brandTertiary: red[600],
|
|
1902
|
+
brandTertiaryAlt: red[600],
|
|
1903
|
+
primaryOnBrand: colors2.base.white,
|
|
1904
|
+
secondaryOnBrand: colors2.brand[200],
|
|
1905
|
+
tertiaryOnBrand: colors2.brand[200],
|
|
1906
|
+
quaternaryOnBrand: colors2.brand[300],
|
|
1907
|
+
errorPrimary: colors2.error[600],
|
|
1908
|
+
warningPrimary: colors2.warning[600],
|
|
1909
|
+
successPrimary: colors2.success[600]
|
|
1910
|
+
};
|
|
1911
|
+
var bg2 = {
|
|
1912
|
+
primary: colors2.gray[50],
|
|
1913
|
+
primaryAlt: colors2.gray[50],
|
|
1914
|
+
primaryHover: colors2.gray[50],
|
|
1915
|
+
primarySolid: colors2.gray[950],
|
|
1916
|
+
secondary: colors2.base.white,
|
|
1917
|
+
secondaryAlt: colors2.base.white,
|
|
1918
|
+
secondarySubtle: colors2.gray[25],
|
|
1919
|
+
secondaryHover: colors2.gray[100],
|
|
1920
|
+
secondarySolid: colors2.gray[600],
|
|
1921
|
+
tertiary: colors2.gray[100],
|
|
1922
|
+
quaternary: colors2.gray[200],
|
|
1923
|
+
active: colors2.gray[50],
|
|
1924
|
+
disabled: colors2.gray[100],
|
|
1925
|
+
disabledSubtle: colors2.gray[50],
|
|
1926
|
+
overlay: colors2.gray[950],
|
|
1927
|
+
brandPrimary: colors2.brand[100],
|
|
1928
|
+
brandPrimaryAlt: colors2.brand[100],
|
|
1929
|
+
brandSecondary: colors2.brand[200],
|
|
1930
|
+
brandSolid: colors2.brand[600],
|
|
1931
|
+
brandSolidHover: colors2.brand[700],
|
|
1932
|
+
brandSection: colors2.brand[800],
|
|
1933
|
+
brandSectionSubtle: colors2.brand[700],
|
|
1934
|
+
errorPrimary: colors2.error[50],
|
|
1935
|
+
errorSecondary: colors2.error[100],
|
|
1936
|
+
errorSolid: colors2.error[600],
|
|
1937
|
+
warningPrimary: colors2.warning[50],
|
|
1938
|
+
warningSecondary: colors2.warning[100],
|
|
1939
|
+
warningSolid: colors2.warning[600],
|
|
1940
|
+
successPrimary: colors2.success[50],
|
|
1941
|
+
successSecondary: colors2.success[100],
|
|
1942
|
+
successSolid: colors2.success[600]
|
|
1943
|
+
};
|
|
1944
|
+
var fg2 = {
|
|
1945
|
+
primary: colors2.gray[900],
|
|
1946
|
+
secondary: colors2.gray[700],
|
|
1947
|
+
secondaryHover: colors2.gray[800],
|
|
1948
|
+
tertiary: colors2.gray[600],
|
|
1949
|
+
tertiaryHover: colors2.gray[700],
|
|
1950
|
+
quaternary: colors2.gray[500],
|
|
1951
|
+
quaternaryHover: colors2.gray[600],
|
|
1952
|
+
quinary: colors2.gray[400],
|
|
1953
|
+
quinaryHover: colors2.gray[500],
|
|
1954
|
+
senary: colors2.gray[300],
|
|
1955
|
+
white: colors2.base.white,
|
|
1956
|
+
disabled: colors2.gray[400],
|
|
1957
|
+
disabledSubtle: colors2.gray[300],
|
|
1958
|
+
brandPrimary: colors2.brand[600],
|
|
1959
|
+
brandPrimaryAlt: colors2.brand[600],
|
|
1960
|
+
brandSecondary: colors2.brand[500],
|
|
1961
|
+
errorPrimary: colors2.error[600],
|
|
1962
|
+
errorSecondary: colors2.error[500],
|
|
1963
|
+
warningPrimary: colors2.warning[600],
|
|
1964
|
+
warningSecondary: colors2.warning[500],
|
|
1965
|
+
successPrimary: colors2.success[600],
|
|
1966
|
+
successSecondary: colors2.success[500]
|
|
1967
|
+
};
|
|
1968
|
+
var border2 = {
|
|
1969
|
+
primary: colors2.gray[300],
|
|
1970
|
+
secondary: colors2.gray[200],
|
|
1971
|
+
tertiary: colors2.gray[100],
|
|
1972
|
+
disabled: colors2.gray[300],
|
|
1973
|
+
disabledSubtle: colors2.gray[200],
|
|
1974
|
+
brand: colors2.brand[300],
|
|
1975
|
+
brandSolid: colors2.brand[600],
|
|
1976
|
+
brandSolidAlt: colors2.brand[600],
|
|
1977
|
+
error: colors2.error[300],
|
|
1978
|
+
errorSolid: colors2.error[600]
|
|
1979
|
+
};
|
|
1980
|
+
var buttonColors2 = {
|
|
1981
|
+
/** Primary buttons — black */
|
|
1982
|
+
primary: {
|
|
1983
|
+
bg: colors2.brand[600],
|
|
1984
|
+
bgHover: colors2.brand[700],
|
|
1985
|
+
fg: colors2.base.white,
|
|
1986
|
+
fgHover: colors2.base.white,
|
|
1987
|
+
border: colors2.brand[600],
|
|
1988
|
+
borderHover: colors2.brand[700]
|
|
1989
|
+
},
|
|
1990
|
+
secondary: {
|
|
1991
|
+
bg: colors2.base.white,
|
|
1992
|
+
bgHover: colors2.gray[50],
|
|
1993
|
+
fg: colors2.gray[700],
|
|
1994
|
+
fgHover: colors2.gray[800],
|
|
1995
|
+
border: colors2.gray[300],
|
|
1996
|
+
borderHover: colors2.gray[300]
|
|
1997
|
+
},
|
|
1998
|
+
/** Outlined accent buttons — dark */
|
|
1999
|
+
secondaryColor: {
|
|
2000
|
+
bg: colors2.base.white,
|
|
2001
|
+
bgHover: colors2.brand[50],
|
|
2002
|
+
fg: colors2.brand[700],
|
|
2003
|
+
fgHover: colors2.brand[800],
|
|
2004
|
+
border: colors2.brand[300],
|
|
2005
|
+
borderHover: colors2.brand[300]
|
|
2006
|
+
},
|
|
2007
|
+
tertiary: {
|
|
2008
|
+
fg: colors2.gray[600],
|
|
2009
|
+
fgHover: colors2.gray[700],
|
|
2010
|
+
bgHover: colors2.gray[50]
|
|
2011
|
+
},
|
|
2012
|
+
/** Text accent buttons — red */
|
|
2013
|
+
tertiaryColor: {
|
|
2014
|
+
fg: red[700],
|
|
2015
|
+
fgHover: red[800],
|
|
2016
|
+
bgHover: red[50]
|
|
2017
|
+
},
|
|
2018
|
+
primaryError: {
|
|
2019
|
+
bg: colors2.error[600],
|
|
2020
|
+
bgHover: colors2.error[700],
|
|
2021
|
+
fg: colors2.base.white,
|
|
2022
|
+
fgHover: colors2.base.white,
|
|
2023
|
+
border: colors2.error[600],
|
|
2024
|
+
borderHover: colors2.error[700]
|
|
2025
|
+
},
|
|
2026
|
+
secondaryError: {
|
|
2027
|
+
bg: colors2.base.white,
|
|
2028
|
+
bgHover: colors2.error[50],
|
|
2029
|
+
fg: colors2.error[700],
|
|
2030
|
+
fgHover: colors2.error[800],
|
|
2031
|
+
border: colors2.error[300],
|
|
2032
|
+
borderHover: colors2.error[300]
|
|
2033
|
+
},
|
|
2034
|
+
tertiaryError: {
|
|
2035
|
+
fg: colors2.error[700],
|
|
2036
|
+
fgHover: colors2.error[800],
|
|
2037
|
+
bgHover: colors2.error[50]
|
|
2038
|
+
}
|
|
2039
|
+
};
|
|
2040
|
+
var avatarColors2 = {
|
|
2041
|
+
bg: colors2.gray[100],
|
|
2042
|
+
contrastBorder: "#00000014",
|
|
2043
|
+
profilePhotoBorder: colors2.base.white,
|
|
2044
|
+
focusBorder: "#a0a0a624"
|
|
2045
|
+
};
|
|
2046
|
+
var breadcrumbColors2 = {
|
|
2047
|
+
fg: colors2.gray[600],
|
|
2048
|
+
fgHover: colors2.gray[700],
|
|
2049
|
+
bgHover: colors2.gray[50],
|
|
2050
|
+
brandBgHover: red[50],
|
|
2051
|
+
brandFgHover: red[700],
|
|
2052
|
+
iconFg: colors2.gray[500],
|
|
2053
|
+
iconFgHover: colors2.gray[700],
|
|
2054
|
+
brandIconFgHover: red[700]
|
|
2055
|
+
};
|
|
2056
|
+
var iconColors2 = {
|
|
2057
|
+
fgBrand: red[600],
|
|
2058
|
+
fgBrandOnBrand: red[200],
|
|
2059
|
+
featuredModernBorder: colors2.gray[200],
|
|
2060
|
+
featuredLightFgBrand: red[600],
|
|
2061
|
+
featuredLightFgGray: colors2.gray[500],
|
|
2062
|
+
featuredLightFgError: colors2.error[600],
|
|
2063
|
+
featuredLightFgWarning: colors2.warning[600],
|
|
2064
|
+
featuredLightFgSuccess: colors2.success[600],
|
|
2065
|
+
featuredDarkFgBrand: colors2.base.white,
|
|
2066
|
+
featuredDarkFgGray: colors2.base.white,
|
|
2067
|
+
featuredDarkFgError: colors2.base.white,
|
|
2068
|
+
featuredDarkFgWarning: colors2.base.white,
|
|
2069
|
+
featuredDarkFgSuccess: colors2.base.white
|
|
2070
|
+
};
|
|
2071
|
+
var navColors2 = {
|
|
2072
|
+
itemIconFg: colors2.gray[500],
|
|
2073
|
+
itemIconFgActive: colors2.gray[500],
|
|
2074
|
+
itemButtonIconFg: colors2.gray[500],
|
|
2075
|
+
itemButtonIconFgActive: colors2.gray[700]
|
|
2076
|
+
};
|
|
2077
|
+
var sliderColors2 = {
|
|
2078
|
+
handleBorder: red[600],
|
|
2079
|
+
handleBg: colors2.base.white
|
|
2080
|
+
};
|
|
2081
|
+
var toggleColors2 = {
|
|
2082
|
+
buttonFgDisabled: colors2.gray[50]
|
|
2083
|
+
};
|
|
2084
|
+
var chartColors2 = {
|
|
2085
|
+
axisFg: colors2.gray[200],
|
|
2086
|
+
gridlineFg: colors2.gray[100],
|
|
2087
|
+
labelFg: colors2.gray[600],
|
|
2088
|
+
labelFgEmphasis: colors2.gray[700],
|
|
2089
|
+
bg: colors2.base.white,
|
|
2090
|
+
bgAlt: colors2.gray[50],
|
|
2091
|
+
tooltipBg: colors2.gray[950],
|
|
2092
|
+
tooltipFg: colors2.base.white,
|
|
2093
|
+
crosshairFg: colors2.gray[500],
|
|
2094
|
+
legendFg: colors2.gray[700],
|
|
2095
|
+
series1Fg: colors2.brand[600],
|
|
2096
|
+
series1FgHover: colors2.brand[700],
|
|
2097
|
+
series1Bg: colors2.brand[100],
|
|
2098
|
+
series1BgHover: colors2.brand[200],
|
|
2099
|
+
series2Fg: red[600],
|
|
2100
|
+
series2FgHover: red[700],
|
|
2101
|
+
series2Bg: red[100],
|
|
2102
|
+
series2BgHover: red[200]
|
|
2103
|
+
};
|
|
2104
|
+
var focusRings2 = {
|
|
2105
|
+
brand: "0px 0px 0px 4px #f040403d",
|
|
2106
|
+
brandShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #f040403d",
|
|
2107
|
+
brandShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #f040403d",
|
|
2108
|
+
gray: "0px 0px 0px 4px #a0a0a624",
|
|
2109
|
+
grayShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #a0a0a624",
|
|
2110
|
+
grayShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #a0a0a624",
|
|
2111
|
+
error: "0px 0px 0px 4px #f044383d",
|
|
2112
|
+
errorShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #f044383d"
|
|
2113
|
+
};
|
|
2114
|
+
var alkemyPlusPreset = {
|
|
2115
|
+
name: "alkemy-plus",
|
|
2116
|
+
defaultVariant: "light",
|
|
2117
|
+
variants: {
|
|
2118
|
+
light: {
|
|
2119
|
+
tokens: {
|
|
2120
|
+
colors: colors2,
|
|
2121
|
+
spacing,
|
|
2122
|
+
radius: radius2,
|
|
2123
|
+
shadows,
|
|
2124
|
+
focusRings: focusRings2,
|
|
2125
|
+
fontFamily: '"Aeonik", sans-serif',
|
|
2126
|
+
fontSize,
|
|
2127
|
+
lineHeight,
|
|
2128
|
+
fontWeight,
|
|
2129
|
+
display,
|
|
2130
|
+
container,
|
|
2131
|
+
widths,
|
|
2132
|
+
text: text2,
|
|
2133
|
+
bg: bg2,
|
|
2134
|
+
fg: fg2,
|
|
2135
|
+
border: border2,
|
|
2136
|
+
buttonColors: buttonColors2,
|
|
2137
|
+
avatarColors: avatarColors2,
|
|
2138
|
+
breadcrumbColors: breadcrumbColors2,
|
|
2139
|
+
iconColors: iconColors2,
|
|
2140
|
+
navColors: navColors2,
|
|
2141
|
+
sliderColors: sliderColors2,
|
|
2142
|
+
toggleColors: toggleColors2,
|
|
2143
|
+
chartColors: chartColors2,
|
|
2144
|
+
alpha
|
|
2145
|
+
}
|
|
2146
|
+
}
|
|
2147
|
+
}
|
|
2148
|
+
};
|
|
2149
|
+
|
|
1780
2150
|
// src/theme/presets/index.ts
|
|
1781
2151
|
var presetRegistry = /* @__PURE__ */ new Map();
|
|
1782
2152
|
presetRegistry.set(forestPreset.name, forestPreset);
|
|
2153
|
+
presetRegistry.set(alkemyPlusPreset.name, alkemyPlusPreset);
|
|
1783
2154
|
function getPreset(name) {
|
|
1784
2155
|
return presetRegistry.get(name);
|
|
1785
2156
|
}
|
|
@@ -1802,6 +2173,6 @@ var forestThemeOptions = {
|
|
|
1802
2173
|
};
|
|
1803
2174
|
var forestTheme = createTheme(forestThemeOptions);
|
|
1804
2175
|
|
|
1805
|
-
export { alpha, avatarColors, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, colors, components, container, display, fg, focusRings, fontFamily, fontSize, fontWeight, forestPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, iconColors, lineHeight, navColors, palette, radius, registerPreset, shadows, shadows2, sliderColors, spacing, text, toggleColors, typography, widths };
|
|
1806
|
-
//# sourceMappingURL=chunk-
|
|
1807
|
-
//# sourceMappingURL=chunk-
|
|
2176
|
+
export { alkemyPlusPreset, alpha, avatarColors, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, colors, components, container, display, fg, focusRings, fontFamily, fontSize, fontWeight, forestPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, iconColors, lineHeight, navColors, palette, radius, registerPreset, shadows, shadows2, sliderColors, spacing, text, toggleColors, typography, widths };
|
|
2177
|
+
//# sourceMappingURL=chunk-3FZJFTY7.mjs.map
|
|
2178
|
+
//# sourceMappingURL=chunk-3FZJFTY7.mjs.map
|