@mekari/pixel3-theme 0.5.0-dev.0 → 0.5.0-dev.2
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/conditions.d.mts +1 -0
- package/dist/conditions.d.ts +1 -0
- package/dist/index.js +160 -72
- package/dist/index.mjs +160 -72
- package/dist/semanticTokens/colors.d.mts +59 -24
- package/dist/semanticTokens/colors.d.ts +59 -24
- package/dist/semanticTokens/index.d.mts +59 -24
- package/dist/semanticTokens/index.d.ts +59 -24
- package/dist/tokens/index.d.mts +4 -0
- package/dist/tokens/index.d.ts +4 -0
- package/dist/tokens/spacing.d.mts +4 -0
- package/dist/tokens/spacing.d.ts +4 -0
- package/package.json +1 -1
- package/src/conditions.ts +1 -0
- package/src/recipes/avatar.ts +6 -2
- package/src/recipes/button.ts +29 -12
- package/src/recipes/modal.ts +16 -1
- package/src/recipes/progress.ts +1 -1
- package/src/semanticTokens/colors.ts +97 -56
- package/src/tokens/spacing.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -28,6 +28,7 @@ var conditions = {
|
|
|
28
28
|
hasBorder: "&[data-has-border=true]",
|
|
29
29
|
hasBackground: "&[data-has-background=true]",
|
|
30
30
|
isFullWidth: "&[data-is-full-width=true]",
|
|
31
|
+
isRounded: "&[data-is-rounded=true]",
|
|
31
32
|
placementLeft: "&[data-placement=left]",
|
|
32
33
|
placementRight: "&[data-placement=right]",
|
|
33
34
|
nextTheme: "[data-panda-theme=next] &",
|
|
@@ -409,7 +410,9 @@ var avatarSlotRecipe = defineSlotRecipe2({
|
|
|
409
410
|
defaultVariants: {
|
|
410
411
|
size: "md",
|
|
411
412
|
variant: "circle"
|
|
412
|
-
}
|
|
413
|
+
},
|
|
414
|
+
// TODO: Check why this recipe need to generate statically
|
|
415
|
+
staticCss: ["*"]
|
|
413
416
|
});
|
|
414
417
|
var avatarGroupSlotRecipe = defineSlotRecipe2({
|
|
415
418
|
className: "avatar-group",
|
|
@@ -483,7 +486,9 @@ var avatarGroupSlotRecipe = defineSlotRecipe2({
|
|
|
483
486
|
}
|
|
484
487
|
},
|
|
485
488
|
compoundVariants: [],
|
|
486
|
-
defaultVariants: {}
|
|
489
|
+
defaultVariants: {},
|
|
490
|
+
// TODO: Check why this recipe need to generate statically
|
|
491
|
+
staticCss: ["*"]
|
|
487
492
|
});
|
|
488
493
|
|
|
489
494
|
// src/recipes/airene-button.ts
|
|
@@ -630,6 +635,9 @@ var buttonRecipe = defineRecipe({
|
|
|
630
635
|
_isFullWidth: {
|
|
631
636
|
width: "full"
|
|
632
637
|
},
|
|
638
|
+
_isRounded: {
|
|
639
|
+
borderRadius: "full"
|
|
640
|
+
},
|
|
633
641
|
_loading: {
|
|
634
642
|
cursor: "wait",
|
|
635
643
|
position: "absolute",
|
|
@@ -877,8 +885,14 @@ var buttonRecipe = defineRecipe({
|
|
|
877
885
|
borderRadius: "sm",
|
|
878
886
|
textStyle: "label.md",
|
|
879
887
|
fontWeight: "regular",
|
|
888
|
+
_isRounded: {
|
|
889
|
+
borderRadius: "full"
|
|
890
|
+
},
|
|
880
891
|
_loading: {
|
|
881
|
-
borderRadius: "sm"
|
|
892
|
+
borderRadius: "sm",
|
|
893
|
+
_isRounded: {
|
|
894
|
+
borderRadius: "full"
|
|
895
|
+
}
|
|
882
896
|
},
|
|
883
897
|
_hasIcon: {
|
|
884
898
|
paddingX: "1",
|
|
@@ -921,8 +935,14 @@ var buttonRecipe = defineRecipe({
|
|
|
921
935
|
borderRadius: "md",
|
|
922
936
|
textStyle: "label.md",
|
|
923
937
|
fontWeight: "semiBold",
|
|
938
|
+
_isRounded: {
|
|
939
|
+
borderRadius: "full"
|
|
940
|
+
},
|
|
924
941
|
_loading: {
|
|
925
|
-
borderRadius: "md"
|
|
942
|
+
borderRadius: "md",
|
|
943
|
+
_isRounded: {
|
|
944
|
+
borderRadius: "full"
|
|
945
|
+
}
|
|
926
946
|
},
|
|
927
947
|
_hasIcon: {
|
|
928
948
|
paddingX: "2",
|
|
@@ -1062,16 +1082,18 @@ var buttonGroupRecipe = defineRecipe({
|
|
|
1062
1082
|
gap: "var(--mp-button-group-spacing)",
|
|
1063
1083
|
"&[data-split-button=true]": {
|
|
1064
1084
|
gap: "0",
|
|
1065
|
-
"& >
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1085
|
+
"& > button:first-of-type": {
|
|
1086
|
+
borderTopRightRadius: "none !important",
|
|
1087
|
+
borderBottomRightRadius: "none !important",
|
|
1088
|
+
borderRight: "0 !important"
|
|
1089
|
+
},
|
|
1090
|
+
"& > button:not(:first-of-type):not(:last-of-type)": {
|
|
1091
|
+
borderRadius: "none !important",
|
|
1092
|
+
borderRight: "0 !important"
|
|
1093
|
+
},
|
|
1094
|
+
"& > button:last-of-type": {
|
|
1095
|
+
borderTopLeftRadius: "none !important",
|
|
1096
|
+
borderBottomLeftRadius: "none !important"
|
|
1075
1097
|
}
|
|
1076
1098
|
}
|
|
1077
1099
|
}
|
|
@@ -3081,7 +3103,7 @@ var progressSlotRecipe = defineSlotRecipe12({
|
|
|
3081
3103
|
background: "gray.100",
|
|
3082
3104
|
transition: "all 250ms linear",
|
|
3083
3105
|
_nextTheme: {
|
|
3084
|
-
background: "background.subtle"
|
|
3106
|
+
background: "background.neutral.subtle"
|
|
3085
3107
|
}
|
|
3086
3108
|
},
|
|
3087
3109
|
linear: {
|
|
@@ -3446,7 +3468,17 @@ var modalSlotRecipe = defineSlotRecipe16({
|
|
|
3446
3468
|
},
|
|
3447
3469
|
body: {
|
|
3448
3470
|
p: 4,
|
|
3449
|
-
flex: 1
|
|
3471
|
+
flex: 1,
|
|
3472
|
+
'&[data-drawer-variant="floating"]': {
|
|
3473
|
+
rounded: "lg",
|
|
3474
|
+
background: "background.stage",
|
|
3475
|
+
px: "0",
|
|
3476
|
+
pt: "0",
|
|
3477
|
+
pb: "4",
|
|
3478
|
+
_focus: {
|
|
3479
|
+
outline: "none"
|
|
3480
|
+
}
|
|
3481
|
+
}
|
|
3450
3482
|
},
|
|
3451
3483
|
contentRoot: {
|
|
3452
3484
|
pos: "fixed",
|
|
@@ -3474,6 +3506,11 @@ var modalSlotRecipe = defineSlotRecipe16({
|
|
|
3474
3506
|
'&[data-modal-type="drawer"]': {
|
|
3475
3507
|
borderColor: "border.default"
|
|
3476
3508
|
}
|
|
3509
|
+
},
|
|
3510
|
+
'&[data-modal-type="drawer"][data-drawer-variant="floating"]': {
|
|
3511
|
+
background: "transparent",
|
|
3512
|
+
borderWidth: "0px !important",
|
|
3513
|
+
p: "3"
|
|
3477
3514
|
}
|
|
3478
3515
|
},
|
|
3479
3516
|
header: {
|
|
@@ -6798,6 +6835,7 @@ var spacing = defineTokens8.spacing({
|
|
|
6798
6835
|
1: { value: "0.25rem", description: "4px" },
|
|
6799
6836
|
1.5: { value: "0.375rem", description: "6px" },
|
|
6800
6837
|
2: { value: "0.5rem", description: "8px" },
|
|
6838
|
+
2.5: { value: "0.625rem", description: "10px" },
|
|
6801
6839
|
3: { value: "0.75rem", description: "12px" },
|
|
6802
6840
|
4: { value: "1rem", description: "16px" },
|
|
6803
6841
|
5: { value: "1.3rem", description: "20px" },
|
|
@@ -7209,6 +7247,7 @@ import { defineSemanticTokens as defineSemanticTokens3 } from "@pandacss/dev";
|
|
|
7209
7247
|
// src/semanticTokens/colors.ts
|
|
7210
7248
|
import { defineSemanticTokens } from "@pandacss/dev";
|
|
7211
7249
|
var colors3 = defineSemanticTokens.colors({
|
|
7250
|
+
// BACKGROUND SEMANTIC TOKENS
|
|
7212
7251
|
background: {
|
|
7213
7252
|
surface: {
|
|
7214
7253
|
DEFAULT: {
|
|
@@ -7325,7 +7364,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7325
7364
|
base: "{colors.neutral.100}",
|
|
7326
7365
|
_light: "{colors.neutral.100}",
|
|
7327
7366
|
_dark: "{colors.dark.250}",
|
|
7328
|
-
_enterprise: "{colors.
|
|
7367
|
+
_enterprise: "{colors.slate.100}"
|
|
7329
7368
|
}
|
|
7330
7369
|
},
|
|
7331
7370
|
subtle: {
|
|
@@ -7334,7 +7373,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7334
7373
|
base: "{colors.neutral.200}",
|
|
7335
7374
|
_light: "{colors.neutral.200}",
|
|
7336
7375
|
_dark: "{colors.dark.300}",
|
|
7337
|
-
_enterprise: "{colors.slate.
|
|
7376
|
+
_enterprise: "{colors.slate.100}"
|
|
7338
7377
|
}
|
|
7339
7378
|
},
|
|
7340
7379
|
hovered: {
|
|
@@ -7342,7 +7381,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7342
7381
|
base: "{colors.neutral.300}",
|
|
7343
7382
|
_light: "{colors.neutral.300}",
|
|
7344
7383
|
_dark: "{colors.dark.350}",
|
|
7345
|
-
_enterprise: "{colors.slate.
|
|
7384
|
+
_enterprise: "{colors.slate.200}"
|
|
7346
7385
|
}
|
|
7347
7386
|
},
|
|
7348
7387
|
pressed: {
|
|
@@ -7350,7 +7389,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7350
7389
|
base: "{colors.neutral.400}",
|
|
7351
7390
|
_light: "{colors.neutral.400}",
|
|
7352
7391
|
_dark: "{colors.dark.400}",
|
|
7353
|
-
_enterprise: "{colors.slate.
|
|
7392
|
+
_enterprise: "{colors.slate.300}"
|
|
7354
7393
|
}
|
|
7355
7394
|
},
|
|
7356
7395
|
selected: {
|
|
@@ -7358,7 +7397,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7358
7397
|
base: "{colors.neutral.300}",
|
|
7359
7398
|
_light: "{colors.neutral.300}",
|
|
7360
7399
|
_dark: "{colors.dark.350}",
|
|
7361
|
-
_enterprise: "{colors.slate.
|
|
7400
|
+
_enterprise: "{colors.slate.200}"
|
|
7362
7401
|
}
|
|
7363
7402
|
}
|
|
7364
7403
|
},
|
|
@@ -7392,7 +7431,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7392
7431
|
base: "{colors.neutral.900}",
|
|
7393
7432
|
_light: "{colors.neutral.900}",
|
|
7394
7433
|
_dark: "{colors.dark.900}",
|
|
7395
|
-
_enterprise: "{colors.
|
|
7434
|
+
_enterprise: "{colors.slate.900}"
|
|
7396
7435
|
}
|
|
7397
7436
|
}
|
|
7398
7437
|
}
|
|
@@ -7456,19 +7495,21 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7456
7495
|
}
|
|
7457
7496
|
},
|
|
7458
7497
|
selected: {
|
|
7459
|
-
|
|
7460
|
-
|
|
7461
|
-
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7468
|
-
|
|
7469
|
-
|
|
7470
|
-
|
|
7471
|
-
|
|
7498
|
+
DEFAULT: {
|
|
7499
|
+
value: {
|
|
7500
|
+
base: "{colors.indigo.800}",
|
|
7501
|
+
_light: "{colors.indigo.800}",
|
|
7502
|
+
_dark: "{colors.indigo.300}",
|
|
7503
|
+
_enterprise: "{colors.emerald.800}"
|
|
7504
|
+
}
|
|
7505
|
+
},
|
|
7506
|
+
disabled: {
|
|
7507
|
+
value: {
|
|
7508
|
+
base: "{colors.indigo.200}",
|
|
7509
|
+
_light: "{colors.indigo.200}",
|
|
7510
|
+
_dark: "{colors.indigo.900}",
|
|
7511
|
+
_enterprise: "{colors.emerald.200}"
|
|
7512
|
+
}
|
|
7472
7513
|
}
|
|
7473
7514
|
}
|
|
7474
7515
|
}
|
|
@@ -7479,7 +7520,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7479
7520
|
base: "{colors.dark.200}",
|
|
7480
7521
|
_light: "{colors.dark.200}",
|
|
7481
7522
|
_dark: "{colors.dark.200}",
|
|
7482
|
-
_enterprise: "{colors.dark.
|
|
7523
|
+
_enterprise: "{colors.dark.250}"
|
|
7483
7524
|
}
|
|
7484
7525
|
},
|
|
7485
7526
|
hovered: {
|
|
@@ -7771,13 +7812,45 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7771
7812
|
}
|
|
7772
7813
|
}
|
|
7773
7814
|
},
|
|
7815
|
+
nav: {
|
|
7816
|
+
parent: {
|
|
7817
|
+
value: {
|
|
7818
|
+
base: "#E7EDF5",
|
|
7819
|
+
// Doesn't have raw token
|
|
7820
|
+
_light: "#E7EDF5",
|
|
7821
|
+
// Doesn't have raw token
|
|
7822
|
+
_dark: "{colors.dark.100}",
|
|
7823
|
+
_enterprise: "{colors.emerald.1000}"
|
|
7824
|
+
}
|
|
7825
|
+
},
|
|
7826
|
+
stack: {
|
|
7827
|
+
DEFAULT: {
|
|
7828
|
+
value: {
|
|
7829
|
+
base: "{colors.neutral.100}",
|
|
7830
|
+
_light: "{colors.neutral.100}",
|
|
7831
|
+
_dark: "{colors.dark}",
|
|
7832
|
+
_enterprise: "{colors.neutral.100}"
|
|
7833
|
+
}
|
|
7834
|
+
},
|
|
7835
|
+
hovered: {
|
|
7836
|
+
value: {
|
|
7837
|
+
base: "#E7EDF5",
|
|
7838
|
+
// Doesn't have raw token
|
|
7839
|
+
_light: "#E7EDF5",
|
|
7840
|
+
// Doesn't have raw token
|
|
7841
|
+
_dark: "{colors.dark.100}",
|
|
7842
|
+
_enterprise: "{colors.emerald.200}"
|
|
7843
|
+
}
|
|
7844
|
+
}
|
|
7845
|
+
}
|
|
7846
|
+
},
|
|
7774
7847
|
header: {
|
|
7775
7848
|
DEFAULT: {
|
|
7776
7849
|
value: {
|
|
7777
7850
|
base: "{colors.white}",
|
|
7778
7851
|
_light: "{colors.white}",
|
|
7779
7852
|
_dark: "{colors.dark.100}",
|
|
7780
|
-
_enterprise: "{colors.
|
|
7853
|
+
_enterprise: "{colors.emerald.1000}"
|
|
7781
7854
|
}
|
|
7782
7855
|
},
|
|
7783
7856
|
menu: {
|
|
@@ -7813,8 +7886,10 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7813
7886
|
}
|
|
7814
7887
|
}
|
|
7815
7888
|
},
|
|
7889
|
+
// NAVIGATION SEMANTIC TOKENS (REMOVE AFTER NAV IN BACKGROUND IS UPDATED)
|
|
7816
7890
|
nav: {
|
|
7817
7891
|
parent: {
|
|
7892
|
+
deprecated: "use `background.nav.parent` instead",
|
|
7818
7893
|
value: {
|
|
7819
7894
|
base: "#E7EDF5",
|
|
7820
7895
|
// Doesn't have raw token
|
|
@@ -7826,6 +7901,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7826
7901
|
},
|
|
7827
7902
|
stack: {
|
|
7828
7903
|
DEFAULT: {
|
|
7904
|
+
deprecated: "use `background.nav.stack` instead",
|
|
7829
7905
|
value: {
|
|
7830
7906
|
base: "{colors.neutral.100}",
|
|
7831
7907
|
_light: "{colors.neutral.100}",
|
|
@@ -7834,6 +7910,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7834
7910
|
}
|
|
7835
7911
|
},
|
|
7836
7912
|
hovered: {
|
|
7913
|
+
deprecated: "use `background.nav.stack.hovered` instead",
|
|
7837
7914
|
value: {
|
|
7838
7915
|
base: "#E7EDF5",
|
|
7839
7916
|
// Doesn't have raw token
|
|
@@ -7845,6 +7922,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7845
7922
|
}
|
|
7846
7923
|
}
|
|
7847
7924
|
},
|
|
7925
|
+
// TEXT SEMANTIC TOKENS
|
|
7848
7926
|
text: {
|
|
7849
7927
|
default: {
|
|
7850
7928
|
DEFAULT: {
|
|
@@ -7860,7 +7938,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7860
7938
|
base: "{colors.neutral.1000}",
|
|
7861
7939
|
_light: "{colors.neutral.1000}",
|
|
7862
7940
|
_dark: "{colors.neutral.1000}",
|
|
7863
|
-
_enterprise: "{colors.
|
|
7941
|
+
_enterprise: "{colors.dark.100}"
|
|
7864
7942
|
}
|
|
7865
7943
|
}
|
|
7866
7944
|
},
|
|
@@ -7878,7 +7956,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7878
7956
|
base: "{colors.neutral.800}",
|
|
7879
7957
|
_light: "{colors.neutral.800}",
|
|
7880
7958
|
_dark: "{colors.dark.800}",
|
|
7881
|
-
_enterprise: "{colors.
|
|
7959
|
+
_enterprise: "{colors.slate.800}"
|
|
7882
7960
|
}
|
|
7883
7961
|
}
|
|
7884
7962
|
},
|
|
@@ -7887,7 +7965,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7887
7965
|
base: "{colors.neutral.600}",
|
|
7888
7966
|
_light: "{colors.neutral.600}",
|
|
7889
7967
|
_dark: "{colors.dark.600}",
|
|
7890
|
-
_enterprise: "{colors.slate.
|
|
7968
|
+
_enterprise: "{colors.slate.500}"
|
|
7891
7969
|
}
|
|
7892
7970
|
},
|
|
7893
7971
|
disabled: {
|
|
@@ -7921,7 +7999,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7921
7999
|
base: "{colors.indigo.700}",
|
|
7922
8000
|
_light: "{colors.indigo.700}",
|
|
7923
8001
|
_dark: "{colors.indigo.400}",
|
|
7924
|
-
_enterprise: "{colors.emerald.
|
|
8002
|
+
_enterprise: "{colors.emerald.800}"
|
|
7925
8003
|
}
|
|
7926
8004
|
},
|
|
7927
8005
|
danger: {
|
|
@@ -7965,7 +8043,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7965
8043
|
base: "{colors.green.800}",
|
|
7966
8044
|
_light: "{colors.green.800}",
|
|
7967
8045
|
_dark: "{colors.green.300}",
|
|
7968
|
-
_enterprise: "{colors.
|
|
8046
|
+
_enterprise: "{colors.emerald.800}"
|
|
7969
8047
|
}
|
|
7970
8048
|
},
|
|
7971
8049
|
highlight: {
|
|
@@ -7981,7 +8059,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7981
8059
|
base: "{colors.indigo.800}",
|
|
7982
8060
|
_light: "{colors.indigo.800}",
|
|
7983
8061
|
_dark: "{colors.indigo.300}",
|
|
7984
|
-
_enterprise: "{colors.
|
|
8062
|
+
_enterprise: "{colors.indigo.700}"
|
|
7985
8063
|
}
|
|
7986
8064
|
},
|
|
7987
8065
|
link: {
|
|
@@ -7990,7 +8068,8 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7990
8068
|
base: "{colors.indigo.700}",
|
|
7991
8069
|
_light: "{colors.indigo.700}",
|
|
7992
8070
|
_dark: "{colors.indigo.400}",
|
|
7993
|
-
_enterprise: "
|
|
8071
|
+
_enterprise: "#165082"
|
|
8072
|
+
// Doesn't have raw token
|
|
7994
8073
|
}
|
|
7995
8074
|
},
|
|
7996
8075
|
pressed: {
|
|
@@ -7998,11 +8077,13 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7998
8077
|
base: "{colors.indigo.800}",
|
|
7999
8078
|
_light: "{colors.indigo.800}",
|
|
8000
8079
|
_dark: "{colors.indigo.300}",
|
|
8001
|
-
_enterprise: "
|
|
8080
|
+
_enterprise: "#0D4372"
|
|
8081
|
+
// Doesn't have raw token
|
|
8002
8082
|
}
|
|
8003
8083
|
}
|
|
8004
8084
|
}
|
|
8005
8085
|
},
|
|
8086
|
+
// ICON SEMANTIC TOKENS
|
|
8006
8087
|
icon: {
|
|
8007
8088
|
default: {
|
|
8008
8089
|
value: {
|
|
@@ -8026,7 +8107,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8026
8107
|
base: "{colors.white}",
|
|
8027
8108
|
_light: "{colors.white}",
|
|
8028
8109
|
_dark: "{colors.dark.100}",
|
|
8029
|
-
_enterprise: "{colors.
|
|
8110
|
+
_enterprise: "{colors.emerald.100}"
|
|
8030
8111
|
}
|
|
8031
8112
|
},
|
|
8032
8113
|
static: {
|
|
@@ -8085,7 +8166,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8085
8166
|
base: "{colors.green.700}",
|
|
8086
8167
|
_light: "{colors.green.700}",
|
|
8087
8168
|
_dark: "{colors.green.400}",
|
|
8088
|
-
_enterprise: "{colors.
|
|
8169
|
+
_enterprise: "{colors.emerald.600}"
|
|
8089
8170
|
}
|
|
8090
8171
|
},
|
|
8091
8172
|
highlight: {
|
|
@@ -8093,7 +8174,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8093
8174
|
base: "{colors.violet.700}",
|
|
8094
8175
|
_light: "{colors.violet.700}",
|
|
8095
8176
|
_dark: "{colors.violet.400}",
|
|
8096
|
-
_enterprise: "{colors.
|
|
8177
|
+
_enterprise: "{colors.orange.700}"
|
|
8097
8178
|
}
|
|
8098
8179
|
},
|
|
8099
8180
|
information: {
|
|
@@ -8101,7 +8182,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8101
8182
|
base: "{colors.indigo.700}",
|
|
8102
8183
|
_light: "{colors.indigo.700}",
|
|
8103
8184
|
_dark: "{colors.indigo.400}",
|
|
8104
|
-
_enterprise: "{colors.
|
|
8185
|
+
_enterprise: "{colors.indigo.600}"
|
|
8105
8186
|
}
|
|
8106
8187
|
},
|
|
8107
8188
|
subtle: {
|
|
@@ -8114,28 +8195,34 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8114
8195
|
},
|
|
8115
8196
|
logo: {
|
|
8116
8197
|
value: {
|
|
8117
|
-
base: "
|
|
8118
|
-
|
|
8119
|
-
|
|
8120
|
-
|
|
8198
|
+
base: "#000000",
|
|
8199
|
+
// Doesn't have raw token
|
|
8200
|
+
_light: "#000000",
|
|
8201
|
+
// Doesn't have raw token
|
|
8202
|
+
_dark: "{colors.white}",
|
|
8203
|
+
_enterprise: "#000000"
|
|
8204
|
+
// Doesn't have raw token
|
|
8121
8205
|
}
|
|
8122
8206
|
}
|
|
8123
8207
|
},
|
|
8208
|
+
// BORDER SEMANTIC TOKENS
|
|
8124
8209
|
border: {
|
|
8125
8210
|
default: {
|
|
8126
|
-
|
|
8127
|
-
|
|
8128
|
-
|
|
8129
|
-
|
|
8130
|
-
|
|
8131
|
-
|
|
8132
|
-
|
|
8133
|
-
|
|
8134
|
-
|
|
8135
|
-
|
|
8136
|
-
|
|
8137
|
-
|
|
8138
|
-
|
|
8211
|
+
DEFAULT: {
|
|
8212
|
+
value: {
|
|
8213
|
+
base: "{colors.neutral.300}",
|
|
8214
|
+
_light: "{colors.neutral.300}",
|
|
8215
|
+
_dark: "{colors.dark.300}",
|
|
8216
|
+
_enterprise: "{colors.slate.300}"
|
|
8217
|
+
}
|
|
8218
|
+
},
|
|
8219
|
+
subtle: {
|
|
8220
|
+
value: {
|
|
8221
|
+
base: "{colors.neutral.200}",
|
|
8222
|
+
_light: "{colors.neutral.200}",
|
|
8223
|
+
_dark: "{colors.dark.200}",
|
|
8224
|
+
_enterprise: "{colors.slate.200}"
|
|
8225
|
+
}
|
|
8139
8226
|
}
|
|
8140
8227
|
},
|
|
8141
8228
|
bold: {
|
|
@@ -8143,7 +8230,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8143
8230
|
base: "{colors.neutral.600}",
|
|
8144
8231
|
_light: "{colors.neutral.600}",
|
|
8145
8232
|
_dark: "{colors.dark.600}",
|
|
8146
|
-
_enterprise: "{colors.slate.
|
|
8233
|
+
_enterprise: "{colors.slate.400}"
|
|
8147
8234
|
}
|
|
8148
8235
|
},
|
|
8149
8236
|
disabled: {
|
|
@@ -8209,7 +8296,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8209
8296
|
base: "{colors.indigo.700}",
|
|
8210
8297
|
_light: "{colors.indigo.700}",
|
|
8211
8298
|
_dark: "{colors.indigo.400}",
|
|
8212
|
-
_enterprise: "{colors.emerald.
|
|
8299
|
+
_enterprise: "{colors.emerald.800}"
|
|
8213
8300
|
}
|
|
8214
8301
|
},
|
|
8215
8302
|
danger: {
|
|
@@ -8217,7 +8304,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8217
8304
|
base: "{colors.red.700}",
|
|
8218
8305
|
_light: "{colors.red.700}",
|
|
8219
8306
|
_dark: "{colors.red.400}",
|
|
8220
|
-
_enterprise: "{colors.red.
|
|
8307
|
+
_enterprise: "{colors.red.600}"
|
|
8221
8308
|
}
|
|
8222
8309
|
},
|
|
8223
8310
|
warning: {
|
|
@@ -8233,7 +8320,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8233
8320
|
base: "{colors.green.700}",
|
|
8234
8321
|
_light: "{colors.green.700}",
|
|
8235
8322
|
_dark: "{colors.green.400}",
|
|
8236
|
-
_enterprise: "{colors.
|
|
8323
|
+
_enterprise: "{colors.emerald.700}"
|
|
8237
8324
|
}
|
|
8238
8325
|
},
|
|
8239
8326
|
highlight: {
|
|
@@ -8241,7 +8328,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8241
8328
|
base: "{colors.violet.700}",
|
|
8242
8329
|
_light: "{colors.violet.700}",
|
|
8243
8330
|
_dark: "{colors.violet.400}",
|
|
8244
|
-
_enterprise: "{colors.
|
|
8331
|
+
_enterprise: "{colors.orange.700}"
|
|
8245
8332
|
}
|
|
8246
8333
|
},
|
|
8247
8334
|
information: {
|
|
@@ -8249,10 +8336,11 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8249
8336
|
base: "{colors.indigo.700}",
|
|
8250
8337
|
_light: "{colors.indigo.700}",
|
|
8251
8338
|
_dark: "{colors.indigo.400}",
|
|
8252
|
-
_enterprise: "{colors.
|
|
8339
|
+
_enterprise: "{colors.indigo.600}"
|
|
8253
8340
|
}
|
|
8254
8341
|
}
|
|
8255
8342
|
},
|
|
8343
|
+
// CHART SEMANTIC TOKENS
|
|
8256
8344
|
chart: {
|
|
8257
8345
|
cat01: {
|
|
8258
8346
|
DEFAULT: {
|
|
@@ -237,19 +237,21 @@ declare const colors: {
|
|
|
237
237
|
};
|
|
238
238
|
};
|
|
239
239
|
selected: {
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
240
|
+
DEFAULT: {
|
|
241
|
+
value: {
|
|
242
|
+
base: string;
|
|
243
|
+
_light: string;
|
|
244
|
+
_dark: string;
|
|
245
|
+
_enterprise: string;
|
|
246
|
+
};
|
|
245
247
|
};
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
248
|
+
disabled: {
|
|
249
|
+
value: {
|
|
250
|
+
base: string;
|
|
251
|
+
_light: string;
|
|
252
|
+
_dark: string;
|
|
253
|
+
_enterprise: string;
|
|
254
|
+
};
|
|
253
255
|
};
|
|
254
256
|
};
|
|
255
257
|
};
|
|
@@ -552,6 +554,34 @@ declare const colors: {
|
|
|
552
554
|
};
|
|
553
555
|
};
|
|
554
556
|
};
|
|
557
|
+
nav: {
|
|
558
|
+
parent: {
|
|
559
|
+
value: {
|
|
560
|
+
base: string;
|
|
561
|
+
_light: string;
|
|
562
|
+
_dark: string;
|
|
563
|
+
_enterprise: string;
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
stack: {
|
|
567
|
+
DEFAULT: {
|
|
568
|
+
value: {
|
|
569
|
+
base: string;
|
|
570
|
+
_light: string;
|
|
571
|
+
_dark: string;
|
|
572
|
+
_enterprise: string;
|
|
573
|
+
};
|
|
574
|
+
};
|
|
575
|
+
hovered: {
|
|
576
|
+
value: {
|
|
577
|
+
base: string;
|
|
578
|
+
_light: string;
|
|
579
|
+
_dark: string;
|
|
580
|
+
_enterprise: string;
|
|
581
|
+
};
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
};
|
|
555
585
|
header: {
|
|
556
586
|
DEFAULT: {
|
|
557
587
|
value: {
|
|
@@ -591,6 +621,7 @@ declare const colors: {
|
|
|
591
621
|
};
|
|
592
622
|
nav: {
|
|
593
623
|
parent: {
|
|
624
|
+
deprecated: string;
|
|
594
625
|
value: {
|
|
595
626
|
base: string;
|
|
596
627
|
_light: string;
|
|
@@ -600,6 +631,7 @@ declare const colors: {
|
|
|
600
631
|
};
|
|
601
632
|
stack: {
|
|
602
633
|
DEFAULT: {
|
|
634
|
+
deprecated: string;
|
|
603
635
|
value: {
|
|
604
636
|
base: string;
|
|
605
637
|
_light: string;
|
|
@@ -608,6 +640,7 @@ declare const colors: {
|
|
|
608
640
|
};
|
|
609
641
|
};
|
|
610
642
|
hovered: {
|
|
643
|
+
deprecated: string;
|
|
611
644
|
value: {
|
|
612
645
|
base: string;
|
|
613
646
|
_light: string;
|
|
@@ -895,19 +928,21 @@ declare const colors: {
|
|
|
895
928
|
};
|
|
896
929
|
border: {
|
|
897
930
|
default: {
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
931
|
+
DEFAULT: {
|
|
932
|
+
value: {
|
|
933
|
+
base: string;
|
|
934
|
+
_light: string;
|
|
935
|
+
_dark: string;
|
|
936
|
+
_enterprise: string;
|
|
937
|
+
};
|
|
903
938
|
};
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
939
|
+
subtle: {
|
|
940
|
+
value: {
|
|
941
|
+
base: string;
|
|
942
|
+
_light: string;
|
|
943
|
+
_dark: string;
|
|
944
|
+
_enterprise: string;
|
|
945
|
+
};
|
|
911
946
|
};
|
|
912
947
|
};
|
|
913
948
|
bold: {
|