@mekari/pixel3-theme 0.5.0-dev.0 → 0.5.0-dev.1
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 +156 -71
- package/dist/index.mjs +156 -71
- package/dist/semanticTokens/colors.d.mts +56 -24
- package/dist/semanticTokens/colors.d.ts +56 -24
- package/dist/semanticTokens/index.d.mts +56 -24
- package/dist/semanticTokens/index.d.ts +56 -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/semanticTokens/colors.ts +94 -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
|
}
|
|
@@ -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,6 +7886,7 @@ 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: {
|
|
7818
7892
|
value: {
|
|
@@ -7845,6 +7919,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7845
7919
|
}
|
|
7846
7920
|
}
|
|
7847
7921
|
},
|
|
7922
|
+
// TEXT SEMANTIC TOKENS
|
|
7848
7923
|
text: {
|
|
7849
7924
|
default: {
|
|
7850
7925
|
DEFAULT: {
|
|
@@ -7860,7 +7935,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7860
7935
|
base: "{colors.neutral.1000}",
|
|
7861
7936
|
_light: "{colors.neutral.1000}",
|
|
7862
7937
|
_dark: "{colors.neutral.1000}",
|
|
7863
|
-
_enterprise: "{colors.
|
|
7938
|
+
_enterprise: "{colors.dark.100}"
|
|
7864
7939
|
}
|
|
7865
7940
|
}
|
|
7866
7941
|
},
|
|
@@ -7878,7 +7953,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7878
7953
|
base: "{colors.neutral.800}",
|
|
7879
7954
|
_light: "{colors.neutral.800}",
|
|
7880
7955
|
_dark: "{colors.dark.800}",
|
|
7881
|
-
_enterprise: "{colors.
|
|
7956
|
+
_enterprise: "{colors.slate.800}"
|
|
7882
7957
|
}
|
|
7883
7958
|
}
|
|
7884
7959
|
},
|
|
@@ -7887,7 +7962,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7887
7962
|
base: "{colors.neutral.600}",
|
|
7888
7963
|
_light: "{colors.neutral.600}",
|
|
7889
7964
|
_dark: "{colors.dark.600}",
|
|
7890
|
-
_enterprise: "{colors.slate.
|
|
7965
|
+
_enterprise: "{colors.slate.500}"
|
|
7891
7966
|
}
|
|
7892
7967
|
},
|
|
7893
7968
|
disabled: {
|
|
@@ -7921,7 +7996,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7921
7996
|
base: "{colors.indigo.700}",
|
|
7922
7997
|
_light: "{colors.indigo.700}",
|
|
7923
7998
|
_dark: "{colors.indigo.400}",
|
|
7924
|
-
_enterprise: "{colors.emerald.
|
|
7999
|
+
_enterprise: "{colors.emerald.800}"
|
|
7925
8000
|
}
|
|
7926
8001
|
},
|
|
7927
8002
|
danger: {
|
|
@@ -7965,7 +8040,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7965
8040
|
base: "{colors.green.800}",
|
|
7966
8041
|
_light: "{colors.green.800}",
|
|
7967
8042
|
_dark: "{colors.green.300}",
|
|
7968
|
-
_enterprise: "{colors.
|
|
8043
|
+
_enterprise: "{colors.emerald.800}"
|
|
7969
8044
|
}
|
|
7970
8045
|
},
|
|
7971
8046
|
highlight: {
|
|
@@ -7981,7 +8056,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7981
8056
|
base: "{colors.indigo.800}",
|
|
7982
8057
|
_light: "{colors.indigo.800}",
|
|
7983
8058
|
_dark: "{colors.indigo.300}",
|
|
7984
|
-
_enterprise: "{colors.
|
|
8059
|
+
_enterprise: "{colors.indigo.700}"
|
|
7985
8060
|
}
|
|
7986
8061
|
},
|
|
7987
8062
|
link: {
|
|
@@ -7990,7 +8065,8 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7990
8065
|
base: "{colors.indigo.700}",
|
|
7991
8066
|
_light: "{colors.indigo.700}",
|
|
7992
8067
|
_dark: "{colors.indigo.400}",
|
|
7993
|
-
_enterprise: "
|
|
8068
|
+
_enterprise: "#165082"
|
|
8069
|
+
// Doesn't have raw token
|
|
7994
8070
|
}
|
|
7995
8071
|
},
|
|
7996
8072
|
pressed: {
|
|
@@ -7998,11 +8074,13 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
7998
8074
|
base: "{colors.indigo.800}",
|
|
7999
8075
|
_light: "{colors.indigo.800}",
|
|
8000
8076
|
_dark: "{colors.indigo.300}",
|
|
8001
|
-
_enterprise: "
|
|
8077
|
+
_enterprise: "#0D4372"
|
|
8078
|
+
// Doesn't have raw token
|
|
8002
8079
|
}
|
|
8003
8080
|
}
|
|
8004
8081
|
}
|
|
8005
8082
|
},
|
|
8083
|
+
// ICON SEMANTIC TOKENS
|
|
8006
8084
|
icon: {
|
|
8007
8085
|
default: {
|
|
8008
8086
|
value: {
|
|
@@ -8026,7 +8104,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8026
8104
|
base: "{colors.white}",
|
|
8027
8105
|
_light: "{colors.white}",
|
|
8028
8106
|
_dark: "{colors.dark.100}",
|
|
8029
|
-
_enterprise: "{colors.
|
|
8107
|
+
_enterprise: "{colors.emerald.100}"
|
|
8030
8108
|
}
|
|
8031
8109
|
},
|
|
8032
8110
|
static: {
|
|
@@ -8085,7 +8163,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8085
8163
|
base: "{colors.green.700}",
|
|
8086
8164
|
_light: "{colors.green.700}",
|
|
8087
8165
|
_dark: "{colors.green.400}",
|
|
8088
|
-
_enterprise: "{colors.
|
|
8166
|
+
_enterprise: "{colors.emerald.600}"
|
|
8089
8167
|
}
|
|
8090
8168
|
},
|
|
8091
8169
|
highlight: {
|
|
@@ -8093,7 +8171,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8093
8171
|
base: "{colors.violet.700}",
|
|
8094
8172
|
_light: "{colors.violet.700}",
|
|
8095
8173
|
_dark: "{colors.violet.400}",
|
|
8096
|
-
_enterprise: "{colors.
|
|
8174
|
+
_enterprise: "{colors.orange.700}"
|
|
8097
8175
|
}
|
|
8098
8176
|
},
|
|
8099
8177
|
information: {
|
|
@@ -8101,7 +8179,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8101
8179
|
base: "{colors.indigo.700}",
|
|
8102
8180
|
_light: "{colors.indigo.700}",
|
|
8103
8181
|
_dark: "{colors.indigo.400}",
|
|
8104
|
-
_enterprise: "{colors.
|
|
8182
|
+
_enterprise: "{colors.indigo.600}"
|
|
8105
8183
|
}
|
|
8106
8184
|
},
|
|
8107
8185
|
subtle: {
|
|
@@ -8114,28 +8192,34 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8114
8192
|
},
|
|
8115
8193
|
logo: {
|
|
8116
8194
|
value: {
|
|
8117
|
-
base: "
|
|
8118
|
-
|
|
8119
|
-
|
|
8120
|
-
|
|
8195
|
+
base: "#000000",
|
|
8196
|
+
// Doesn't have raw token
|
|
8197
|
+
_light: "#000000",
|
|
8198
|
+
// Doesn't have raw token
|
|
8199
|
+
_dark: "{colors.white}",
|
|
8200
|
+
_enterprise: "#000000"
|
|
8201
|
+
// Doesn't have raw token
|
|
8121
8202
|
}
|
|
8122
8203
|
}
|
|
8123
8204
|
},
|
|
8205
|
+
// BORDER SEMANTIC TOKENS
|
|
8124
8206
|
border: {
|
|
8125
8207
|
default: {
|
|
8126
|
-
|
|
8127
|
-
|
|
8128
|
-
|
|
8129
|
-
|
|
8130
|
-
|
|
8131
|
-
|
|
8132
|
-
|
|
8133
|
-
|
|
8134
|
-
|
|
8135
|
-
|
|
8136
|
-
|
|
8137
|
-
|
|
8138
|
-
|
|
8208
|
+
DEFAULT: {
|
|
8209
|
+
value: {
|
|
8210
|
+
base: "{colors.neutral.300}",
|
|
8211
|
+
_light: "{colors.neutral.300}",
|
|
8212
|
+
_dark: "{colors.dark.300}",
|
|
8213
|
+
_enterprise: "{colors.slate.300}"
|
|
8214
|
+
}
|
|
8215
|
+
},
|
|
8216
|
+
subtle: {
|
|
8217
|
+
value: {
|
|
8218
|
+
base: "{colors.neutral.200}",
|
|
8219
|
+
_light: "{colors.neutral.200}",
|
|
8220
|
+
_dark: "{colors.dark.200}",
|
|
8221
|
+
_enterprise: "{colors.slate.200}"
|
|
8222
|
+
}
|
|
8139
8223
|
}
|
|
8140
8224
|
},
|
|
8141
8225
|
bold: {
|
|
@@ -8143,7 +8227,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8143
8227
|
base: "{colors.neutral.600}",
|
|
8144
8228
|
_light: "{colors.neutral.600}",
|
|
8145
8229
|
_dark: "{colors.dark.600}",
|
|
8146
|
-
_enterprise: "{colors.slate.
|
|
8230
|
+
_enterprise: "{colors.slate.400}"
|
|
8147
8231
|
}
|
|
8148
8232
|
},
|
|
8149
8233
|
disabled: {
|
|
@@ -8209,7 +8293,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8209
8293
|
base: "{colors.indigo.700}",
|
|
8210
8294
|
_light: "{colors.indigo.700}",
|
|
8211
8295
|
_dark: "{colors.indigo.400}",
|
|
8212
|
-
_enterprise: "{colors.emerald.
|
|
8296
|
+
_enterprise: "{colors.emerald.800}"
|
|
8213
8297
|
}
|
|
8214
8298
|
},
|
|
8215
8299
|
danger: {
|
|
@@ -8217,7 +8301,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8217
8301
|
base: "{colors.red.700}",
|
|
8218
8302
|
_light: "{colors.red.700}",
|
|
8219
8303
|
_dark: "{colors.red.400}",
|
|
8220
|
-
_enterprise: "{colors.red.
|
|
8304
|
+
_enterprise: "{colors.red.600}"
|
|
8221
8305
|
}
|
|
8222
8306
|
},
|
|
8223
8307
|
warning: {
|
|
@@ -8233,7 +8317,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8233
8317
|
base: "{colors.green.700}",
|
|
8234
8318
|
_light: "{colors.green.700}",
|
|
8235
8319
|
_dark: "{colors.green.400}",
|
|
8236
|
-
_enterprise: "{colors.
|
|
8320
|
+
_enterprise: "{colors.emerald.700}"
|
|
8237
8321
|
}
|
|
8238
8322
|
},
|
|
8239
8323
|
highlight: {
|
|
@@ -8241,7 +8325,7 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8241
8325
|
base: "{colors.violet.700}",
|
|
8242
8326
|
_light: "{colors.violet.700}",
|
|
8243
8327
|
_dark: "{colors.violet.400}",
|
|
8244
|
-
_enterprise: "{colors.
|
|
8328
|
+
_enterprise: "{colors.orange.700}"
|
|
8245
8329
|
}
|
|
8246
8330
|
},
|
|
8247
8331
|
information: {
|
|
@@ -8249,10 +8333,11 @@ var colors3 = defineSemanticTokens.colors({
|
|
|
8249
8333
|
base: "{colors.indigo.700}",
|
|
8250
8334
|
_light: "{colors.indigo.700}",
|
|
8251
8335
|
_dark: "{colors.indigo.400}",
|
|
8252
|
-
_enterprise: "{colors.
|
|
8336
|
+
_enterprise: "{colors.indigo.600}"
|
|
8253
8337
|
}
|
|
8254
8338
|
}
|
|
8255
8339
|
},
|
|
8340
|
+
// CHART SEMANTIC TOKENS
|
|
8256
8341
|
chart: {
|
|
8257
8342
|
cat01: {
|
|
8258
8343
|
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: {
|
|
@@ -895,19 +925,21 @@ declare const colors: {
|
|
|
895
925
|
};
|
|
896
926
|
border: {
|
|
897
927
|
default: {
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
928
|
+
DEFAULT: {
|
|
929
|
+
value: {
|
|
930
|
+
base: string;
|
|
931
|
+
_light: string;
|
|
932
|
+
_dark: string;
|
|
933
|
+
_enterprise: string;
|
|
934
|
+
};
|
|
903
935
|
};
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
936
|
+
subtle: {
|
|
937
|
+
value: {
|
|
938
|
+
base: string;
|
|
939
|
+
_light: string;
|
|
940
|
+
_dark: string;
|
|
941
|
+
_enterprise: string;
|
|
942
|
+
};
|
|
911
943
|
};
|
|
912
944
|
};
|
|
913
945
|
bold: {
|