@likec4/styles 1.42.0 → 1.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/preset.d.mts +0 -7
- package/dist/preset.mjs +8 -30
- package/dist/tokens/index.mjs +5 -21
- package/dist/tokens/tokens.d.ts +1 -1
- package/package.json +9 -9
package/dist/preset.d.mts
CHANGED
package/dist/preset.mjs
CHANGED
|
@@ -3870,15 +3870,10 @@ function getSemanticTokens(darkMode, autoP3, colorScales = []) {
|
|
|
3870
3870
|
).map((scale) => {
|
|
3871
3871
|
let lightScale = void 0;
|
|
3872
3872
|
let darkScale = void 0;
|
|
3873
|
-
let p3Scale = void 0;
|
|
3874
3873
|
if (darkMode && !scale.dark && !scale.tags.includes("light"))
|
|
3875
3874
|
darkScale = scales.find(
|
|
3876
3875
|
(x) => x.name === scale.name && x.alpha === scale.alpha && x.p3 === scale.p3 && x.dark
|
|
3877
3876
|
);
|
|
3878
|
-
if (!darkScale && autoP3 && !scale.p3)
|
|
3879
|
-
p3Scale = scales.find(
|
|
3880
|
-
(x) => x.name === scale.name && x.alpha === scale.alpha && x.dark === scale.dark && x.p3
|
|
3881
|
-
);
|
|
3882
3877
|
if (darkScale)
|
|
3883
3878
|
lightScale = scale.tags.includes("light") ? scale : scales.find(
|
|
3884
3879
|
(x) => x.name === scale.name && x.alpha === scale.alpha && x.dark === scale.dark && x.p3 === scale.p3 && x.tags.includes("light")
|
|
@@ -3894,11 +3889,6 @@ function getSemanticTokens(darkMode, autoP3, colorScales = []) {
|
|
|
3894
3889
|
base: `{colors.${lightScale.path}.${i}}`,
|
|
3895
3890
|
_dark: `{colors.${darkScale.path}.${i}}`
|
|
3896
3891
|
};
|
|
3897
|
-
if (p3Scale)
|
|
3898
|
-
value = {
|
|
3899
|
-
base: color,
|
|
3900
|
-
_p3: `{colors.${p3Scale.path}.${i}}`
|
|
3901
|
-
};
|
|
3902
3892
|
return {
|
|
3903
3893
|
[i]: {
|
|
3904
3894
|
value
|
|
@@ -4979,21 +4969,16 @@ const layerStyles = defineLayerStyles({
|
|
|
4979
4969
|
paddingBlock: "1",
|
|
4980
4970
|
paddingInline: "xs",
|
|
4981
4971
|
borderRadius: "0",
|
|
4982
|
-
backgroundColor:
|
|
4983
|
-
base: "likec4.panel.bg",
|
|
4984
|
-
_reduceGraphicsOnPan: "likec4.panel.bg.whenPanning"
|
|
4985
|
-
},
|
|
4972
|
+
backgroundColor: "likec4.panel.bg",
|
|
4986
4973
|
border: "1px solid {colors.likec4.panel.border}",
|
|
4987
4974
|
"@/sm": {
|
|
4988
4975
|
boxShadow: "lg",
|
|
4989
4976
|
borderRadius: "md",
|
|
4990
|
-
padding: "2xs"
|
|
4991
|
-
backdropFilter: "blur(10px)"
|
|
4977
|
+
padding: "2xs"
|
|
4992
4978
|
},
|
|
4993
4979
|
_whenPanning: {
|
|
4994
4980
|
boxShadow: "none",
|
|
4995
|
-
borderRadius: "0"
|
|
4996
|
-
backdropFilter: "none"
|
|
4981
|
+
borderRadius: "0"
|
|
4997
4982
|
}
|
|
4998
4983
|
}
|
|
4999
4984
|
},
|
|
@@ -6227,7 +6212,7 @@ const semanticTokens = defineSemanticTokens({
|
|
|
6227
6212
|
background: {
|
|
6228
6213
|
DEFAULT: {
|
|
6229
6214
|
description: "Background color",
|
|
6230
|
-
value: "
|
|
6215
|
+
value: "var(--mantine-color-body)"
|
|
6231
6216
|
},
|
|
6232
6217
|
pattern: {
|
|
6233
6218
|
description: "Background pattern color",
|
|
@@ -6260,13 +6245,6 @@ const semanticTokens = defineSemanticTokens({
|
|
|
6260
6245
|
bg: {
|
|
6261
6246
|
DEFAULT: {
|
|
6262
6247
|
description: "LikeC4 panel background color",
|
|
6263
|
-
value: {
|
|
6264
|
-
base: `{colors.mantine.colors.body/90}`,
|
|
6265
|
-
_dark: `{colors.mantine.colors.dark[6]/80}`
|
|
6266
|
-
}
|
|
6267
|
-
},
|
|
6268
|
-
whenPanning: {
|
|
6269
|
-
description: "LikeC4 panel background color when panning",
|
|
6270
6248
|
value: {
|
|
6271
6249
|
base: `{colors.mantine.colors.body}`,
|
|
6272
6250
|
_dark: `{colors.mantine.colors.dark[6]}`
|
|
@@ -6284,15 +6262,15 @@ const semanticTokens = defineSemanticTokens({
|
|
|
6284
6262
|
text: {
|
|
6285
6263
|
DEFAULT: {
|
|
6286
6264
|
description: "LikeC4 action icon text color",
|
|
6287
|
-
value: "
|
|
6265
|
+
value: "color-mix(in srgb, var(--mantine-color-text) 80%, transparent)"
|
|
6288
6266
|
},
|
|
6289
6267
|
hover: {
|
|
6290
6268
|
description: "LikeC4 action icon text color on hover",
|
|
6291
|
-
value: "
|
|
6269
|
+
value: "var(--mantine-color-bright)"
|
|
6292
6270
|
},
|
|
6293
6271
|
disabled: {
|
|
6294
6272
|
description: "LikeC4 action icon text color when disabled",
|
|
6295
|
-
value: "
|
|
6273
|
+
value: "var(--mantine-color-dimmed)"
|
|
6296
6274
|
}
|
|
6297
6275
|
},
|
|
6298
6276
|
bg: {
|
|
@@ -6341,7 +6319,7 @@ const semanticTokens = defineSemanticTokens({
|
|
|
6341
6319
|
body: {
|
|
6342
6320
|
DEFAULT: {
|
|
6343
6321
|
description: "LikeC4 overlay body color",
|
|
6344
|
-
value: `
|
|
6322
|
+
value: `var(--mantine-color-body)`
|
|
6345
6323
|
}
|
|
6346
6324
|
},
|
|
6347
6325
|
border: {
|
package/dist/tokens/index.mjs
CHANGED
|
@@ -9608,7 +9608,7 @@ const tokens = {
|
|
|
9608
9608
|
"variable": "var(--colors-yellow-p3-a-12)"
|
|
9609
9609
|
},
|
|
9610
9610
|
"colors.likec4.background": {
|
|
9611
|
-
"value": "var(--
|
|
9611
|
+
"value": "var(--mantine-color-body)",
|
|
9612
9612
|
"variable": "var(--colors-likec4-background)"
|
|
9613
9613
|
},
|
|
9614
9614
|
"colors.likec4.tag.bg": {
|
|
@@ -9631,24 +9631,20 @@ const tokens = {
|
|
|
9631
9631
|
"value": "var(--colors-likec4-panel-bg)",
|
|
9632
9632
|
"variable": "var(--colors-likec4-panel-bg)"
|
|
9633
9633
|
},
|
|
9634
|
-
"colors.likec4.panel.bg.whenPanning": {
|
|
9635
|
-
"value": "var(--colors-likec4-panel-bg-when-panning)",
|
|
9636
|
-
"variable": "var(--colors-likec4-panel-bg-when-panning)"
|
|
9637
|
-
},
|
|
9638
9634
|
"colors.likec4.panel.border": {
|
|
9639
9635
|
"value": "var(--colors-likec4-panel-border)",
|
|
9640
9636
|
"variable": "var(--colors-likec4-panel-border)"
|
|
9641
9637
|
},
|
|
9642
9638
|
"colors.likec4.panel.action-icon.text": {
|
|
9643
|
-
"value": "color-mix(in srgb, var(--
|
|
9639
|
+
"value": "color-mix(in srgb, var(--mantine-color-text) 80%, transparent)",
|
|
9644
9640
|
"variable": "var(--colors-likec4-panel-action-icon-text)"
|
|
9645
9641
|
},
|
|
9646
9642
|
"colors.likec4.panel.action-icon.text.hover": {
|
|
9647
|
-
"value": "var(--
|
|
9643
|
+
"value": "var(--mantine-color-bright)",
|
|
9648
9644
|
"variable": "var(--colors-likec4-panel-action-icon-text-hover)"
|
|
9649
9645
|
},
|
|
9650
9646
|
"colors.likec4.panel.action-icon.text.disabled": {
|
|
9651
|
-
"value": "var(--
|
|
9647
|
+
"value": "var(--mantine-color-dimmed)",
|
|
9652
9648
|
"variable": "var(--colors-likec4-panel-action-icon-text-disabled)"
|
|
9653
9649
|
},
|
|
9654
9650
|
"colors.likec4.panel.action-icon.bg": {
|
|
@@ -9672,7 +9668,7 @@ const tokens = {
|
|
|
9672
9668
|
"variable": "var(--colors-likec4-overlay-backdrop)"
|
|
9673
9669
|
},
|
|
9674
9670
|
"colors.likec4.overlay.body": {
|
|
9675
|
-
"value": "var(--
|
|
9671
|
+
"value": "var(--mantine-color-body)",
|
|
9676
9672
|
"variable": "var(--colors-likec4-overlay-body)"
|
|
9677
9673
|
},
|
|
9678
9674
|
"colors.likec4.overlay.border": {
|
|
@@ -11687,18 +11683,6 @@ const tokens = {
|
|
|
11687
11683
|
"value": "var(--colors-color-palette-panel-bg)",
|
|
11688
11684
|
"variable": "var(--colors-color-palette-panel-bg)"
|
|
11689
11685
|
},
|
|
11690
|
-
"colors.colorPalette.panel.bg.whenPanning": {
|
|
11691
|
-
"value": "var(--colors-color-palette-panel-bg-when-panning)",
|
|
11692
|
-
"variable": "var(--colors-color-palette-panel-bg-when-panning)"
|
|
11693
|
-
},
|
|
11694
|
-
"colors.colorPalette.bg.whenPanning": {
|
|
11695
|
-
"value": "var(--colors-color-palette-bg-when-panning)",
|
|
11696
|
-
"variable": "var(--colors-color-palette-bg-when-panning)"
|
|
11697
|
-
},
|
|
11698
|
-
"colors.colorPalette.whenPanning": {
|
|
11699
|
-
"value": "var(--colors-color-palette-when-panning)",
|
|
11700
|
-
"variable": "var(--colors-color-palette-when-panning)"
|
|
11701
|
-
},
|
|
11702
11686
|
"colors.colorPalette.panel.border": {
|
|
11703
11687
|
"value": "var(--colors-color-palette-panel-border)",
|
|
11704
11688
|
"variable": "var(--colors-color-palette-panel-border)"
|
package/dist/tokens/tokens.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type FontSizeToken = "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "likec4.x
|
|
|
9
9
|
|
|
10
10
|
export type LineHeightToken = "1" | "xs" | "sm" | "md" | "lg" | "xl"
|
|
11
11
|
|
|
12
|
-
export type ColorToken = "mantine.colors.primary" | "mantine.colors.primary.filled" | "mantine.colors.primary.filledHover" | "mantine.colors.primary.light" | "mantine.colors.primary.lightHover" | "mantine.colors.primary.lightColor" | "mantine.colors.primary.outline" | "mantine.colors.primary.outlineHover" | "mantine.colors.primary[0]" | "mantine.colors.primary[1]" | "mantine.colors.primary[2]" | "mantine.colors.primary[3]" | "mantine.colors.primary[4]" | "mantine.colors.primary[5]" | "mantine.colors.primary[6]" | "mantine.colors.primary[7]" | "mantine.colors.primary[8]" | "mantine.colors.primary[9]" | "mantine.colors.white" | "mantine.colors.text" | "mantine.colors.body" | "mantine.colors.dimmed" | "mantine.colors.defaultBorder" | "mantine.colors.defaultColor" | "mantine.colors.defaultHover" | "mantine.colors.default" | "mantine.colors.error" | "mantine.colors.placeholder" | "mantine.colors.gray" | "mantine.colors.gray.filled" | "mantine.colors.gray.filledHover" | "mantine.colors.gray.light" | "mantine.colors.gray.lightHover" | "mantine.colors.gray.lightColor" | "mantine.colors.gray.outline" | "mantine.colors.gray.outlineHover" | "mantine.colors.gray[0]" | "mantine.colors.gray[1]" | "mantine.colors.gray[2]" | "mantine.colors.gray[3]" | "mantine.colors.gray[4]" | "mantine.colors.gray[5]" | "mantine.colors.gray[6]" | "mantine.colors.gray[7]" | "mantine.colors.gray[8]" | "mantine.colors.gray[9]" | "mantine.colors.dark" | "mantine.colors.dark.filled" | "mantine.colors.dark.filledHover" | "mantine.colors.dark.light" | "mantine.colors.dark.lightHover" | "mantine.colors.dark.lightColor" | "mantine.colors.dark.outline" | "mantine.colors.dark.outlineHover" | "mantine.colors.dark[0]" | "mantine.colors.dark[1]" | "mantine.colors.dark[2]" | "mantine.colors.dark[3]" | "mantine.colors.dark[4]" | "mantine.colors.dark[5]" | "mantine.colors.dark[6]" | "mantine.colors.dark[7]" | "mantine.colors.dark[8]" | "mantine.colors.dark[9]" | "mantine.colors.orange" | "mantine.colors.orange.filled" | "mantine.colors.orange.filledHover" | "mantine.colors.orange.light" | "mantine.colors.orange.lightHover" | "mantine.colors.orange.lightColor" | "mantine.colors.orange.outline" | "mantine.colors.orange.outlineHover" | "mantine.colors.orange[0]" | "mantine.colors.orange[1]" | "mantine.colors.orange[2]" | "mantine.colors.orange[3]" | "mantine.colors.orange[4]" | "mantine.colors.orange[5]" | "mantine.colors.orange[6]" | "mantine.colors.orange[7]" | "mantine.colors.orange[8]" | "mantine.colors.orange[9]" | "mantine.colors.teal" | "mantine.colors.teal.filled" | "mantine.colors.teal.filledHover" | "mantine.colors.teal.light" | "mantine.colors.teal.lightHover" | "mantine.colors.teal.lightColor" | "mantine.colors.teal.outline" | "mantine.colors.teal.outlineHover" | "mantine.colors.teal[0]" | "mantine.colors.teal[1]" | "mantine.colors.teal[2]" | "mantine.colors.teal[3]" | "mantine.colors.teal[4]" | "mantine.colors.teal[5]" | "mantine.colors.teal[6]" | "mantine.colors.teal[7]" | "mantine.colors.teal[8]" | "mantine.colors.teal[9]" | "mantine.colors.red" | "mantine.colors.red.filled" | "mantine.colors.red.filledHover" | "mantine.colors.red.light" | "mantine.colors.red.lightHover" | "mantine.colors.red.lightColor" | "mantine.colors.red.outline" | "mantine.colors.red.outlineHover" | "mantine.colors.red[0]" | "mantine.colors.red[1]" | "mantine.colors.red[2]" | "mantine.colors.red[3]" | "mantine.colors.red[4]" | "mantine.colors.red[5]" | "mantine.colors.red[6]" | "mantine.colors.red[7]" | "mantine.colors.red[8]" | "mantine.colors.red[9]" | "mantine.colors.green" | "mantine.colors.green.filled" | "mantine.colors.green.filledHover" | "mantine.colors.green.light" | "mantine.colors.green.lightHover" | "mantine.colors.green.lightColor" | "mantine.colors.green.outline" | "mantine.colors.green.outlineHover" | "mantine.colors.green[0]" | "mantine.colors.green[1]" | "mantine.colors.green[2]" | "mantine.colors.green[3]" | "mantine.colors.green[4]" | "mantine.colors.green[5]" | "mantine.colors.green[6]" | "mantine.colors.green[7]" | "mantine.colors.green[8]" | "mantine.colors.green[9]" | "mantine.colors.yellow" | "mantine.colors.yellow.filled" | "mantine.colors.yellow.filledHover" | "mantine.colors.yellow.light" | "mantine.colors.yellow.lightHover" | "mantine.colors.yellow.lightColor" | "mantine.colors.yellow.outline" | "mantine.colors.yellow.outlineHover" | "mantine.colors.yellow[0]" | "mantine.colors.yellow[1]" | "mantine.colors.yellow[2]" | "mantine.colors.yellow[3]" | "mantine.colors.yellow[4]" | "mantine.colors.yellow[5]" | "mantine.colors.yellow[6]" | "mantine.colors.yellow[7]" | "mantine.colors.yellow[8]" | "mantine.colors.yellow[9]" | "transparent" | "none" | "amber.1" | "amber.2" | "amber.3" | "amber.4" | "amber.5" | "amber.6" | "amber.7" | "amber.8" | "amber.9" | "amber.10" | "amber.11" | "amber.12" | "amber.light.1" | "amber.light.2" | "amber.light.3" | "amber.light.4" | "amber.light.5" | "amber.light.6" | "amber.light.7" | "amber.light.8" | "amber.light.9" | "amber.light.10" | "amber.light.11" | "amber.light.12" | "amber.light.a.1" | "amber.light.a.2" | "amber.light.a.3" | "amber.light.a.4" | "amber.light.a.5" | "amber.light.a.6" | "amber.light.a.7" | "amber.light.a.8" | "amber.light.a.9" | "amber.light.a.10" | "amber.light.a.11" | "amber.light.a.12" | "amber.light.p3.1" | "amber.light.p3.2" | "amber.light.p3.3" | "amber.light.p3.4" | "amber.light.p3.5" | "amber.light.p3.6" | "amber.light.p3.7" | "amber.light.p3.8" | "amber.light.p3.9" | "amber.light.p3.10" | "amber.light.p3.11" | "amber.light.p3.12" | "amber.light.p3.a.1" | "amber.light.p3.a.2" | "amber.light.p3.a.3" | "amber.light.p3.a.4" | "amber.light.p3.a.5" | "amber.light.p3.a.6" | "amber.light.p3.a.7" | "amber.light.p3.a.8" | "amber.light.p3.a.9" | "amber.light.p3.a.10" | "amber.light.p3.a.11" | "amber.light.p3.a.12" | "amber.dark.1" | "amber.dark.2" | "amber.dark.3" | "amber.dark.4" | "amber.dark.5" | "amber.dark.6" | "amber.dark.7" | "amber.dark.8" | "amber.dark.9" | "amber.dark.10" | "amber.dark.11" | "amber.dark.12" | "amber.dark.a.1" | "amber.dark.a.2" | "amber.dark.a.3" | "amber.dark.a.4" | "amber.dark.a.5" | "amber.dark.a.6" | "amber.dark.a.7" | "amber.dark.a.8" | "amber.dark.a.9" | "amber.dark.a.10" | "amber.dark.a.11" | "amber.dark.a.12" | "amber.dark.p3.1" | "amber.dark.p3.2" | "amber.dark.p3.3" | "amber.dark.p3.4" | "amber.dark.p3.5" | "amber.dark.p3.6" | "amber.dark.p3.7" | "amber.dark.p3.8" | "amber.dark.p3.9" | "amber.dark.p3.10" | "amber.dark.p3.11" | "amber.dark.p3.12" | "amber.dark.p3.a.1" | "amber.dark.p3.a.2" | "amber.dark.p3.a.3" | "amber.dark.p3.a.4" | "amber.dark.p3.a.5" | "amber.dark.p3.a.6" | "amber.dark.p3.a.7" | "amber.dark.p3.a.8" | "amber.dark.p3.a.9" | "amber.dark.p3.a.10" | "amber.dark.p3.a.11" | "amber.dark.p3.a.12" | "amber.a.1" | "amber.a.2" | "amber.a.3" | "amber.a.4" | "amber.a.5" | "amber.a.6" | "amber.a.7" | "amber.a.8" | "amber.a.9" | "amber.a.10" | "amber.a.11" | "amber.a.12" | "amber.p3.1" | "amber.p3.2" | "amber.p3.3" | "amber.p3.4" | "amber.p3.5" | "amber.p3.6" | "amber.p3.7" | "amber.p3.8" | "amber.p3.9" | "amber.p3.10" | "amber.p3.11" | "amber.p3.12" | "amber.p3.a.1" | "amber.p3.a.2" | "amber.p3.a.3" | "amber.p3.a.4" | "amber.p3.a.5" | "amber.p3.a.6" | "amber.p3.a.7" | "amber.p3.a.8" | "amber.p3.a.9" | "amber.p3.a.10" | "amber.p3.a.11" | "amber.p3.a.12" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "blue.11" | "blue.12" | "blue.light.1" | "blue.light.2" | "blue.light.3" | "blue.light.4" | "blue.light.5" | "blue.light.6" | "blue.light.7" | "blue.light.8" | "blue.light.9" | "blue.light.10" | "blue.light.11" | "blue.light.12" | "blue.light.a.1" | "blue.light.a.2" | "blue.light.a.3" | "blue.light.a.4" | "blue.light.a.5" | "blue.light.a.6" | "blue.light.a.7" | "blue.light.a.8" | "blue.light.a.9" | "blue.light.a.10" | "blue.light.a.11" | "blue.light.a.12" | "blue.light.p3.1" | "blue.light.p3.2" | "blue.light.p3.3" | "blue.light.p3.4" | "blue.light.p3.5" | "blue.light.p3.6" | "blue.light.p3.7" | "blue.light.p3.8" | "blue.light.p3.9" | "blue.light.p3.10" | "blue.light.p3.11" | "blue.light.p3.12" | "blue.light.p3.a.1" | "blue.light.p3.a.2" | "blue.light.p3.a.3" | "blue.light.p3.a.4" | "blue.light.p3.a.5" | "blue.light.p3.a.6" | "blue.light.p3.a.7" | "blue.light.p3.a.8" | "blue.light.p3.a.9" | "blue.light.p3.a.10" | "blue.light.p3.a.11" | "blue.light.p3.a.12" | "blue.dark.1" | "blue.dark.2" | "blue.dark.3" | "blue.dark.4" | "blue.dark.5" | "blue.dark.6" | "blue.dark.7" | "blue.dark.8" | "blue.dark.9" | "blue.dark.10" | "blue.dark.11" | "blue.dark.12" | "blue.dark.a.1" | "blue.dark.a.2" | "blue.dark.a.3" | "blue.dark.a.4" | "blue.dark.a.5" | "blue.dark.a.6" | "blue.dark.a.7" | "blue.dark.a.8" | "blue.dark.a.9" | "blue.dark.a.10" | "blue.dark.a.11" | "blue.dark.a.12" | "blue.dark.p3.1" | "blue.dark.p3.2" | "blue.dark.p3.3" | "blue.dark.p3.4" | "blue.dark.p3.5" | "blue.dark.p3.6" | "blue.dark.p3.7" | "blue.dark.p3.8" | "blue.dark.p3.9" | "blue.dark.p3.10" | "blue.dark.p3.11" | "blue.dark.p3.12" | "blue.dark.p3.a.1" | "blue.dark.p3.a.2" | "blue.dark.p3.a.3" | "blue.dark.p3.a.4" | "blue.dark.p3.a.5" | "blue.dark.p3.a.6" | "blue.dark.p3.a.7" | "blue.dark.p3.a.8" | "blue.dark.p3.a.9" | "blue.dark.p3.a.10" | "blue.dark.p3.a.11" | "blue.dark.p3.a.12" | "blue.a.1" | "blue.a.2" | "blue.a.3" | "blue.a.4" | "blue.a.5" | "blue.a.6" | "blue.a.7" | "blue.a.8" | "blue.a.9" | "blue.a.10" | "blue.a.11" | "blue.a.12" | "blue.p3.1" | "blue.p3.2" | "blue.p3.3" | "blue.p3.4" | "blue.p3.5" | "blue.p3.6" | "blue.p3.7" | "blue.p3.8" | "blue.p3.9" | "blue.p3.10" | "blue.p3.11" | "blue.p3.12" | "blue.p3.a.1" | "blue.p3.a.2" | "blue.p3.a.3" | "blue.p3.a.4" | "blue.p3.a.5" | "blue.p3.a.6" | "blue.p3.a.7" | "blue.p3.a.8" | "blue.p3.a.9" | "blue.p3.a.10" | "blue.p3.a.11" | "blue.p3.a.12" | "crimson.1" | "crimson.2" | "crimson.3" | "crimson.4" | "crimson.5" | "crimson.6" | "crimson.7" | "crimson.8" | "crimson.9" | "crimson.10" | "crimson.11" | "crimson.12" | "crimson.light.1" | "crimson.light.2" | "crimson.light.3" | "crimson.light.4" | "crimson.light.5" | "crimson.light.6" | "crimson.light.7" | "crimson.light.8" | "crimson.light.9" | "crimson.light.10" | "crimson.light.11" | "crimson.light.12" | "crimson.light.a.1" | "crimson.light.a.2" | "crimson.light.a.3" | "crimson.light.a.4" | "crimson.light.a.5" | "crimson.light.a.6" | "crimson.light.a.7" | "crimson.light.a.8" | "crimson.light.a.9" | "crimson.light.a.10" | "crimson.light.a.11" | "crimson.light.a.12" | "crimson.light.p3.1" | "crimson.light.p3.2" | "crimson.light.p3.3" | "crimson.light.p3.4" | "crimson.light.p3.5" | "crimson.light.p3.6" | "crimson.light.p3.7" | "crimson.light.p3.8" | "crimson.light.p3.9" | "crimson.light.p3.10" | "crimson.light.p3.11" | "crimson.light.p3.12" | "crimson.light.p3.a.1" | "crimson.light.p3.a.2" | "crimson.light.p3.a.3" | "crimson.light.p3.a.4" | "crimson.light.p3.a.5" | "crimson.light.p3.a.6" | "crimson.light.p3.a.7" | "crimson.light.p3.a.8" | "crimson.light.p3.a.9" | "crimson.light.p3.a.10" | "crimson.light.p3.a.11" | "crimson.light.p3.a.12" | "crimson.dark.1" | "crimson.dark.2" | "crimson.dark.3" | "crimson.dark.4" | "crimson.dark.5" | "crimson.dark.6" | "crimson.dark.7" | "crimson.dark.8" | "crimson.dark.9" | "crimson.dark.10" | "crimson.dark.11" | "crimson.dark.12" | "crimson.dark.a.1" | "crimson.dark.a.2" | "crimson.dark.a.3" | "crimson.dark.a.4" | "crimson.dark.a.5" | "crimson.dark.a.6" | "crimson.dark.a.7" | "crimson.dark.a.8" | "crimson.dark.a.9" | "crimson.dark.a.10" | "crimson.dark.a.11" | "crimson.dark.a.12" | "crimson.dark.p3.1" | "crimson.dark.p3.2" | "crimson.dark.p3.3" | "crimson.dark.p3.4" | "crimson.dark.p3.5" | "crimson.dark.p3.6" | "crimson.dark.p3.7" | "crimson.dark.p3.8" | "crimson.dark.p3.9" | "crimson.dark.p3.10" | "crimson.dark.p3.11" | "crimson.dark.p3.12" | "crimson.dark.p3.a.1" | "crimson.dark.p3.a.2" | "crimson.dark.p3.a.3" | "crimson.dark.p3.a.4" | "crimson.dark.p3.a.5" | "crimson.dark.p3.a.6" | "crimson.dark.p3.a.7" | "crimson.dark.p3.a.8" | "crimson.dark.p3.a.9" | "crimson.dark.p3.a.10" | "crimson.dark.p3.a.11" | "crimson.dark.p3.a.12" | "crimson.a.1" | "crimson.a.2" | "crimson.a.3" | "crimson.a.4" | "crimson.a.5" | "crimson.a.6" | "crimson.a.7" | "crimson.a.8" | "crimson.a.9" | "crimson.a.10" | "crimson.a.11" | "crimson.a.12" | "crimson.p3.1" | "crimson.p3.2" | "crimson.p3.3" | "crimson.p3.4" | "crimson.p3.5" | "crimson.p3.6" | "crimson.p3.7" | "crimson.p3.8" | "crimson.p3.9" | "crimson.p3.10" | "crimson.p3.11" | "crimson.p3.12" | "crimson.p3.a.1" | "crimson.p3.a.2" | "crimson.p3.a.3" | "crimson.p3.a.4" | "crimson.p3.a.5" | "crimson.p3.a.6" | "crimson.p3.a.7" | "crimson.p3.a.8" | "crimson.p3.a.9" | "crimson.p3.a.10" | "crimson.p3.a.11" | "crimson.p3.a.12" | "grass.1" | "grass.2" | "grass.3" | "grass.4" | "grass.5" | "grass.6" | "grass.7" | "grass.8" | "grass.9" | "grass.10" | "grass.11" | "grass.12" | "grass.light.1" | "grass.light.2" | "grass.light.3" | "grass.light.4" | "grass.light.5" | "grass.light.6" | "grass.light.7" | "grass.light.8" | "grass.light.9" | "grass.light.10" | "grass.light.11" | "grass.light.12" | "grass.light.a.1" | "grass.light.a.2" | "grass.light.a.3" | "grass.light.a.4" | "grass.light.a.5" | "grass.light.a.6" | "grass.light.a.7" | "grass.light.a.8" | "grass.light.a.9" | "grass.light.a.10" | "grass.light.a.11" | "grass.light.a.12" | "grass.light.p3.1" | "grass.light.p3.2" | "grass.light.p3.3" | "grass.light.p3.4" | "grass.light.p3.5" | "grass.light.p3.6" | "grass.light.p3.7" | "grass.light.p3.8" | "grass.light.p3.9" | "grass.light.p3.10" | "grass.light.p3.11" | "grass.light.p3.12" | "grass.light.p3.a.1" | "grass.light.p3.a.2" | "grass.light.p3.a.3" | "grass.light.p3.a.4" | "grass.light.p3.a.5" | "grass.light.p3.a.6" | "grass.light.p3.a.7" | "grass.light.p3.a.8" | "grass.light.p3.a.9" | "grass.light.p3.a.10" | "grass.light.p3.a.11" | "grass.light.p3.a.12" | "grass.dark.1" | "grass.dark.2" | "grass.dark.3" | "grass.dark.4" | "grass.dark.5" | "grass.dark.6" | "grass.dark.7" | "grass.dark.8" | "grass.dark.9" | "grass.dark.10" | "grass.dark.11" | "grass.dark.12" | "grass.dark.a.1" | "grass.dark.a.2" | "grass.dark.a.3" | "grass.dark.a.4" | "grass.dark.a.5" | "grass.dark.a.6" | "grass.dark.a.7" | "grass.dark.a.8" | "grass.dark.a.9" | "grass.dark.a.10" | "grass.dark.a.11" | "grass.dark.a.12" | "grass.dark.p3.1" | "grass.dark.p3.2" | "grass.dark.p3.3" | "grass.dark.p3.4" | "grass.dark.p3.5" | "grass.dark.p3.6" | "grass.dark.p3.7" | "grass.dark.p3.8" | "grass.dark.p3.9" | "grass.dark.p3.10" | "grass.dark.p3.11" | "grass.dark.p3.12" | "grass.dark.p3.a.1" | "grass.dark.p3.a.2" | "grass.dark.p3.a.3" | "grass.dark.p3.a.4" | "grass.dark.p3.a.5" | "grass.dark.p3.a.6" | "grass.dark.p3.a.7" | "grass.dark.p3.a.8" | "grass.dark.p3.a.9" | "grass.dark.p3.a.10" | "grass.dark.p3.a.11" | "grass.dark.p3.a.12" | "grass.a.1" | "grass.a.2" | "grass.a.3" | "grass.a.4" | "grass.a.5" | "grass.a.6" | "grass.a.7" | "grass.a.8" | "grass.a.9" | "grass.a.10" | "grass.a.11" | "grass.a.12" | "grass.p3.1" | "grass.p3.2" | "grass.p3.3" | "grass.p3.4" | "grass.p3.5" | "grass.p3.6" | "grass.p3.7" | "grass.p3.8" | "grass.p3.9" | "grass.p3.10" | "grass.p3.11" | "grass.p3.12" | "grass.p3.a.1" | "grass.p3.a.2" | "grass.p3.a.3" | "grass.p3.a.4" | "grass.p3.a.5" | "grass.p3.a.6" | "grass.p3.a.7" | "grass.p3.a.8" | "grass.p3.a.9" | "grass.p3.a.10" | "grass.p3.a.11" | "grass.p3.a.12" | "indigo.1" | "indigo.2" | "indigo.3" | "indigo.4" | "indigo.5" | "indigo.6" | "indigo.7" | "indigo.8" | "indigo.9" | "indigo.10" | "indigo.11" | "indigo.12" | "indigo.light.1" | "indigo.light.2" | "indigo.light.3" | "indigo.light.4" | "indigo.light.5" | "indigo.light.6" | "indigo.light.7" | "indigo.light.8" | "indigo.light.9" | "indigo.light.10" | "indigo.light.11" | "indigo.light.12" | "indigo.light.a.1" | "indigo.light.a.2" | "indigo.light.a.3" | "indigo.light.a.4" | "indigo.light.a.5" | "indigo.light.a.6" | "indigo.light.a.7" | "indigo.light.a.8" | "indigo.light.a.9" | "indigo.light.a.10" | "indigo.light.a.11" | "indigo.light.a.12" | "indigo.light.p3.1" | "indigo.light.p3.2" | "indigo.light.p3.3" | "indigo.light.p3.4" | "indigo.light.p3.5" | "indigo.light.p3.6" | "indigo.light.p3.7" | "indigo.light.p3.8" | "indigo.light.p3.9" | "indigo.light.p3.10" | "indigo.light.p3.11" | "indigo.light.p3.12" | "indigo.light.p3.a.1" | "indigo.light.p3.a.2" | "indigo.light.p3.a.3" | "indigo.light.p3.a.4" | "indigo.light.p3.a.5" | "indigo.light.p3.a.6" | "indigo.light.p3.a.7" | "indigo.light.p3.a.8" | "indigo.light.p3.a.9" | "indigo.light.p3.a.10" | "indigo.light.p3.a.11" | "indigo.light.p3.a.12" | "indigo.dark.1" | "indigo.dark.2" | "indigo.dark.3" | "indigo.dark.4" | "indigo.dark.5" | "indigo.dark.6" | "indigo.dark.7" | "indigo.dark.8" | "indigo.dark.9" | "indigo.dark.10" | "indigo.dark.11" | "indigo.dark.12" | "indigo.dark.a.1" | "indigo.dark.a.2" | "indigo.dark.a.3" | "indigo.dark.a.4" | "indigo.dark.a.5" | "indigo.dark.a.6" | "indigo.dark.a.7" | "indigo.dark.a.8" | "indigo.dark.a.9" | "indigo.dark.a.10" | "indigo.dark.a.11" | "indigo.dark.a.12" | "indigo.dark.p3.1" | "indigo.dark.p3.2" | "indigo.dark.p3.3" | "indigo.dark.p3.4" | "indigo.dark.p3.5" | "indigo.dark.p3.6" | "indigo.dark.p3.7" | "indigo.dark.p3.8" | "indigo.dark.p3.9" | "indigo.dark.p3.10" | "indigo.dark.p3.11" | "indigo.dark.p3.12" | "indigo.dark.p3.a.1" | "indigo.dark.p3.a.2" | "indigo.dark.p3.a.3" | "indigo.dark.p3.a.4" | "indigo.dark.p3.a.5" | "indigo.dark.p3.a.6" | "indigo.dark.p3.a.7" | "indigo.dark.p3.a.8" | "indigo.dark.p3.a.9" | "indigo.dark.p3.a.10" | "indigo.dark.p3.a.11" | "indigo.dark.p3.a.12" | "indigo.a.1" | "indigo.a.2" | "indigo.a.3" | "indigo.a.4" | "indigo.a.5" | "indigo.a.6" | "indigo.a.7" | "indigo.a.8" | "indigo.a.9" | "indigo.a.10" | "indigo.a.11" | "indigo.a.12" | "indigo.p3.1" | "indigo.p3.2" | "indigo.p3.3" | "indigo.p3.4" | "indigo.p3.5" | "indigo.p3.6" | "indigo.p3.7" | "indigo.p3.8" | "indigo.p3.9" | "indigo.p3.10" | "indigo.p3.11" | "indigo.p3.12" | "indigo.p3.a.1" | "indigo.p3.a.2" | "indigo.p3.a.3" | "indigo.p3.a.4" | "indigo.p3.a.5" | "indigo.p3.a.6" | "indigo.p3.a.7" | "indigo.p3.a.8" | "indigo.p3.a.9" | "indigo.p3.a.10" | "indigo.p3.a.11" | "indigo.p3.a.12" | "lime.1" | "lime.2" | "lime.3" | "lime.4" | "lime.5" | "lime.6" | "lime.7" | "lime.8" | "lime.9" | "lime.10" | "lime.11" | "lime.12" | "lime.light.1" | "lime.light.2" | "lime.light.3" | "lime.light.4" | "lime.light.5" | "lime.light.6" | "lime.light.7" | "lime.light.8" | "lime.light.9" | "lime.light.10" | "lime.light.11" | "lime.light.12" | "lime.light.a.1" | "lime.light.a.2" | "lime.light.a.3" | "lime.light.a.4" | "lime.light.a.5" | "lime.light.a.6" | "lime.light.a.7" | "lime.light.a.8" | "lime.light.a.9" | "lime.light.a.10" | "lime.light.a.11" | "lime.light.a.12" | "lime.light.p3.1" | "lime.light.p3.2" | "lime.light.p3.3" | "lime.light.p3.4" | "lime.light.p3.5" | "lime.light.p3.6" | "lime.light.p3.7" | "lime.light.p3.8" | "lime.light.p3.9" | "lime.light.p3.10" | "lime.light.p3.11" | "lime.light.p3.12" | "lime.light.p3.a.1" | "lime.light.p3.a.2" | "lime.light.p3.a.3" | "lime.light.p3.a.4" | "lime.light.p3.a.5" | "lime.light.p3.a.6" | "lime.light.p3.a.7" | "lime.light.p3.a.8" | "lime.light.p3.a.9" | "lime.light.p3.a.10" | "lime.light.p3.a.11" | "lime.light.p3.a.12" | "lime.dark.1" | "lime.dark.2" | "lime.dark.3" | "lime.dark.4" | "lime.dark.5" | "lime.dark.6" | "lime.dark.7" | "lime.dark.8" | "lime.dark.9" | "lime.dark.10" | "lime.dark.11" | "lime.dark.12" | "lime.dark.a.1" | "lime.dark.a.2" | "lime.dark.a.3" | "lime.dark.a.4" | "lime.dark.a.5" | "lime.dark.a.6" | "lime.dark.a.7" | "lime.dark.a.8" | "lime.dark.a.9" | "lime.dark.a.10" | "lime.dark.a.11" | "lime.dark.a.12" | "lime.dark.p3.1" | "lime.dark.p3.2" | "lime.dark.p3.3" | "lime.dark.p3.4" | "lime.dark.p3.5" | "lime.dark.p3.6" | "lime.dark.p3.7" | "lime.dark.p3.8" | "lime.dark.p3.9" | "lime.dark.p3.10" | "lime.dark.p3.11" | "lime.dark.p3.12" | "lime.dark.p3.a.1" | "lime.dark.p3.a.2" | "lime.dark.p3.a.3" | "lime.dark.p3.a.4" | "lime.dark.p3.a.5" | "lime.dark.p3.a.6" | "lime.dark.p3.a.7" | "lime.dark.p3.a.8" | "lime.dark.p3.a.9" | "lime.dark.p3.a.10" | "lime.dark.p3.a.11" | "lime.dark.p3.a.12" | "lime.a.1" | "lime.a.2" | "lime.a.3" | "lime.a.4" | "lime.a.5" | "lime.a.6" | "lime.a.7" | "lime.a.8" | "lime.a.9" | "lime.a.10" | "lime.a.11" | "lime.a.12" | "lime.p3.1" | "lime.p3.2" | "lime.p3.3" | "lime.p3.4" | "lime.p3.5" | "lime.p3.6" | "lime.p3.7" | "lime.p3.8" | "lime.p3.9" | "lime.p3.10" | "lime.p3.11" | "lime.p3.12" | "lime.p3.a.1" | "lime.p3.a.2" | "lime.p3.a.3" | "lime.p3.a.4" | "lime.p3.a.5" | "lime.p3.a.6" | "lime.p3.a.7" | "lime.p3.a.8" | "lime.p3.a.9" | "lime.p3.a.10" | "lime.p3.a.11" | "lime.p3.a.12" | "orange.1" | "orange.2" | "orange.3" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "orange.11" | "orange.12" | "orange.light.1" | "orange.light.2" | "orange.light.3" | "orange.light.4" | "orange.light.5" | "orange.light.6" | "orange.light.7" | "orange.light.8" | "orange.light.9" | "orange.light.10" | "orange.light.11" | "orange.light.12" | "orange.light.a.1" | "orange.light.a.2" | "orange.light.a.3" | "orange.light.a.4" | "orange.light.a.5" | "orange.light.a.6" | "orange.light.a.7" | "orange.light.a.8" | "orange.light.a.9" | "orange.light.a.10" | "orange.light.a.11" | "orange.light.a.12" | "orange.light.p3.1" | "orange.light.p3.2" | "orange.light.p3.3" | "orange.light.p3.4" | "orange.light.p3.5" | "orange.light.p3.6" | "orange.light.p3.7" | "orange.light.p3.8" | "orange.light.p3.9" | "orange.light.p3.10" | "orange.light.p3.11" | "orange.light.p3.12" | "orange.light.p3.a.1" | "orange.light.p3.a.2" | "orange.light.p3.a.3" | "orange.light.p3.a.4" | "orange.light.p3.a.5" | "orange.light.p3.a.6" | "orange.light.p3.a.7" | "orange.light.p3.a.8" | "orange.light.p3.a.9" | "orange.light.p3.a.10" | "orange.light.p3.a.11" | "orange.light.p3.a.12" | "orange.dark.1" | "orange.dark.2" | "orange.dark.3" | "orange.dark.4" | "orange.dark.5" | "orange.dark.6" | "orange.dark.7" | "orange.dark.8" | "orange.dark.9" | "orange.dark.10" | "orange.dark.11" | "orange.dark.12" | "orange.dark.a.1" | "orange.dark.a.2" | "orange.dark.a.3" | "orange.dark.a.4" | "orange.dark.a.5" | "orange.dark.a.6" | "orange.dark.a.7" | "orange.dark.a.8" | "orange.dark.a.9" | "orange.dark.a.10" | "orange.dark.a.11" | "orange.dark.a.12" | "orange.dark.p3.1" | "orange.dark.p3.2" | "orange.dark.p3.3" | "orange.dark.p3.4" | "orange.dark.p3.5" | "orange.dark.p3.6" | "orange.dark.p3.7" | "orange.dark.p3.8" | "orange.dark.p3.9" | "orange.dark.p3.10" | "orange.dark.p3.11" | "orange.dark.p3.12" | "orange.dark.p3.a.1" | "orange.dark.p3.a.2" | "orange.dark.p3.a.3" | "orange.dark.p3.a.4" | "orange.dark.p3.a.5" | "orange.dark.p3.a.6" | "orange.dark.p3.a.7" | "orange.dark.p3.a.8" | "orange.dark.p3.a.9" | "orange.dark.p3.a.10" | "orange.dark.p3.a.11" | "orange.dark.p3.a.12" | "orange.a.1" | "orange.a.2" | "orange.a.3" | "orange.a.4" | "orange.a.5" | "orange.a.6" | "orange.a.7" | "orange.a.8" | "orange.a.9" | "orange.a.10" | "orange.a.11" | "orange.a.12" | "orange.p3.1" | "orange.p3.2" | "orange.p3.3" | "orange.p3.4" | "orange.p3.5" | "orange.p3.6" | "orange.p3.7" | "orange.p3.8" | "orange.p3.9" | "orange.p3.10" | "orange.p3.11" | "orange.p3.12" | "orange.p3.a.1" | "orange.p3.a.2" | "orange.p3.a.3" | "orange.p3.a.4" | "orange.p3.a.5" | "orange.p3.a.6" | "orange.p3.a.7" | "orange.p3.a.8" | "orange.p3.a.9" | "orange.p3.a.10" | "orange.p3.a.11" | "orange.p3.a.12" | "pink.1" | "pink.2" | "pink.3" | "pink.4" | "pink.5" | "pink.6" | "pink.7" | "pink.8" | "pink.9" | "pink.10" | "pink.11" | "pink.12" | "pink.light.1" | "pink.light.2" | "pink.light.3" | "pink.light.4" | "pink.light.5" | "pink.light.6" | "pink.light.7" | "pink.light.8" | "pink.light.9" | "pink.light.10" | "pink.light.11" | "pink.light.12" | "pink.light.a.1" | "pink.light.a.2" | "pink.light.a.3" | "pink.light.a.4" | "pink.light.a.5" | "pink.light.a.6" | "pink.light.a.7" | "pink.light.a.8" | "pink.light.a.9" | "pink.light.a.10" | "pink.light.a.11" | "pink.light.a.12" | "pink.light.p3.1" | "pink.light.p3.2" | "pink.light.p3.3" | "pink.light.p3.4" | "pink.light.p3.5" | "pink.light.p3.6" | "pink.light.p3.7" | "pink.light.p3.8" | "pink.light.p3.9" | "pink.light.p3.10" | "pink.light.p3.11" | "pink.light.p3.12" | "pink.light.p3.a.1" | "pink.light.p3.a.2" | "pink.light.p3.a.3" | "pink.light.p3.a.4" | "pink.light.p3.a.5" | "pink.light.p3.a.6" | "pink.light.p3.a.7" | "pink.light.p3.a.8" | "pink.light.p3.a.9" | "pink.light.p3.a.10" | "pink.light.p3.a.11" | "pink.light.p3.a.12" | "pink.dark.1" | "pink.dark.2" | "pink.dark.3" | "pink.dark.4" | "pink.dark.5" | "pink.dark.6" | "pink.dark.7" | "pink.dark.8" | "pink.dark.9" | "pink.dark.10" | "pink.dark.11" | "pink.dark.12" | "pink.dark.a.1" | "pink.dark.a.2" | "pink.dark.a.3" | "pink.dark.a.4" | "pink.dark.a.5" | "pink.dark.a.6" | "pink.dark.a.7" | "pink.dark.a.8" | "pink.dark.a.9" | "pink.dark.a.10" | "pink.dark.a.11" | "pink.dark.a.12" | "pink.dark.p3.1" | "pink.dark.p3.2" | "pink.dark.p3.3" | "pink.dark.p3.4" | "pink.dark.p3.5" | "pink.dark.p3.6" | "pink.dark.p3.7" | "pink.dark.p3.8" | "pink.dark.p3.9" | "pink.dark.p3.10" | "pink.dark.p3.11" | "pink.dark.p3.12" | "pink.dark.p3.a.1" | "pink.dark.p3.a.2" | "pink.dark.p3.a.3" | "pink.dark.p3.a.4" | "pink.dark.p3.a.5" | "pink.dark.p3.a.6" | "pink.dark.p3.a.7" | "pink.dark.p3.a.8" | "pink.dark.p3.a.9" | "pink.dark.p3.a.10" | "pink.dark.p3.a.11" | "pink.dark.p3.a.12" | "pink.a.1" | "pink.a.2" | "pink.a.3" | "pink.a.4" | "pink.a.5" | "pink.a.6" | "pink.a.7" | "pink.a.8" | "pink.a.9" | "pink.a.10" | "pink.a.11" | "pink.a.12" | "pink.p3.1" | "pink.p3.2" | "pink.p3.3" | "pink.p3.4" | "pink.p3.5" | "pink.p3.6" | "pink.p3.7" | "pink.p3.8" | "pink.p3.9" | "pink.p3.10" | "pink.p3.11" | "pink.p3.12" | "pink.p3.a.1" | "pink.p3.a.2" | "pink.p3.a.3" | "pink.p3.a.4" | "pink.p3.a.5" | "pink.p3.a.6" | "pink.p3.a.7" | "pink.p3.a.8" | "pink.p3.a.9" | "pink.p3.a.10" | "pink.p3.a.11" | "pink.p3.a.12" | "purple.1" | "purple.2" | "purple.3" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "purple.11" | "purple.12" | "purple.light.1" | "purple.light.2" | "purple.light.3" | "purple.light.4" | "purple.light.5" | "purple.light.6" | "purple.light.7" | "purple.light.8" | "purple.light.9" | "purple.light.10" | "purple.light.11" | "purple.light.12" | "purple.light.a.1" | "purple.light.a.2" | "purple.light.a.3" | "purple.light.a.4" | "purple.light.a.5" | "purple.light.a.6" | "purple.light.a.7" | "purple.light.a.8" | "purple.light.a.9" | "purple.light.a.10" | "purple.light.a.11" | "purple.light.a.12" | "purple.light.p3.1" | "purple.light.p3.2" | "purple.light.p3.3" | "purple.light.p3.4" | "purple.light.p3.5" | "purple.light.p3.6" | "purple.light.p3.7" | "purple.light.p3.8" | "purple.light.p3.9" | "purple.light.p3.10" | "purple.light.p3.11" | "purple.light.p3.12" | "purple.light.p3.a.1" | "purple.light.p3.a.2" | "purple.light.p3.a.3" | "purple.light.p3.a.4" | "purple.light.p3.a.5" | "purple.light.p3.a.6" | "purple.light.p3.a.7" | "purple.light.p3.a.8" | "purple.light.p3.a.9" | "purple.light.p3.a.10" | "purple.light.p3.a.11" | "purple.light.p3.a.12" | "purple.dark.1" | "purple.dark.2" | "purple.dark.3" | "purple.dark.4" | "purple.dark.5" | "purple.dark.6" | "purple.dark.7" | "purple.dark.8" | "purple.dark.9" | "purple.dark.10" | "purple.dark.11" | "purple.dark.12" | "purple.dark.a.1" | "purple.dark.a.2" | "purple.dark.a.3" | "purple.dark.a.4" | "purple.dark.a.5" | "purple.dark.a.6" | "purple.dark.a.7" | "purple.dark.a.8" | "purple.dark.a.9" | "purple.dark.a.10" | "purple.dark.a.11" | "purple.dark.a.12" | "purple.dark.p3.1" | "purple.dark.p3.2" | "purple.dark.p3.3" | "purple.dark.p3.4" | "purple.dark.p3.5" | "purple.dark.p3.6" | "purple.dark.p3.7" | "purple.dark.p3.8" | "purple.dark.p3.9" | "purple.dark.p3.10" | "purple.dark.p3.11" | "purple.dark.p3.12" | "purple.dark.p3.a.1" | "purple.dark.p3.a.2" | "purple.dark.p3.a.3" | "purple.dark.p3.a.4" | "purple.dark.p3.a.5" | "purple.dark.p3.a.6" | "purple.dark.p3.a.7" | "purple.dark.p3.a.8" | "purple.dark.p3.a.9" | "purple.dark.p3.a.10" | "purple.dark.p3.a.11" | "purple.dark.p3.a.12" | "purple.a.1" | "purple.a.2" | "purple.a.3" | "purple.a.4" | "purple.a.5" | "purple.a.6" | "purple.a.7" | "purple.a.8" | "purple.a.9" | "purple.a.10" | "purple.a.11" | "purple.a.12" | "purple.p3.1" | "purple.p3.2" | "purple.p3.3" | "purple.p3.4" | "purple.p3.5" | "purple.p3.6" | "purple.p3.7" | "purple.p3.8" | "purple.p3.9" | "purple.p3.10" | "purple.p3.11" | "purple.p3.12" | "purple.p3.a.1" | "purple.p3.a.2" | "purple.p3.a.3" | "purple.p3.a.4" | "purple.p3.a.5" | "purple.p3.a.6" | "purple.p3.a.7" | "purple.p3.a.8" | "purple.p3.a.9" | "purple.p3.a.10" | "purple.p3.a.11" | "purple.p3.a.12" | "red.1" | "red.2" | "red.3" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "red.11" | "red.12" | "red.light.1" | "red.light.2" | "red.light.3" | "red.light.4" | "red.light.5" | "red.light.6" | "red.light.7" | "red.light.8" | "red.light.9" | "red.light.10" | "red.light.11" | "red.light.12" | "red.light.a.1" | "red.light.a.2" | "red.light.a.3" | "red.light.a.4" | "red.light.a.5" | "red.light.a.6" | "red.light.a.7" | "red.light.a.8" | "red.light.a.9" | "red.light.a.10" | "red.light.a.11" | "red.light.a.12" | "red.light.p3.1" | "red.light.p3.2" | "red.light.p3.3" | "red.light.p3.4" | "red.light.p3.5" | "red.light.p3.6" | "red.light.p3.7" | "red.light.p3.8" | "red.light.p3.9" | "red.light.p3.10" | "red.light.p3.11" | "red.light.p3.12" | "red.light.p3.a.1" | "red.light.p3.a.2" | "red.light.p3.a.3" | "red.light.p3.a.4" | "red.light.p3.a.5" | "red.light.p3.a.6" | "red.light.p3.a.7" | "red.light.p3.a.8" | "red.light.p3.a.9" | "red.light.p3.a.10" | "red.light.p3.a.11" | "red.light.p3.a.12" | "red.dark.1" | "red.dark.2" | "red.dark.3" | "red.dark.4" | "red.dark.5" | "red.dark.6" | "red.dark.7" | "red.dark.8" | "red.dark.9" | "red.dark.10" | "red.dark.11" | "red.dark.12" | "red.dark.a.1" | "red.dark.a.2" | "red.dark.a.3" | "red.dark.a.4" | "red.dark.a.5" | "red.dark.a.6" | "red.dark.a.7" | "red.dark.a.8" | "red.dark.a.9" | "red.dark.a.10" | "red.dark.a.11" | "red.dark.a.12" | "red.dark.p3.1" | "red.dark.p3.2" | "red.dark.p3.3" | "red.dark.p3.4" | "red.dark.p3.5" | "red.dark.p3.6" | "red.dark.p3.7" | "red.dark.p3.8" | "red.dark.p3.9" | "red.dark.p3.10" | "red.dark.p3.11" | "red.dark.p3.12" | "red.dark.p3.a.1" | "red.dark.p3.a.2" | "red.dark.p3.a.3" | "red.dark.p3.a.4" | "red.dark.p3.a.5" | "red.dark.p3.a.6" | "red.dark.p3.a.7" | "red.dark.p3.a.8" | "red.dark.p3.a.9" | "red.dark.p3.a.10" | "red.dark.p3.a.11" | "red.dark.p3.a.12" | "red.a.1" | "red.a.2" | "red.a.3" | "red.a.4" | "red.a.5" | "red.a.6" | "red.a.7" | "red.a.8" | "red.a.9" | "red.a.10" | "red.a.11" | "red.a.12" | "red.p3.1" | "red.p3.2" | "red.p3.3" | "red.p3.4" | "red.p3.5" | "red.p3.6" | "red.p3.7" | "red.p3.8" | "red.p3.9" | "red.p3.10" | "red.p3.11" | "red.p3.12" | "red.p3.a.1" | "red.p3.a.2" | "red.p3.a.3" | "red.p3.a.4" | "red.p3.a.5" | "red.p3.a.6" | "red.p3.a.7" | "red.p3.a.8" | "red.p3.a.9" | "red.p3.a.10" | "red.p3.a.11" | "red.p3.a.12" | "ruby.1" | "ruby.2" | "ruby.3" | "ruby.4" | "ruby.5" | "ruby.6" | "ruby.7" | "ruby.8" | "ruby.9" | "ruby.10" | "ruby.11" | "ruby.12" | "ruby.light.1" | "ruby.light.2" | "ruby.light.3" | "ruby.light.4" | "ruby.light.5" | "ruby.light.6" | "ruby.light.7" | "ruby.light.8" | "ruby.light.9" | "ruby.light.10" | "ruby.light.11" | "ruby.light.12" | "ruby.light.a.1" | "ruby.light.a.2" | "ruby.light.a.3" | "ruby.light.a.4" | "ruby.light.a.5" | "ruby.light.a.6" | "ruby.light.a.7" | "ruby.light.a.8" | "ruby.light.a.9" | "ruby.light.a.10" | "ruby.light.a.11" | "ruby.light.a.12" | "ruby.light.p3.1" | "ruby.light.p3.2" | "ruby.light.p3.3" | "ruby.light.p3.4" | "ruby.light.p3.5" | "ruby.light.p3.6" | "ruby.light.p3.7" | "ruby.light.p3.8" | "ruby.light.p3.9" | "ruby.light.p3.10" | "ruby.light.p3.11" | "ruby.light.p3.12" | "ruby.light.p3.a.1" | "ruby.light.p3.a.2" | "ruby.light.p3.a.3" | "ruby.light.p3.a.4" | "ruby.light.p3.a.5" | "ruby.light.p3.a.6" | "ruby.light.p3.a.7" | "ruby.light.p3.a.8" | "ruby.light.p3.a.9" | "ruby.light.p3.a.10" | "ruby.light.p3.a.11" | "ruby.light.p3.a.12" | "ruby.dark.1" | "ruby.dark.2" | "ruby.dark.3" | "ruby.dark.4" | "ruby.dark.5" | "ruby.dark.6" | "ruby.dark.7" | "ruby.dark.8" | "ruby.dark.9" | "ruby.dark.10" | "ruby.dark.11" | "ruby.dark.12" | "ruby.dark.a.1" | "ruby.dark.a.2" | "ruby.dark.a.3" | "ruby.dark.a.4" | "ruby.dark.a.5" | "ruby.dark.a.6" | "ruby.dark.a.7" | "ruby.dark.a.8" | "ruby.dark.a.9" | "ruby.dark.a.10" | "ruby.dark.a.11" | "ruby.dark.a.12" | "ruby.dark.p3.1" | "ruby.dark.p3.2" | "ruby.dark.p3.3" | "ruby.dark.p3.4" | "ruby.dark.p3.5" | "ruby.dark.p3.6" | "ruby.dark.p3.7" | "ruby.dark.p3.8" | "ruby.dark.p3.9" | "ruby.dark.p3.10" | "ruby.dark.p3.11" | "ruby.dark.p3.12" | "ruby.dark.p3.a.1" | "ruby.dark.p3.a.2" | "ruby.dark.p3.a.3" | "ruby.dark.p3.a.4" | "ruby.dark.p3.a.5" | "ruby.dark.p3.a.6" | "ruby.dark.p3.a.7" | "ruby.dark.p3.a.8" | "ruby.dark.p3.a.9" | "ruby.dark.p3.a.10" | "ruby.dark.p3.a.11" | "ruby.dark.p3.a.12" | "ruby.a.1" | "ruby.a.2" | "ruby.a.3" | "ruby.a.4" | "ruby.a.5" | "ruby.a.6" | "ruby.a.7" | "ruby.a.8" | "ruby.a.9" | "ruby.a.10" | "ruby.a.11" | "ruby.a.12" | "ruby.p3.1" | "ruby.p3.2" | "ruby.p3.3" | "ruby.p3.4" | "ruby.p3.5" | "ruby.p3.6" | "ruby.p3.7" | "ruby.p3.8" | "ruby.p3.9" | "ruby.p3.10" | "ruby.p3.11" | "ruby.p3.12" | "ruby.p3.a.1" | "ruby.p3.a.2" | "ruby.p3.a.3" | "ruby.p3.a.4" | "ruby.p3.a.5" | "ruby.p3.a.6" | "ruby.p3.a.7" | "ruby.p3.a.8" | "ruby.p3.a.9" | "ruby.p3.a.10" | "ruby.p3.a.11" | "ruby.p3.a.12" | "teal.1" | "teal.2" | "teal.3" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "teal.11" | "teal.12" | "teal.light.1" | "teal.light.2" | "teal.light.3" | "teal.light.4" | "teal.light.5" | "teal.light.6" | "teal.light.7" | "teal.light.8" | "teal.light.9" | "teal.light.10" | "teal.light.11" | "teal.light.12" | "teal.light.a.1" | "teal.light.a.2" | "teal.light.a.3" | "teal.light.a.4" | "teal.light.a.5" | "teal.light.a.6" | "teal.light.a.7" | "teal.light.a.8" | "teal.light.a.9" | "teal.light.a.10" | "teal.light.a.11" | "teal.light.a.12" | "teal.light.p3.1" | "teal.light.p3.2" | "teal.light.p3.3" | "teal.light.p3.4" | "teal.light.p3.5" | "teal.light.p3.6" | "teal.light.p3.7" | "teal.light.p3.8" | "teal.light.p3.9" | "teal.light.p3.10" | "teal.light.p3.11" | "teal.light.p3.12" | "teal.light.p3.a.1" | "teal.light.p3.a.2" | "teal.light.p3.a.3" | "teal.light.p3.a.4" | "teal.light.p3.a.5" | "teal.light.p3.a.6" | "teal.light.p3.a.7" | "teal.light.p3.a.8" | "teal.light.p3.a.9" | "teal.light.p3.a.10" | "teal.light.p3.a.11" | "teal.light.p3.a.12" | "teal.dark.1" | "teal.dark.2" | "teal.dark.3" | "teal.dark.4" | "teal.dark.5" | "teal.dark.6" | "teal.dark.7" | "teal.dark.8" | "teal.dark.9" | "teal.dark.10" | "teal.dark.11" | "teal.dark.12" | "teal.dark.a.1" | "teal.dark.a.2" | "teal.dark.a.3" | "teal.dark.a.4" | "teal.dark.a.5" | "teal.dark.a.6" | "teal.dark.a.7" | "teal.dark.a.8" | "teal.dark.a.9" | "teal.dark.a.10" | "teal.dark.a.11" | "teal.dark.a.12" | "teal.dark.p3.1" | "teal.dark.p3.2" | "teal.dark.p3.3" | "teal.dark.p3.4" | "teal.dark.p3.5" | "teal.dark.p3.6" | "teal.dark.p3.7" | "teal.dark.p3.8" | "teal.dark.p3.9" | "teal.dark.p3.10" | "teal.dark.p3.11" | "teal.dark.p3.12" | "teal.dark.p3.a.1" | "teal.dark.p3.a.2" | "teal.dark.p3.a.3" | "teal.dark.p3.a.4" | "teal.dark.p3.a.5" | "teal.dark.p3.a.6" | "teal.dark.p3.a.7" | "teal.dark.p3.a.8" | "teal.dark.p3.a.9" | "teal.dark.p3.a.10" | "teal.dark.p3.a.11" | "teal.dark.p3.a.12" | "teal.a.1" | "teal.a.2" | "teal.a.3" | "teal.a.4" | "teal.a.5" | "teal.a.6" | "teal.a.7" | "teal.a.8" | "teal.a.9" | "teal.a.10" | "teal.a.11" | "teal.a.12" | "teal.p3.1" | "teal.p3.2" | "teal.p3.3" | "teal.p3.4" | "teal.p3.5" | "teal.p3.6" | "teal.p3.7" | "teal.p3.8" | "teal.p3.9" | "teal.p3.10" | "teal.p3.11" | "teal.p3.12" | "teal.p3.a.1" | "teal.p3.a.2" | "teal.p3.a.3" | "teal.p3.a.4" | "teal.p3.a.5" | "teal.p3.a.6" | "teal.p3.a.7" | "teal.p3.a.8" | "teal.p3.a.9" | "teal.p3.a.10" | "teal.p3.a.11" | "teal.p3.a.12" | "tomato.1" | "tomato.2" | "tomato.3" | "tomato.4" | "tomato.5" | "tomato.6" | "tomato.7" | "tomato.8" | "tomato.9" | "tomato.10" | "tomato.11" | "tomato.12" | "tomato.light.1" | "tomato.light.2" | "tomato.light.3" | "tomato.light.4" | "tomato.light.5" | "tomato.light.6" | "tomato.light.7" | "tomato.light.8" | "tomato.light.9" | "tomato.light.10" | "tomato.light.11" | "tomato.light.12" | "tomato.light.a.1" | "tomato.light.a.2" | "tomato.light.a.3" | "tomato.light.a.4" | "tomato.light.a.5" | "tomato.light.a.6" | "tomato.light.a.7" | "tomato.light.a.8" | "tomato.light.a.9" | "tomato.light.a.10" | "tomato.light.a.11" | "tomato.light.a.12" | "tomato.light.p3.1" | "tomato.light.p3.2" | "tomato.light.p3.3" | "tomato.light.p3.4" | "tomato.light.p3.5" | "tomato.light.p3.6" | "tomato.light.p3.7" | "tomato.light.p3.8" | "tomato.light.p3.9" | "tomato.light.p3.10" | "tomato.light.p3.11" | "tomato.light.p3.12" | "tomato.light.p3.a.1" | "tomato.light.p3.a.2" | "tomato.light.p3.a.3" | "tomato.light.p3.a.4" | "tomato.light.p3.a.5" | "tomato.light.p3.a.6" | "tomato.light.p3.a.7" | "tomato.light.p3.a.8" | "tomato.light.p3.a.9" | "tomato.light.p3.a.10" | "tomato.light.p3.a.11" | "tomato.light.p3.a.12" | "tomato.dark.1" | "tomato.dark.2" | "tomato.dark.3" | "tomato.dark.4" | "tomato.dark.5" | "tomato.dark.6" | "tomato.dark.7" | "tomato.dark.8" | "tomato.dark.9" | "tomato.dark.10" | "tomato.dark.11" | "tomato.dark.12" | "tomato.dark.a.1" | "tomato.dark.a.2" | "tomato.dark.a.3" | "tomato.dark.a.4" | "tomato.dark.a.5" | "tomato.dark.a.6" | "tomato.dark.a.7" | "tomato.dark.a.8" | "tomato.dark.a.9" | "tomato.dark.a.10" | "tomato.dark.a.11" | "tomato.dark.a.12" | "tomato.dark.p3.1" | "tomato.dark.p3.2" | "tomato.dark.p3.3" | "tomato.dark.p3.4" | "tomato.dark.p3.5" | "tomato.dark.p3.6" | "tomato.dark.p3.7" | "tomato.dark.p3.8" | "tomato.dark.p3.9" | "tomato.dark.p3.10" | "tomato.dark.p3.11" | "tomato.dark.p3.12" | "tomato.dark.p3.a.1" | "tomato.dark.p3.a.2" | "tomato.dark.p3.a.3" | "tomato.dark.p3.a.4" | "tomato.dark.p3.a.5" | "tomato.dark.p3.a.6" | "tomato.dark.p3.a.7" | "tomato.dark.p3.a.8" | "tomato.dark.p3.a.9" | "tomato.dark.p3.a.10" | "tomato.dark.p3.a.11" | "tomato.dark.p3.a.12" | "tomato.a.1" | "tomato.a.2" | "tomato.a.3" | "tomato.a.4" | "tomato.a.5" | "tomato.a.6" | "tomato.a.7" | "tomato.a.8" | "tomato.a.9" | "tomato.a.10" | "tomato.a.11" | "tomato.a.12" | "tomato.p3.1" | "tomato.p3.2" | "tomato.p3.3" | "tomato.p3.4" | "tomato.p3.5" | "tomato.p3.6" | "tomato.p3.7" | "tomato.p3.8" | "tomato.p3.9" | "tomato.p3.10" | "tomato.p3.11" | "tomato.p3.12" | "tomato.p3.a.1" | "tomato.p3.a.2" | "tomato.p3.a.3" | "tomato.p3.a.4" | "tomato.p3.a.5" | "tomato.p3.a.6" | "tomato.p3.a.7" | "tomato.p3.a.8" | "tomato.p3.a.9" | "tomato.p3.a.10" | "tomato.p3.a.11" | "tomato.p3.a.12" | "violet.1" | "violet.2" | "violet.3" | "violet.4" | "violet.5" | "violet.6" | "violet.7" | "violet.8" | "violet.9" | "violet.10" | "violet.11" | "violet.12" | "violet.light.1" | "violet.light.2" | "violet.light.3" | "violet.light.4" | "violet.light.5" | "violet.light.6" | "violet.light.7" | "violet.light.8" | "violet.light.9" | "violet.light.10" | "violet.light.11" | "violet.light.12" | "violet.light.a.1" | "violet.light.a.2" | "violet.light.a.3" | "violet.light.a.4" | "violet.light.a.5" | "violet.light.a.6" | "violet.light.a.7" | "violet.light.a.8" | "violet.light.a.9" | "violet.light.a.10" | "violet.light.a.11" | "violet.light.a.12" | "violet.light.p3.1" | "violet.light.p3.2" | "violet.light.p3.3" | "violet.light.p3.4" | "violet.light.p3.5" | "violet.light.p3.6" | "violet.light.p3.7" | "violet.light.p3.8" | "violet.light.p3.9" | "violet.light.p3.10" | "violet.light.p3.11" | "violet.light.p3.12" | "violet.light.p3.a.1" | "violet.light.p3.a.2" | "violet.light.p3.a.3" | "violet.light.p3.a.4" | "violet.light.p3.a.5" | "violet.light.p3.a.6" | "violet.light.p3.a.7" | "violet.light.p3.a.8" | "violet.light.p3.a.9" | "violet.light.p3.a.10" | "violet.light.p3.a.11" | "violet.light.p3.a.12" | "violet.dark.1" | "violet.dark.2" | "violet.dark.3" | "violet.dark.4" | "violet.dark.5" | "violet.dark.6" | "violet.dark.7" | "violet.dark.8" | "violet.dark.9" | "violet.dark.10" | "violet.dark.11" | "violet.dark.12" | "violet.dark.a.1" | "violet.dark.a.2" | "violet.dark.a.3" | "violet.dark.a.4" | "violet.dark.a.5" | "violet.dark.a.6" | "violet.dark.a.7" | "violet.dark.a.8" | "violet.dark.a.9" | "violet.dark.a.10" | "violet.dark.a.11" | "violet.dark.a.12" | "violet.dark.p3.1" | "violet.dark.p3.2" | "violet.dark.p3.3" | "violet.dark.p3.4" | "violet.dark.p3.5" | "violet.dark.p3.6" | "violet.dark.p3.7" | "violet.dark.p3.8" | "violet.dark.p3.9" | "violet.dark.p3.10" | "violet.dark.p3.11" | "violet.dark.p3.12" | "violet.dark.p3.a.1" | "violet.dark.p3.a.2" | "violet.dark.p3.a.3" | "violet.dark.p3.a.4" | "violet.dark.p3.a.5" | "violet.dark.p3.a.6" | "violet.dark.p3.a.7" | "violet.dark.p3.a.8" | "violet.dark.p3.a.9" | "violet.dark.p3.a.10" | "violet.dark.p3.a.11" | "violet.dark.p3.a.12" | "violet.a.1" | "violet.a.2" | "violet.a.3" | "violet.a.4" | "violet.a.5" | "violet.a.6" | "violet.a.7" | "violet.a.8" | "violet.a.9" | "violet.a.10" | "violet.a.11" | "violet.a.12" | "violet.p3.1" | "violet.p3.2" | "violet.p3.3" | "violet.p3.4" | "violet.p3.5" | "violet.p3.6" | "violet.p3.7" | "violet.p3.8" | "violet.p3.9" | "violet.p3.10" | "violet.p3.11" | "violet.p3.12" | "violet.p3.a.1" | "violet.p3.a.2" | "violet.p3.a.3" | "violet.p3.a.4" | "violet.p3.a.5" | "violet.p3.a.6" | "violet.p3.a.7" | "violet.p3.a.8" | "violet.p3.a.9" | "violet.p3.a.10" | "violet.p3.a.11" | "violet.p3.a.12" | "yellow.1" | "yellow.2" | "yellow.3" | "yellow.4" | "yellow.5" | "yellow.6" | "yellow.7" | "yellow.8" | "yellow.9" | "yellow.10" | "yellow.11" | "yellow.12" | "yellow.light.1" | "yellow.light.2" | "yellow.light.3" | "yellow.light.4" | "yellow.light.5" | "yellow.light.6" | "yellow.light.7" | "yellow.light.8" | "yellow.light.9" | "yellow.light.10" | "yellow.light.11" | "yellow.light.12" | "yellow.light.a.1" | "yellow.light.a.2" | "yellow.light.a.3" | "yellow.light.a.4" | "yellow.light.a.5" | "yellow.light.a.6" | "yellow.light.a.7" | "yellow.light.a.8" | "yellow.light.a.9" | "yellow.light.a.10" | "yellow.light.a.11" | "yellow.light.a.12" | "yellow.light.p3.1" | "yellow.light.p3.2" | "yellow.light.p3.3" | "yellow.light.p3.4" | "yellow.light.p3.5" | "yellow.light.p3.6" | "yellow.light.p3.7" | "yellow.light.p3.8" | "yellow.light.p3.9" | "yellow.light.p3.10" | "yellow.light.p3.11" | "yellow.light.p3.12" | "yellow.light.p3.a.1" | "yellow.light.p3.a.2" | "yellow.light.p3.a.3" | "yellow.light.p3.a.4" | "yellow.light.p3.a.5" | "yellow.light.p3.a.6" | "yellow.light.p3.a.7" | "yellow.light.p3.a.8" | "yellow.light.p3.a.9" | "yellow.light.p3.a.10" | "yellow.light.p3.a.11" | "yellow.light.p3.a.12" | "yellow.dark.1" | "yellow.dark.2" | "yellow.dark.3" | "yellow.dark.4" | "yellow.dark.5" | "yellow.dark.6" | "yellow.dark.7" | "yellow.dark.8" | "yellow.dark.9" | "yellow.dark.10" | "yellow.dark.11" | "yellow.dark.12" | "yellow.dark.a.1" | "yellow.dark.a.2" | "yellow.dark.a.3" | "yellow.dark.a.4" | "yellow.dark.a.5" | "yellow.dark.a.6" | "yellow.dark.a.7" | "yellow.dark.a.8" | "yellow.dark.a.9" | "yellow.dark.a.10" | "yellow.dark.a.11" | "yellow.dark.a.12" | "yellow.dark.p3.1" | "yellow.dark.p3.2" | "yellow.dark.p3.3" | "yellow.dark.p3.4" | "yellow.dark.p3.5" | "yellow.dark.p3.6" | "yellow.dark.p3.7" | "yellow.dark.p3.8" | "yellow.dark.p3.9" | "yellow.dark.p3.10" | "yellow.dark.p3.11" | "yellow.dark.p3.12" | "yellow.dark.p3.a.1" | "yellow.dark.p3.a.2" | "yellow.dark.p3.a.3" | "yellow.dark.p3.a.4" | "yellow.dark.p3.a.5" | "yellow.dark.p3.a.6" | "yellow.dark.p3.a.7" | "yellow.dark.p3.a.8" | "yellow.dark.p3.a.9" | "yellow.dark.p3.a.10" | "yellow.dark.p3.a.11" | "yellow.dark.p3.a.12" | "yellow.a.1" | "yellow.a.2" | "yellow.a.3" | "yellow.a.4" | "yellow.a.5" | "yellow.a.6" | "yellow.a.7" | "yellow.a.8" | "yellow.a.9" | "yellow.a.10" | "yellow.a.11" | "yellow.a.12" | "yellow.p3.1" | "yellow.p3.2" | "yellow.p3.3" | "yellow.p3.4" | "yellow.p3.5" | "yellow.p3.6" | "yellow.p3.7" | "yellow.p3.8" | "yellow.p3.9" | "yellow.p3.10" | "yellow.p3.11" | "yellow.p3.12" | "yellow.p3.a.1" | "yellow.p3.a.2" | "yellow.p3.a.3" | "yellow.p3.a.4" | "yellow.p3.a.5" | "yellow.p3.a.6" | "yellow.p3.a.7" | "yellow.p3.a.8" | "yellow.p3.a.9" | "yellow.p3.a.10" | "yellow.p3.a.11" | "yellow.p3.a.12" | "likec4.background" | "likec4.tag.bg" | "likec4.tag.bg.hover" | "likec4.tag.border" | "likec4.tag.text" | "likec4.panel.bg" | "likec4.panel.bg.whenPanning" | "likec4.panel.border" | "likec4.panel.action-icon.text" | "likec4.panel.action-icon.text.hover" | "likec4.panel.action-icon.text.disabled" | "likec4.panel.action-icon.bg" | "likec4.panel.action-icon.bg.hover" | "likec4.dropdown.bg" | "likec4.dropdown.border" | "likec4.overlay.backdrop" | "likec4.overlay.body" | "likec4.overlay.border" | "likec4.background.pattern" | "likec4.mixColor" | "colorPalette.colors.primary" | "colorPalette.primary" | "colorPalette" | "colorPalette.colors.primary.filled" | "colorPalette.primary.filled" | "colorPalette.filled" | "colorPalette.colors.primary.filledHover" | "colorPalette.primary.filledHover" | "colorPalette.filledHover" | "colorPalette.colors.primary.light" | "colorPalette.primary.light" | "colorPalette.light" | "colorPalette.colors.primary.lightHover" | "colorPalette.primary.lightHover" | "colorPalette.lightHover" | "colorPalette.colors.primary.lightColor" | "colorPalette.primary.lightColor" | "colorPalette.lightColor" | "colorPalette.colors.primary.outline" | "colorPalette.primary.outline" | "colorPalette.outline" | "colorPalette.colors.primary.outlineHover" | "colorPalette.primary.outlineHover" | "colorPalette.outlineHover" | "colorPalette.colors.primary[0]" | "colorPalette.primary[0]" | "colorPalette.colors.primary[1]" | "colorPalette.primary[1]" | "colorPalette.colors.primary[2]" | "colorPalette.primary[2]" | "colorPalette.colors.primary[3]" | "colorPalette.primary[3]" | "colorPalette.colors.primary[4]" | "colorPalette.primary[4]" | "colorPalette.colors.primary[5]" | "colorPalette.primary[5]" | "colorPalette.colors.primary[6]" | "colorPalette.primary[6]" | "colorPalette.colors.primary[7]" | "colorPalette.primary[7]" | "colorPalette.colors.primary[8]" | "colorPalette.primary[8]" | "colorPalette.colors.primary[9]" | "colorPalette.primary[9]" | "colorPalette.colors.white" | "colorPalette.white" | "colorPalette.colors.text" | "colorPalette.text" | "colorPalette.colors.body" | "colorPalette.body" | "colorPalette.colors.dimmed" | "colorPalette.dimmed" | "colorPalette.colors.defaultBorder" | "colorPalette.defaultBorder" | "colorPalette.colors.defaultColor" | "colorPalette.defaultColor" | "colorPalette.colors.defaultHover" | "colorPalette.defaultHover" | "colorPalette.colors.default" | "colorPalette.default" | "colorPalette.colors.error" | "colorPalette.error" | "colorPalette.colors.placeholder" | "colorPalette.placeholder" | "colorPalette.colors.gray" | "colorPalette.gray" | "colorPalette.colors.gray.filled" | "colorPalette.gray.filled" | "colorPalette.colors.gray.filledHover" | "colorPalette.gray.filledHover" | "colorPalette.colors.gray.light" | "colorPalette.gray.light" | "colorPalette.colors.gray.lightHover" | "colorPalette.gray.lightHover" | "colorPalette.colors.gray.lightColor" | "colorPalette.gray.lightColor" | "colorPalette.colors.gray.outline" | "colorPalette.gray.outline" | "colorPalette.colors.gray.outlineHover" | "colorPalette.gray.outlineHover" | "colorPalette.colors.gray[0]" | "colorPalette.gray[0]" | "colorPalette.colors.gray[1]" | "colorPalette.gray[1]" | "colorPalette.colors.gray[2]" | "colorPalette.gray[2]" | "colorPalette.colors.gray[3]" | "colorPalette.gray[3]" | "colorPalette.colors.gray[4]" | "colorPalette.gray[4]" | "colorPalette.colors.gray[5]" | "colorPalette.gray[5]" | "colorPalette.colors.gray[6]" | "colorPalette.gray[6]" | "colorPalette.colors.gray[7]" | "colorPalette.gray[7]" | "colorPalette.colors.gray[8]" | "colorPalette.gray[8]" | "colorPalette.colors.gray[9]" | "colorPalette.gray[9]" | "colorPalette.colors.dark" | "colorPalette.dark" | "colorPalette.colors.dark.filled" | "colorPalette.dark.filled" | "colorPalette.colors.dark.filledHover" | "colorPalette.dark.filledHover" | "colorPalette.colors.dark.light" | "colorPalette.dark.light" | "colorPalette.colors.dark.lightHover" | "colorPalette.dark.lightHover" | "colorPalette.colors.dark.lightColor" | "colorPalette.dark.lightColor" | "colorPalette.colors.dark.outline" | "colorPalette.dark.outline" | "colorPalette.colors.dark.outlineHover" | "colorPalette.dark.outlineHover" | "colorPalette.colors.dark[0]" | "colorPalette.dark[0]" | "colorPalette.colors.dark[1]" | "colorPalette.dark[1]" | "colorPalette.colors.dark[2]" | "colorPalette.dark[2]" | "colorPalette.colors.dark[3]" | "colorPalette.dark[3]" | "colorPalette.colors.dark[4]" | "colorPalette.dark[4]" | "colorPalette.colors.dark[5]" | "colorPalette.dark[5]" | "colorPalette.colors.dark[6]" | "colorPalette.dark[6]" | "colorPalette.colors.dark[7]" | "colorPalette.dark[7]" | "colorPalette.colors.dark[8]" | "colorPalette.dark[8]" | "colorPalette.colors.dark[9]" | "colorPalette.dark[9]" | "colorPalette.colors.orange" | "colorPalette.orange" | "colorPalette.colors.orange.filled" | "colorPalette.orange.filled" | "colorPalette.colors.orange.filledHover" | "colorPalette.orange.filledHover" | "colorPalette.colors.orange.light" | "colorPalette.orange.light" | "colorPalette.colors.orange.lightHover" | "colorPalette.orange.lightHover" | "colorPalette.colors.orange.lightColor" | "colorPalette.orange.lightColor" | "colorPalette.colors.orange.outline" | "colorPalette.orange.outline" | "colorPalette.colors.orange.outlineHover" | "colorPalette.orange.outlineHover" | "colorPalette.colors.orange[0]" | "colorPalette.orange[0]" | "colorPalette.colors.orange[1]" | "colorPalette.orange[1]" | "colorPalette.colors.orange[2]" | "colorPalette.orange[2]" | "colorPalette.colors.orange[3]" | "colorPalette.orange[3]" | "colorPalette.colors.orange[4]" | "colorPalette.orange[4]" | "colorPalette.colors.orange[5]" | "colorPalette.orange[5]" | "colorPalette.colors.orange[6]" | "colorPalette.orange[6]" | "colorPalette.colors.orange[7]" | "colorPalette.orange[7]" | "colorPalette.colors.orange[8]" | "colorPalette.orange[8]" | "colorPalette.colors.orange[9]" | "colorPalette.orange[9]" | "colorPalette.colors.teal" | "colorPalette.teal" | "colorPalette.colors.teal.filled" | "colorPalette.teal.filled" | "colorPalette.colors.teal.filledHover" | "colorPalette.teal.filledHover" | "colorPalette.colors.teal.light" | "colorPalette.teal.light" | "colorPalette.colors.teal.lightHover" | "colorPalette.teal.lightHover" | "colorPalette.colors.teal.lightColor" | "colorPalette.teal.lightColor" | "colorPalette.colors.teal.outline" | "colorPalette.teal.outline" | "colorPalette.colors.teal.outlineHover" | "colorPalette.teal.outlineHover" | "colorPalette.colors.teal[0]" | "colorPalette.teal[0]" | "colorPalette.colors.teal[1]" | "colorPalette.teal[1]" | "colorPalette.colors.teal[2]" | "colorPalette.teal[2]" | "colorPalette.colors.teal[3]" | "colorPalette.teal[3]" | "colorPalette.colors.teal[4]" | "colorPalette.teal[4]" | "colorPalette.colors.teal[5]" | "colorPalette.teal[5]" | "colorPalette.colors.teal[6]" | "colorPalette.teal[6]" | "colorPalette.colors.teal[7]" | "colorPalette.teal[7]" | "colorPalette.colors.teal[8]" | "colorPalette.teal[8]" | "colorPalette.colors.teal[9]" | "colorPalette.teal[9]" | "colorPalette.colors.red" | "colorPalette.red" | "colorPalette.colors.red.filled" | "colorPalette.red.filled" | "colorPalette.colors.red.filledHover" | "colorPalette.red.filledHover" | "colorPalette.colors.red.light" | "colorPalette.red.light" | "colorPalette.colors.red.lightHover" | "colorPalette.red.lightHover" | "colorPalette.colors.red.lightColor" | "colorPalette.red.lightColor" | "colorPalette.colors.red.outline" | "colorPalette.red.outline" | "colorPalette.colors.red.outlineHover" | "colorPalette.red.outlineHover" | "colorPalette.colors.red[0]" | "colorPalette.red[0]" | "colorPalette.colors.red[1]" | "colorPalette.red[1]" | "colorPalette.colors.red[2]" | "colorPalette.red[2]" | "colorPalette.colors.red[3]" | "colorPalette.red[3]" | "colorPalette.colors.red[4]" | "colorPalette.red[4]" | "colorPalette.colors.red[5]" | "colorPalette.red[5]" | "colorPalette.colors.red[6]" | "colorPalette.red[6]" | "colorPalette.colors.red[7]" | "colorPalette.red[7]" | "colorPalette.colors.red[8]" | "colorPalette.red[8]" | "colorPalette.colors.red[9]" | "colorPalette.red[9]" | "colorPalette.colors.green" | "colorPalette.green" | "colorPalette.colors.green.filled" | "colorPalette.green.filled" | "colorPalette.colors.green.filledHover" | "colorPalette.green.filledHover" | "colorPalette.colors.green.light" | "colorPalette.green.light" | "colorPalette.colors.green.lightHover" | "colorPalette.green.lightHover" | "colorPalette.colors.green.lightColor" | "colorPalette.green.lightColor" | "colorPalette.colors.green.outline" | "colorPalette.green.outline" | "colorPalette.colors.green.outlineHover" | "colorPalette.green.outlineHover" | "colorPalette.colors.green[0]" | "colorPalette.green[0]" | "colorPalette.colors.green[1]" | "colorPalette.green[1]" | "colorPalette.colors.green[2]" | "colorPalette.green[2]" | "colorPalette.colors.green[3]" | "colorPalette.green[3]" | "colorPalette.colors.green[4]" | "colorPalette.green[4]" | "colorPalette.colors.green[5]" | "colorPalette.green[5]" | "colorPalette.colors.green[6]" | "colorPalette.green[6]" | "colorPalette.colors.green[7]" | "colorPalette.green[7]" | "colorPalette.colors.green[8]" | "colorPalette.green[8]" | "colorPalette.colors.green[9]" | "colorPalette.green[9]" | "colorPalette.colors.yellow" | "colorPalette.yellow" | "colorPalette.colors.yellow.filled" | "colorPalette.yellow.filled" | "colorPalette.colors.yellow.filledHover" | "colorPalette.yellow.filledHover" | "colorPalette.colors.yellow.light" | "colorPalette.yellow.light" | "colorPalette.colors.yellow.lightHover" | "colorPalette.yellow.lightHover" | "colorPalette.colors.yellow.lightColor" | "colorPalette.yellow.lightColor" | "colorPalette.colors.yellow.outline" | "colorPalette.yellow.outline" | "colorPalette.colors.yellow.outlineHover" | "colorPalette.yellow.outlineHover" | "colorPalette.colors.yellow[0]" | "colorPalette.yellow[0]" | "colorPalette.colors.yellow[1]" | "colorPalette.yellow[1]" | "colorPalette.colors.yellow[2]" | "colorPalette.yellow[2]" | "colorPalette.colors.yellow[3]" | "colorPalette.yellow[3]" | "colorPalette.colors.yellow[4]" | "colorPalette.yellow[4]" | "colorPalette.colors.yellow[5]" | "colorPalette.yellow[5]" | "colorPalette.colors.yellow[6]" | "colorPalette.yellow[6]" | "colorPalette.colors.yellow[7]" | "colorPalette.yellow[7]" | "colorPalette.colors.yellow[8]" | "colorPalette.yellow[8]" | "colorPalette.colors.yellow[9]" | "colorPalette.yellow[9]" | "colorPalette.1" | "colorPalette.2" | "colorPalette.3" | "colorPalette.4" | "colorPalette.5" | "colorPalette.6" | "colorPalette.7" | "colorPalette.8" | "colorPalette.9" | "colorPalette.10" | "colorPalette.11" | "colorPalette.12" | "colorPalette.light.1" | "colorPalette.light.2" | "colorPalette.light.3" | "colorPalette.light.4" | "colorPalette.light.5" | "colorPalette.light.6" | "colorPalette.light.7" | "colorPalette.light.8" | "colorPalette.light.9" | "colorPalette.light.10" | "colorPalette.light.11" | "colorPalette.light.12" | "colorPalette.light.a.1" | "colorPalette.a.1" | "colorPalette.light.a.2" | "colorPalette.a.2" | "colorPalette.light.a.3" | "colorPalette.a.3" | "colorPalette.light.a.4" | "colorPalette.a.4" | "colorPalette.light.a.5" | "colorPalette.a.5" | "colorPalette.light.a.6" | "colorPalette.a.6" | "colorPalette.light.a.7" | "colorPalette.a.7" | "colorPalette.light.a.8" | "colorPalette.a.8" | "colorPalette.light.a.9" | "colorPalette.a.9" | "colorPalette.light.a.10" | "colorPalette.a.10" | "colorPalette.light.a.11" | "colorPalette.a.11" | "colorPalette.light.a.12" | "colorPalette.a.12" | "colorPalette.light.p3.1" | "colorPalette.p3.1" | "colorPalette.light.p3.2" | "colorPalette.p3.2" | "colorPalette.light.p3.3" | "colorPalette.p3.3" | "colorPalette.light.p3.4" | "colorPalette.p3.4" | "colorPalette.light.p3.5" | "colorPalette.p3.5" | "colorPalette.light.p3.6" | "colorPalette.p3.6" | "colorPalette.light.p3.7" | "colorPalette.p3.7" | "colorPalette.light.p3.8" | "colorPalette.p3.8" | "colorPalette.light.p3.9" | "colorPalette.p3.9" | "colorPalette.light.p3.10" | "colorPalette.p3.10" | "colorPalette.light.p3.11" | "colorPalette.p3.11" | "colorPalette.light.p3.12" | "colorPalette.p3.12" | "colorPalette.light.p3.a.1" | "colorPalette.p3.a.1" | "colorPalette.light.p3.a.2" | "colorPalette.p3.a.2" | "colorPalette.light.p3.a.3" | "colorPalette.p3.a.3" | "colorPalette.light.p3.a.4" | "colorPalette.p3.a.4" | "colorPalette.light.p3.a.5" | "colorPalette.p3.a.5" | "colorPalette.light.p3.a.6" | "colorPalette.p3.a.6" | "colorPalette.light.p3.a.7" | "colorPalette.p3.a.7" | "colorPalette.light.p3.a.8" | "colorPalette.p3.a.8" | "colorPalette.light.p3.a.9" | "colorPalette.p3.a.9" | "colorPalette.light.p3.a.10" | "colorPalette.p3.a.10" | "colorPalette.light.p3.a.11" | "colorPalette.p3.a.11" | "colorPalette.light.p3.a.12" | "colorPalette.p3.a.12" | "colorPalette.dark.1" | "colorPalette.dark.2" | "colorPalette.dark.3" | "colorPalette.dark.4" | "colorPalette.dark.5" | "colorPalette.dark.6" | "colorPalette.dark.7" | "colorPalette.dark.8" | "colorPalette.dark.9" | "colorPalette.dark.10" | "colorPalette.dark.11" | "colorPalette.dark.12" | "colorPalette.dark.a.1" | "colorPalette.dark.a.2" | "colorPalette.dark.a.3" | "colorPalette.dark.a.4" | "colorPalette.dark.a.5" | "colorPalette.dark.a.6" | "colorPalette.dark.a.7" | "colorPalette.dark.a.8" | "colorPalette.dark.a.9" | "colorPalette.dark.a.10" | "colorPalette.dark.a.11" | "colorPalette.dark.a.12" | "colorPalette.dark.p3.1" | "colorPalette.dark.p3.2" | "colorPalette.dark.p3.3" | "colorPalette.dark.p3.4" | "colorPalette.dark.p3.5" | "colorPalette.dark.p3.6" | "colorPalette.dark.p3.7" | "colorPalette.dark.p3.8" | "colorPalette.dark.p3.9" | "colorPalette.dark.p3.10" | "colorPalette.dark.p3.11" | "colorPalette.dark.p3.12" | "colorPalette.dark.p3.a.1" | "colorPalette.dark.p3.a.2" | "colorPalette.dark.p3.a.3" | "colorPalette.dark.p3.a.4" | "colorPalette.dark.p3.a.5" | "colorPalette.dark.p3.a.6" | "colorPalette.dark.p3.a.7" | "colorPalette.dark.p3.a.8" | "colorPalette.dark.p3.a.9" | "colorPalette.dark.p3.a.10" | "colorPalette.dark.p3.a.11" | "colorPalette.dark.p3.a.12" | "colorPalette.background" | "colorPalette.background.pattern" | "colorPalette.pattern" | "colorPalette.mixColor" | "colorPalette.tag.bg" | "colorPalette.bg" | "colorPalette.tag.bg.hover" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.tag.border" | "colorPalette.border" | "colorPalette.tag.text" | "colorPalette.panel.bg" | "colorPalette.panel.bg.whenPanning" | "colorPalette.bg.whenPanning" | "colorPalette.whenPanning" | "colorPalette.panel.border" | "colorPalette.panel.action-icon.text" | "colorPalette.action-icon.text" | "colorPalette.panel.action-icon.text.hover" | "colorPalette.action-icon.text.hover" | "colorPalette.text.hover" | "colorPalette.panel.action-icon.text.disabled" | "colorPalette.action-icon.text.disabled" | "colorPalette.text.disabled" | "colorPalette.disabled" | "colorPalette.panel.action-icon.bg" | "colorPalette.action-icon.bg" | "colorPalette.panel.action-icon.bg.hover" | "colorPalette.action-icon.bg.hover" | "colorPalette.dropdown.bg" | "colorPalette.dropdown.border" | "colorPalette.overlay.backdrop" | "colorPalette.backdrop" | "colorPalette.overlay.body" | "colorPalette.overlay.border"
|
|
12
|
+
export type ColorToken = "mantine.colors.primary" | "mantine.colors.primary.filled" | "mantine.colors.primary.filledHover" | "mantine.colors.primary.light" | "mantine.colors.primary.lightHover" | "mantine.colors.primary.lightColor" | "mantine.colors.primary.outline" | "mantine.colors.primary.outlineHover" | "mantine.colors.primary[0]" | "mantine.colors.primary[1]" | "mantine.colors.primary[2]" | "mantine.colors.primary[3]" | "mantine.colors.primary[4]" | "mantine.colors.primary[5]" | "mantine.colors.primary[6]" | "mantine.colors.primary[7]" | "mantine.colors.primary[8]" | "mantine.colors.primary[9]" | "mantine.colors.white" | "mantine.colors.text" | "mantine.colors.body" | "mantine.colors.dimmed" | "mantine.colors.defaultBorder" | "mantine.colors.defaultColor" | "mantine.colors.defaultHover" | "mantine.colors.default" | "mantine.colors.error" | "mantine.colors.placeholder" | "mantine.colors.gray" | "mantine.colors.gray.filled" | "mantine.colors.gray.filledHover" | "mantine.colors.gray.light" | "mantine.colors.gray.lightHover" | "mantine.colors.gray.lightColor" | "mantine.colors.gray.outline" | "mantine.colors.gray.outlineHover" | "mantine.colors.gray[0]" | "mantine.colors.gray[1]" | "mantine.colors.gray[2]" | "mantine.colors.gray[3]" | "mantine.colors.gray[4]" | "mantine.colors.gray[5]" | "mantine.colors.gray[6]" | "mantine.colors.gray[7]" | "mantine.colors.gray[8]" | "mantine.colors.gray[9]" | "mantine.colors.dark" | "mantine.colors.dark.filled" | "mantine.colors.dark.filledHover" | "mantine.colors.dark.light" | "mantine.colors.dark.lightHover" | "mantine.colors.dark.lightColor" | "mantine.colors.dark.outline" | "mantine.colors.dark.outlineHover" | "mantine.colors.dark[0]" | "mantine.colors.dark[1]" | "mantine.colors.dark[2]" | "mantine.colors.dark[3]" | "mantine.colors.dark[4]" | "mantine.colors.dark[5]" | "mantine.colors.dark[6]" | "mantine.colors.dark[7]" | "mantine.colors.dark[8]" | "mantine.colors.dark[9]" | "mantine.colors.orange" | "mantine.colors.orange.filled" | "mantine.colors.orange.filledHover" | "mantine.colors.orange.light" | "mantine.colors.orange.lightHover" | "mantine.colors.orange.lightColor" | "mantine.colors.orange.outline" | "mantine.colors.orange.outlineHover" | "mantine.colors.orange[0]" | "mantine.colors.orange[1]" | "mantine.colors.orange[2]" | "mantine.colors.orange[3]" | "mantine.colors.orange[4]" | "mantine.colors.orange[5]" | "mantine.colors.orange[6]" | "mantine.colors.orange[7]" | "mantine.colors.orange[8]" | "mantine.colors.orange[9]" | "mantine.colors.teal" | "mantine.colors.teal.filled" | "mantine.colors.teal.filledHover" | "mantine.colors.teal.light" | "mantine.colors.teal.lightHover" | "mantine.colors.teal.lightColor" | "mantine.colors.teal.outline" | "mantine.colors.teal.outlineHover" | "mantine.colors.teal[0]" | "mantine.colors.teal[1]" | "mantine.colors.teal[2]" | "mantine.colors.teal[3]" | "mantine.colors.teal[4]" | "mantine.colors.teal[5]" | "mantine.colors.teal[6]" | "mantine.colors.teal[7]" | "mantine.colors.teal[8]" | "mantine.colors.teal[9]" | "mantine.colors.red" | "mantine.colors.red.filled" | "mantine.colors.red.filledHover" | "mantine.colors.red.light" | "mantine.colors.red.lightHover" | "mantine.colors.red.lightColor" | "mantine.colors.red.outline" | "mantine.colors.red.outlineHover" | "mantine.colors.red[0]" | "mantine.colors.red[1]" | "mantine.colors.red[2]" | "mantine.colors.red[3]" | "mantine.colors.red[4]" | "mantine.colors.red[5]" | "mantine.colors.red[6]" | "mantine.colors.red[7]" | "mantine.colors.red[8]" | "mantine.colors.red[9]" | "mantine.colors.green" | "mantine.colors.green.filled" | "mantine.colors.green.filledHover" | "mantine.colors.green.light" | "mantine.colors.green.lightHover" | "mantine.colors.green.lightColor" | "mantine.colors.green.outline" | "mantine.colors.green.outlineHover" | "mantine.colors.green[0]" | "mantine.colors.green[1]" | "mantine.colors.green[2]" | "mantine.colors.green[3]" | "mantine.colors.green[4]" | "mantine.colors.green[5]" | "mantine.colors.green[6]" | "mantine.colors.green[7]" | "mantine.colors.green[8]" | "mantine.colors.green[9]" | "mantine.colors.yellow" | "mantine.colors.yellow.filled" | "mantine.colors.yellow.filledHover" | "mantine.colors.yellow.light" | "mantine.colors.yellow.lightHover" | "mantine.colors.yellow.lightColor" | "mantine.colors.yellow.outline" | "mantine.colors.yellow.outlineHover" | "mantine.colors.yellow[0]" | "mantine.colors.yellow[1]" | "mantine.colors.yellow[2]" | "mantine.colors.yellow[3]" | "mantine.colors.yellow[4]" | "mantine.colors.yellow[5]" | "mantine.colors.yellow[6]" | "mantine.colors.yellow[7]" | "mantine.colors.yellow[8]" | "mantine.colors.yellow[9]" | "transparent" | "none" | "amber.1" | "amber.2" | "amber.3" | "amber.4" | "amber.5" | "amber.6" | "amber.7" | "amber.8" | "amber.9" | "amber.10" | "amber.11" | "amber.12" | "amber.light.1" | "amber.light.2" | "amber.light.3" | "amber.light.4" | "amber.light.5" | "amber.light.6" | "amber.light.7" | "amber.light.8" | "amber.light.9" | "amber.light.10" | "amber.light.11" | "amber.light.12" | "amber.light.a.1" | "amber.light.a.2" | "amber.light.a.3" | "amber.light.a.4" | "amber.light.a.5" | "amber.light.a.6" | "amber.light.a.7" | "amber.light.a.8" | "amber.light.a.9" | "amber.light.a.10" | "amber.light.a.11" | "amber.light.a.12" | "amber.light.p3.1" | "amber.light.p3.2" | "amber.light.p3.3" | "amber.light.p3.4" | "amber.light.p3.5" | "amber.light.p3.6" | "amber.light.p3.7" | "amber.light.p3.8" | "amber.light.p3.9" | "amber.light.p3.10" | "amber.light.p3.11" | "amber.light.p3.12" | "amber.light.p3.a.1" | "amber.light.p3.a.2" | "amber.light.p3.a.3" | "amber.light.p3.a.4" | "amber.light.p3.a.5" | "amber.light.p3.a.6" | "amber.light.p3.a.7" | "amber.light.p3.a.8" | "amber.light.p3.a.9" | "amber.light.p3.a.10" | "amber.light.p3.a.11" | "amber.light.p3.a.12" | "amber.dark.1" | "amber.dark.2" | "amber.dark.3" | "amber.dark.4" | "amber.dark.5" | "amber.dark.6" | "amber.dark.7" | "amber.dark.8" | "amber.dark.9" | "amber.dark.10" | "amber.dark.11" | "amber.dark.12" | "amber.dark.a.1" | "amber.dark.a.2" | "amber.dark.a.3" | "amber.dark.a.4" | "amber.dark.a.5" | "amber.dark.a.6" | "amber.dark.a.7" | "amber.dark.a.8" | "amber.dark.a.9" | "amber.dark.a.10" | "amber.dark.a.11" | "amber.dark.a.12" | "amber.dark.p3.1" | "amber.dark.p3.2" | "amber.dark.p3.3" | "amber.dark.p3.4" | "amber.dark.p3.5" | "amber.dark.p3.6" | "amber.dark.p3.7" | "amber.dark.p3.8" | "amber.dark.p3.9" | "amber.dark.p3.10" | "amber.dark.p3.11" | "amber.dark.p3.12" | "amber.dark.p3.a.1" | "amber.dark.p3.a.2" | "amber.dark.p3.a.3" | "amber.dark.p3.a.4" | "amber.dark.p3.a.5" | "amber.dark.p3.a.6" | "amber.dark.p3.a.7" | "amber.dark.p3.a.8" | "amber.dark.p3.a.9" | "amber.dark.p3.a.10" | "amber.dark.p3.a.11" | "amber.dark.p3.a.12" | "amber.a.1" | "amber.a.2" | "amber.a.3" | "amber.a.4" | "amber.a.5" | "amber.a.6" | "amber.a.7" | "amber.a.8" | "amber.a.9" | "amber.a.10" | "amber.a.11" | "amber.a.12" | "amber.p3.1" | "amber.p3.2" | "amber.p3.3" | "amber.p3.4" | "amber.p3.5" | "amber.p3.6" | "amber.p3.7" | "amber.p3.8" | "amber.p3.9" | "amber.p3.10" | "amber.p3.11" | "amber.p3.12" | "amber.p3.a.1" | "amber.p3.a.2" | "amber.p3.a.3" | "amber.p3.a.4" | "amber.p3.a.5" | "amber.p3.a.6" | "amber.p3.a.7" | "amber.p3.a.8" | "amber.p3.a.9" | "amber.p3.a.10" | "amber.p3.a.11" | "amber.p3.a.12" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "blue.11" | "blue.12" | "blue.light.1" | "blue.light.2" | "blue.light.3" | "blue.light.4" | "blue.light.5" | "blue.light.6" | "blue.light.7" | "blue.light.8" | "blue.light.9" | "blue.light.10" | "blue.light.11" | "blue.light.12" | "blue.light.a.1" | "blue.light.a.2" | "blue.light.a.3" | "blue.light.a.4" | "blue.light.a.5" | "blue.light.a.6" | "blue.light.a.7" | "blue.light.a.8" | "blue.light.a.9" | "blue.light.a.10" | "blue.light.a.11" | "blue.light.a.12" | "blue.light.p3.1" | "blue.light.p3.2" | "blue.light.p3.3" | "blue.light.p3.4" | "blue.light.p3.5" | "blue.light.p3.6" | "blue.light.p3.7" | "blue.light.p3.8" | "blue.light.p3.9" | "blue.light.p3.10" | "blue.light.p3.11" | "blue.light.p3.12" | "blue.light.p3.a.1" | "blue.light.p3.a.2" | "blue.light.p3.a.3" | "blue.light.p3.a.4" | "blue.light.p3.a.5" | "blue.light.p3.a.6" | "blue.light.p3.a.7" | "blue.light.p3.a.8" | "blue.light.p3.a.9" | "blue.light.p3.a.10" | "blue.light.p3.a.11" | "blue.light.p3.a.12" | "blue.dark.1" | "blue.dark.2" | "blue.dark.3" | "blue.dark.4" | "blue.dark.5" | "blue.dark.6" | "blue.dark.7" | "blue.dark.8" | "blue.dark.9" | "blue.dark.10" | "blue.dark.11" | "blue.dark.12" | "blue.dark.a.1" | "blue.dark.a.2" | "blue.dark.a.3" | "blue.dark.a.4" | "blue.dark.a.5" | "blue.dark.a.6" | "blue.dark.a.7" | "blue.dark.a.8" | "blue.dark.a.9" | "blue.dark.a.10" | "blue.dark.a.11" | "blue.dark.a.12" | "blue.dark.p3.1" | "blue.dark.p3.2" | "blue.dark.p3.3" | "blue.dark.p3.4" | "blue.dark.p3.5" | "blue.dark.p3.6" | "blue.dark.p3.7" | "blue.dark.p3.8" | "blue.dark.p3.9" | "blue.dark.p3.10" | "blue.dark.p3.11" | "blue.dark.p3.12" | "blue.dark.p3.a.1" | "blue.dark.p3.a.2" | "blue.dark.p3.a.3" | "blue.dark.p3.a.4" | "blue.dark.p3.a.5" | "blue.dark.p3.a.6" | "blue.dark.p3.a.7" | "blue.dark.p3.a.8" | "blue.dark.p3.a.9" | "blue.dark.p3.a.10" | "blue.dark.p3.a.11" | "blue.dark.p3.a.12" | "blue.a.1" | "blue.a.2" | "blue.a.3" | "blue.a.4" | "blue.a.5" | "blue.a.6" | "blue.a.7" | "blue.a.8" | "blue.a.9" | "blue.a.10" | "blue.a.11" | "blue.a.12" | "blue.p3.1" | "blue.p3.2" | "blue.p3.3" | "blue.p3.4" | "blue.p3.5" | "blue.p3.6" | "blue.p3.7" | "blue.p3.8" | "blue.p3.9" | "blue.p3.10" | "blue.p3.11" | "blue.p3.12" | "blue.p3.a.1" | "blue.p3.a.2" | "blue.p3.a.3" | "blue.p3.a.4" | "blue.p3.a.5" | "blue.p3.a.6" | "blue.p3.a.7" | "blue.p3.a.8" | "blue.p3.a.9" | "blue.p3.a.10" | "blue.p3.a.11" | "blue.p3.a.12" | "crimson.1" | "crimson.2" | "crimson.3" | "crimson.4" | "crimson.5" | "crimson.6" | "crimson.7" | "crimson.8" | "crimson.9" | "crimson.10" | "crimson.11" | "crimson.12" | "crimson.light.1" | "crimson.light.2" | "crimson.light.3" | "crimson.light.4" | "crimson.light.5" | "crimson.light.6" | "crimson.light.7" | "crimson.light.8" | "crimson.light.9" | "crimson.light.10" | "crimson.light.11" | "crimson.light.12" | "crimson.light.a.1" | "crimson.light.a.2" | "crimson.light.a.3" | "crimson.light.a.4" | "crimson.light.a.5" | "crimson.light.a.6" | "crimson.light.a.7" | "crimson.light.a.8" | "crimson.light.a.9" | "crimson.light.a.10" | "crimson.light.a.11" | "crimson.light.a.12" | "crimson.light.p3.1" | "crimson.light.p3.2" | "crimson.light.p3.3" | "crimson.light.p3.4" | "crimson.light.p3.5" | "crimson.light.p3.6" | "crimson.light.p3.7" | "crimson.light.p3.8" | "crimson.light.p3.9" | "crimson.light.p3.10" | "crimson.light.p3.11" | "crimson.light.p3.12" | "crimson.light.p3.a.1" | "crimson.light.p3.a.2" | "crimson.light.p3.a.3" | "crimson.light.p3.a.4" | "crimson.light.p3.a.5" | "crimson.light.p3.a.6" | "crimson.light.p3.a.7" | "crimson.light.p3.a.8" | "crimson.light.p3.a.9" | "crimson.light.p3.a.10" | "crimson.light.p3.a.11" | "crimson.light.p3.a.12" | "crimson.dark.1" | "crimson.dark.2" | "crimson.dark.3" | "crimson.dark.4" | "crimson.dark.5" | "crimson.dark.6" | "crimson.dark.7" | "crimson.dark.8" | "crimson.dark.9" | "crimson.dark.10" | "crimson.dark.11" | "crimson.dark.12" | "crimson.dark.a.1" | "crimson.dark.a.2" | "crimson.dark.a.3" | "crimson.dark.a.4" | "crimson.dark.a.5" | "crimson.dark.a.6" | "crimson.dark.a.7" | "crimson.dark.a.8" | "crimson.dark.a.9" | "crimson.dark.a.10" | "crimson.dark.a.11" | "crimson.dark.a.12" | "crimson.dark.p3.1" | "crimson.dark.p3.2" | "crimson.dark.p3.3" | "crimson.dark.p3.4" | "crimson.dark.p3.5" | "crimson.dark.p3.6" | "crimson.dark.p3.7" | "crimson.dark.p3.8" | "crimson.dark.p3.9" | "crimson.dark.p3.10" | "crimson.dark.p3.11" | "crimson.dark.p3.12" | "crimson.dark.p3.a.1" | "crimson.dark.p3.a.2" | "crimson.dark.p3.a.3" | "crimson.dark.p3.a.4" | "crimson.dark.p3.a.5" | "crimson.dark.p3.a.6" | "crimson.dark.p3.a.7" | "crimson.dark.p3.a.8" | "crimson.dark.p3.a.9" | "crimson.dark.p3.a.10" | "crimson.dark.p3.a.11" | "crimson.dark.p3.a.12" | "crimson.a.1" | "crimson.a.2" | "crimson.a.3" | "crimson.a.4" | "crimson.a.5" | "crimson.a.6" | "crimson.a.7" | "crimson.a.8" | "crimson.a.9" | "crimson.a.10" | "crimson.a.11" | "crimson.a.12" | "crimson.p3.1" | "crimson.p3.2" | "crimson.p3.3" | "crimson.p3.4" | "crimson.p3.5" | "crimson.p3.6" | "crimson.p3.7" | "crimson.p3.8" | "crimson.p3.9" | "crimson.p3.10" | "crimson.p3.11" | "crimson.p3.12" | "crimson.p3.a.1" | "crimson.p3.a.2" | "crimson.p3.a.3" | "crimson.p3.a.4" | "crimson.p3.a.5" | "crimson.p3.a.6" | "crimson.p3.a.7" | "crimson.p3.a.8" | "crimson.p3.a.9" | "crimson.p3.a.10" | "crimson.p3.a.11" | "crimson.p3.a.12" | "grass.1" | "grass.2" | "grass.3" | "grass.4" | "grass.5" | "grass.6" | "grass.7" | "grass.8" | "grass.9" | "grass.10" | "grass.11" | "grass.12" | "grass.light.1" | "grass.light.2" | "grass.light.3" | "grass.light.4" | "grass.light.5" | "grass.light.6" | "grass.light.7" | "grass.light.8" | "grass.light.9" | "grass.light.10" | "grass.light.11" | "grass.light.12" | "grass.light.a.1" | "grass.light.a.2" | "grass.light.a.3" | "grass.light.a.4" | "grass.light.a.5" | "grass.light.a.6" | "grass.light.a.7" | "grass.light.a.8" | "grass.light.a.9" | "grass.light.a.10" | "grass.light.a.11" | "grass.light.a.12" | "grass.light.p3.1" | "grass.light.p3.2" | "grass.light.p3.3" | "grass.light.p3.4" | "grass.light.p3.5" | "grass.light.p3.6" | "grass.light.p3.7" | "grass.light.p3.8" | "grass.light.p3.9" | "grass.light.p3.10" | "grass.light.p3.11" | "grass.light.p3.12" | "grass.light.p3.a.1" | "grass.light.p3.a.2" | "grass.light.p3.a.3" | "grass.light.p3.a.4" | "grass.light.p3.a.5" | "grass.light.p3.a.6" | "grass.light.p3.a.7" | "grass.light.p3.a.8" | "grass.light.p3.a.9" | "grass.light.p3.a.10" | "grass.light.p3.a.11" | "grass.light.p3.a.12" | "grass.dark.1" | "grass.dark.2" | "grass.dark.3" | "grass.dark.4" | "grass.dark.5" | "grass.dark.6" | "grass.dark.7" | "grass.dark.8" | "grass.dark.9" | "grass.dark.10" | "grass.dark.11" | "grass.dark.12" | "grass.dark.a.1" | "grass.dark.a.2" | "grass.dark.a.3" | "grass.dark.a.4" | "grass.dark.a.5" | "grass.dark.a.6" | "grass.dark.a.7" | "grass.dark.a.8" | "grass.dark.a.9" | "grass.dark.a.10" | "grass.dark.a.11" | "grass.dark.a.12" | "grass.dark.p3.1" | "grass.dark.p3.2" | "grass.dark.p3.3" | "grass.dark.p3.4" | "grass.dark.p3.5" | "grass.dark.p3.6" | "grass.dark.p3.7" | "grass.dark.p3.8" | "grass.dark.p3.9" | "grass.dark.p3.10" | "grass.dark.p3.11" | "grass.dark.p3.12" | "grass.dark.p3.a.1" | "grass.dark.p3.a.2" | "grass.dark.p3.a.3" | "grass.dark.p3.a.4" | "grass.dark.p3.a.5" | "grass.dark.p3.a.6" | "grass.dark.p3.a.7" | "grass.dark.p3.a.8" | "grass.dark.p3.a.9" | "grass.dark.p3.a.10" | "grass.dark.p3.a.11" | "grass.dark.p3.a.12" | "grass.a.1" | "grass.a.2" | "grass.a.3" | "grass.a.4" | "grass.a.5" | "grass.a.6" | "grass.a.7" | "grass.a.8" | "grass.a.9" | "grass.a.10" | "grass.a.11" | "grass.a.12" | "grass.p3.1" | "grass.p3.2" | "grass.p3.3" | "grass.p3.4" | "grass.p3.5" | "grass.p3.6" | "grass.p3.7" | "grass.p3.8" | "grass.p3.9" | "grass.p3.10" | "grass.p3.11" | "grass.p3.12" | "grass.p3.a.1" | "grass.p3.a.2" | "grass.p3.a.3" | "grass.p3.a.4" | "grass.p3.a.5" | "grass.p3.a.6" | "grass.p3.a.7" | "grass.p3.a.8" | "grass.p3.a.9" | "grass.p3.a.10" | "grass.p3.a.11" | "grass.p3.a.12" | "indigo.1" | "indigo.2" | "indigo.3" | "indigo.4" | "indigo.5" | "indigo.6" | "indigo.7" | "indigo.8" | "indigo.9" | "indigo.10" | "indigo.11" | "indigo.12" | "indigo.light.1" | "indigo.light.2" | "indigo.light.3" | "indigo.light.4" | "indigo.light.5" | "indigo.light.6" | "indigo.light.7" | "indigo.light.8" | "indigo.light.9" | "indigo.light.10" | "indigo.light.11" | "indigo.light.12" | "indigo.light.a.1" | "indigo.light.a.2" | "indigo.light.a.3" | "indigo.light.a.4" | "indigo.light.a.5" | "indigo.light.a.6" | "indigo.light.a.7" | "indigo.light.a.8" | "indigo.light.a.9" | "indigo.light.a.10" | "indigo.light.a.11" | "indigo.light.a.12" | "indigo.light.p3.1" | "indigo.light.p3.2" | "indigo.light.p3.3" | "indigo.light.p3.4" | "indigo.light.p3.5" | "indigo.light.p3.6" | "indigo.light.p3.7" | "indigo.light.p3.8" | "indigo.light.p3.9" | "indigo.light.p3.10" | "indigo.light.p3.11" | "indigo.light.p3.12" | "indigo.light.p3.a.1" | "indigo.light.p3.a.2" | "indigo.light.p3.a.3" | "indigo.light.p3.a.4" | "indigo.light.p3.a.5" | "indigo.light.p3.a.6" | "indigo.light.p3.a.7" | "indigo.light.p3.a.8" | "indigo.light.p3.a.9" | "indigo.light.p3.a.10" | "indigo.light.p3.a.11" | "indigo.light.p3.a.12" | "indigo.dark.1" | "indigo.dark.2" | "indigo.dark.3" | "indigo.dark.4" | "indigo.dark.5" | "indigo.dark.6" | "indigo.dark.7" | "indigo.dark.8" | "indigo.dark.9" | "indigo.dark.10" | "indigo.dark.11" | "indigo.dark.12" | "indigo.dark.a.1" | "indigo.dark.a.2" | "indigo.dark.a.3" | "indigo.dark.a.4" | "indigo.dark.a.5" | "indigo.dark.a.6" | "indigo.dark.a.7" | "indigo.dark.a.8" | "indigo.dark.a.9" | "indigo.dark.a.10" | "indigo.dark.a.11" | "indigo.dark.a.12" | "indigo.dark.p3.1" | "indigo.dark.p3.2" | "indigo.dark.p3.3" | "indigo.dark.p3.4" | "indigo.dark.p3.5" | "indigo.dark.p3.6" | "indigo.dark.p3.7" | "indigo.dark.p3.8" | "indigo.dark.p3.9" | "indigo.dark.p3.10" | "indigo.dark.p3.11" | "indigo.dark.p3.12" | "indigo.dark.p3.a.1" | "indigo.dark.p3.a.2" | "indigo.dark.p3.a.3" | "indigo.dark.p3.a.4" | "indigo.dark.p3.a.5" | "indigo.dark.p3.a.6" | "indigo.dark.p3.a.7" | "indigo.dark.p3.a.8" | "indigo.dark.p3.a.9" | "indigo.dark.p3.a.10" | "indigo.dark.p3.a.11" | "indigo.dark.p3.a.12" | "indigo.a.1" | "indigo.a.2" | "indigo.a.3" | "indigo.a.4" | "indigo.a.5" | "indigo.a.6" | "indigo.a.7" | "indigo.a.8" | "indigo.a.9" | "indigo.a.10" | "indigo.a.11" | "indigo.a.12" | "indigo.p3.1" | "indigo.p3.2" | "indigo.p3.3" | "indigo.p3.4" | "indigo.p3.5" | "indigo.p3.6" | "indigo.p3.7" | "indigo.p3.8" | "indigo.p3.9" | "indigo.p3.10" | "indigo.p3.11" | "indigo.p3.12" | "indigo.p3.a.1" | "indigo.p3.a.2" | "indigo.p3.a.3" | "indigo.p3.a.4" | "indigo.p3.a.5" | "indigo.p3.a.6" | "indigo.p3.a.7" | "indigo.p3.a.8" | "indigo.p3.a.9" | "indigo.p3.a.10" | "indigo.p3.a.11" | "indigo.p3.a.12" | "lime.1" | "lime.2" | "lime.3" | "lime.4" | "lime.5" | "lime.6" | "lime.7" | "lime.8" | "lime.9" | "lime.10" | "lime.11" | "lime.12" | "lime.light.1" | "lime.light.2" | "lime.light.3" | "lime.light.4" | "lime.light.5" | "lime.light.6" | "lime.light.7" | "lime.light.8" | "lime.light.9" | "lime.light.10" | "lime.light.11" | "lime.light.12" | "lime.light.a.1" | "lime.light.a.2" | "lime.light.a.3" | "lime.light.a.4" | "lime.light.a.5" | "lime.light.a.6" | "lime.light.a.7" | "lime.light.a.8" | "lime.light.a.9" | "lime.light.a.10" | "lime.light.a.11" | "lime.light.a.12" | "lime.light.p3.1" | "lime.light.p3.2" | "lime.light.p3.3" | "lime.light.p3.4" | "lime.light.p3.5" | "lime.light.p3.6" | "lime.light.p3.7" | "lime.light.p3.8" | "lime.light.p3.9" | "lime.light.p3.10" | "lime.light.p3.11" | "lime.light.p3.12" | "lime.light.p3.a.1" | "lime.light.p3.a.2" | "lime.light.p3.a.3" | "lime.light.p3.a.4" | "lime.light.p3.a.5" | "lime.light.p3.a.6" | "lime.light.p3.a.7" | "lime.light.p3.a.8" | "lime.light.p3.a.9" | "lime.light.p3.a.10" | "lime.light.p3.a.11" | "lime.light.p3.a.12" | "lime.dark.1" | "lime.dark.2" | "lime.dark.3" | "lime.dark.4" | "lime.dark.5" | "lime.dark.6" | "lime.dark.7" | "lime.dark.8" | "lime.dark.9" | "lime.dark.10" | "lime.dark.11" | "lime.dark.12" | "lime.dark.a.1" | "lime.dark.a.2" | "lime.dark.a.3" | "lime.dark.a.4" | "lime.dark.a.5" | "lime.dark.a.6" | "lime.dark.a.7" | "lime.dark.a.8" | "lime.dark.a.9" | "lime.dark.a.10" | "lime.dark.a.11" | "lime.dark.a.12" | "lime.dark.p3.1" | "lime.dark.p3.2" | "lime.dark.p3.3" | "lime.dark.p3.4" | "lime.dark.p3.5" | "lime.dark.p3.6" | "lime.dark.p3.7" | "lime.dark.p3.8" | "lime.dark.p3.9" | "lime.dark.p3.10" | "lime.dark.p3.11" | "lime.dark.p3.12" | "lime.dark.p3.a.1" | "lime.dark.p3.a.2" | "lime.dark.p3.a.3" | "lime.dark.p3.a.4" | "lime.dark.p3.a.5" | "lime.dark.p3.a.6" | "lime.dark.p3.a.7" | "lime.dark.p3.a.8" | "lime.dark.p3.a.9" | "lime.dark.p3.a.10" | "lime.dark.p3.a.11" | "lime.dark.p3.a.12" | "lime.a.1" | "lime.a.2" | "lime.a.3" | "lime.a.4" | "lime.a.5" | "lime.a.6" | "lime.a.7" | "lime.a.8" | "lime.a.9" | "lime.a.10" | "lime.a.11" | "lime.a.12" | "lime.p3.1" | "lime.p3.2" | "lime.p3.3" | "lime.p3.4" | "lime.p3.5" | "lime.p3.6" | "lime.p3.7" | "lime.p3.8" | "lime.p3.9" | "lime.p3.10" | "lime.p3.11" | "lime.p3.12" | "lime.p3.a.1" | "lime.p3.a.2" | "lime.p3.a.3" | "lime.p3.a.4" | "lime.p3.a.5" | "lime.p3.a.6" | "lime.p3.a.7" | "lime.p3.a.8" | "lime.p3.a.9" | "lime.p3.a.10" | "lime.p3.a.11" | "lime.p3.a.12" | "orange.1" | "orange.2" | "orange.3" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "orange.11" | "orange.12" | "orange.light.1" | "orange.light.2" | "orange.light.3" | "orange.light.4" | "orange.light.5" | "orange.light.6" | "orange.light.7" | "orange.light.8" | "orange.light.9" | "orange.light.10" | "orange.light.11" | "orange.light.12" | "orange.light.a.1" | "orange.light.a.2" | "orange.light.a.3" | "orange.light.a.4" | "orange.light.a.5" | "orange.light.a.6" | "orange.light.a.7" | "orange.light.a.8" | "orange.light.a.9" | "orange.light.a.10" | "orange.light.a.11" | "orange.light.a.12" | "orange.light.p3.1" | "orange.light.p3.2" | "orange.light.p3.3" | "orange.light.p3.4" | "orange.light.p3.5" | "orange.light.p3.6" | "orange.light.p3.7" | "orange.light.p3.8" | "orange.light.p3.9" | "orange.light.p3.10" | "orange.light.p3.11" | "orange.light.p3.12" | "orange.light.p3.a.1" | "orange.light.p3.a.2" | "orange.light.p3.a.3" | "orange.light.p3.a.4" | "orange.light.p3.a.5" | "orange.light.p3.a.6" | "orange.light.p3.a.7" | "orange.light.p3.a.8" | "orange.light.p3.a.9" | "orange.light.p3.a.10" | "orange.light.p3.a.11" | "orange.light.p3.a.12" | "orange.dark.1" | "orange.dark.2" | "orange.dark.3" | "orange.dark.4" | "orange.dark.5" | "orange.dark.6" | "orange.dark.7" | "orange.dark.8" | "orange.dark.9" | "orange.dark.10" | "orange.dark.11" | "orange.dark.12" | "orange.dark.a.1" | "orange.dark.a.2" | "orange.dark.a.3" | "orange.dark.a.4" | "orange.dark.a.5" | "orange.dark.a.6" | "orange.dark.a.7" | "orange.dark.a.8" | "orange.dark.a.9" | "orange.dark.a.10" | "orange.dark.a.11" | "orange.dark.a.12" | "orange.dark.p3.1" | "orange.dark.p3.2" | "orange.dark.p3.3" | "orange.dark.p3.4" | "orange.dark.p3.5" | "orange.dark.p3.6" | "orange.dark.p3.7" | "orange.dark.p3.8" | "orange.dark.p3.9" | "orange.dark.p3.10" | "orange.dark.p3.11" | "orange.dark.p3.12" | "orange.dark.p3.a.1" | "orange.dark.p3.a.2" | "orange.dark.p3.a.3" | "orange.dark.p3.a.4" | "orange.dark.p3.a.5" | "orange.dark.p3.a.6" | "orange.dark.p3.a.7" | "orange.dark.p3.a.8" | "orange.dark.p3.a.9" | "orange.dark.p3.a.10" | "orange.dark.p3.a.11" | "orange.dark.p3.a.12" | "orange.a.1" | "orange.a.2" | "orange.a.3" | "orange.a.4" | "orange.a.5" | "orange.a.6" | "orange.a.7" | "orange.a.8" | "orange.a.9" | "orange.a.10" | "orange.a.11" | "orange.a.12" | "orange.p3.1" | "orange.p3.2" | "orange.p3.3" | "orange.p3.4" | "orange.p3.5" | "orange.p3.6" | "orange.p3.7" | "orange.p3.8" | "orange.p3.9" | "orange.p3.10" | "orange.p3.11" | "orange.p3.12" | "orange.p3.a.1" | "orange.p3.a.2" | "orange.p3.a.3" | "orange.p3.a.4" | "orange.p3.a.5" | "orange.p3.a.6" | "orange.p3.a.7" | "orange.p3.a.8" | "orange.p3.a.9" | "orange.p3.a.10" | "orange.p3.a.11" | "orange.p3.a.12" | "pink.1" | "pink.2" | "pink.3" | "pink.4" | "pink.5" | "pink.6" | "pink.7" | "pink.8" | "pink.9" | "pink.10" | "pink.11" | "pink.12" | "pink.light.1" | "pink.light.2" | "pink.light.3" | "pink.light.4" | "pink.light.5" | "pink.light.6" | "pink.light.7" | "pink.light.8" | "pink.light.9" | "pink.light.10" | "pink.light.11" | "pink.light.12" | "pink.light.a.1" | "pink.light.a.2" | "pink.light.a.3" | "pink.light.a.4" | "pink.light.a.5" | "pink.light.a.6" | "pink.light.a.7" | "pink.light.a.8" | "pink.light.a.9" | "pink.light.a.10" | "pink.light.a.11" | "pink.light.a.12" | "pink.light.p3.1" | "pink.light.p3.2" | "pink.light.p3.3" | "pink.light.p3.4" | "pink.light.p3.5" | "pink.light.p3.6" | "pink.light.p3.7" | "pink.light.p3.8" | "pink.light.p3.9" | "pink.light.p3.10" | "pink.light.p3.11" | "pink.light.p3.12" | "pink.light.p3.a.1" | "pink.light.p3.a.2" | "pink.light.p3.a.3" | "pink.light.p3.a.4" | "pink.light.p3.a.5" | "pink.light.p3.a.6" | "pink.light.p3.a.7" | "pink.light.p3.a.8" | "pink.light.p3.a.9" | "pink.light.p3.a.10" | "pink.light.p3.a.11" | "pink.light.p3.a.12" | "pink.dark.1" | "pink.dark.2" | "pink.dark.3" | "pink.dark.4" | "pink.dark.5" | "pink.dark.6" | "pink.dark.7" | "pink.dark.8" | "pink.dark.9" | "pink.dark.10" | "pink.dark.11" | "pink.dark.12" | "pink.dark.a.1" | "pink.dark.a.2" | "pink.dark.a.3" | "pink.dark.a.4" | "pink.dark.a.5" | "pink.dark.a.6" | "pink.dark.a.7" | "pink.dark.a.8" | "pink.dark.a.9" | "pink.dark.a.10" | "pink.dark.a.11" | "pink.dark.a.12" | "pink.dark.p3.1" | "pink.dark.p3.2" | "pink.dark.p3.3" | "pink.dark.p3.4" | "pink.dark.p3.5" | "pink.dark.p3.6" | "pink.dark.p3.7" | "pink.dark.p3.8" | "pink.dark.p3.9" | "pink.dark.p3.10" | "pink.dark.p3.11" | "pink.dark.p3.12" | "pink.dark.p3.a.1" | "pink.dark.p3.a.2" | "pink.dark.p3.a.3" | "pink.dark.p3.a.4" | "pink.dark.p3.a.5" | "pink.dark.p3.a.6" | "pink.dark.p3.a.7" | "pink.dark.p3.a.8" | "pink.dark.p3.a.9" | "pink.dark.p3.a.10" | "pink.dark.p3.a.11" | "pink.dark.p3.a.12" | "pink.a.1" | "pink.a.2" | "pink.a.3" | "pink.a.4" | "pink.a.5" | "pink.a.6" | "pink.a.7" | "pink.a.8" | "pink.a.9" | "pink.a.10" | "pink.a.11" | "pink.a.12" | "pink.p3.1" | "pink.p3.2" | "pink.p3.3" | "pink.p3.4" | "pink.p3.5" | "pink.p3.6" | "pink.p3.7" | "pink.p3.8" | "pink.p3.9" | "pink.p3.10" | "pink.p3.11" | "pink.p3.12" | "pink.p3.a.1" | "pink.p3.a.2" | "pink.p3.a.3" | "pink.p3.a.4" | "pink.p3.a.5" | "pink.p3.a.6" | "pink.p3.a.7" | "pink.p3.a.8" | "pink.p3.a.9" | "pink.p3.a.10" | "pink.p3.a.11" | "pink.p3.a.12" | "purple.1" | "purple.2" | "purple.3" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "purple.11" | "purple.12" | "purple.light.1" | "purple.light.2" | "purple.light.3" | "purple.light.4" | "purple.light.5" | "purple.light.6" | "purple.light.7" | "purple.light.8" | "purple.light.9" | "purple.light.10" | "purple.light.11" | "purple.light.12" | "purple.light.a.1" | "purple.light.a.2" | "purple.light.a.3" | "purple.light.a.4" | "purple.light.a.5" | "purple.light.a.6" | "purple.light.a.7" | "purple.light.a.8" | "purple.light.a.9" | "purple.light.a.10" | "purple.light.a.11" | "purple.light.a.12" | "purple.light.p3.1" | "purple.light.p3.2" | "purple.light.p3.3" | "purple.light.p3.4" | "purple.light.p3.5" | "purple.light.p3.6" | "purple.light.p3.7" | "purple.light.p3.8" | "purple.light.p3.9" | "purple.light.p3.10" | "purple.light.p3.11" | "purple.light.p3.12" | "purple.light.p3.a.1" | "purple.light.p3.a.2" | "purple.light.p3.a.3" | "purple.light.p3.a.4" | "purple.light.p3.a.5" | "purple.light.p3.a.6" | "purple.light.p3.a.7" | "purple.light.p3.a.8" | "purple.light.p3.a.9" | "purple.light.p3.a.10" | "purple.light.p3.a.11" | "purple.light.p3.a.12" | "purple.dark.1" | "purple.dark.2" | "purple.dark.3" | "purple.dark.4" | "purple.dark.5" | "purple.dark.6" | "purple.dark.7" | "purple.dark.8" | "purple.dark.9" | "purple.dark.10" | "purple.dark.11" | "purple.dark.12" | "purple.dark.a.1" | "purple.dark.a.2" | "purple.dark.a.3" | "purple.dark.a.4" | "purple.dark.a.5" | "purple.dark.a.6" | "purple.dark.a.7" | "purple.dark.a.8" | "purple.dark.a.9" | "purple.dark.a.10" | "purple.dark.a.11" | "purple.dark.a.12" | "purple.dark.p3.1" | "purple.dark.p3.2" | "purple.dark.p3.3" | "purple.dark.p3.4" | "purple.dark.p3.5" | "purple.dark.p3.6" | "purple.dark.p3.7" | "purple.dark.p3.8" | "purple.dark.p3.9" | "purple.dark.p3.10" | "purple.dark.p3.11" | "purple.dark.p3.12" | "purple.dark.p3.a.1" | "purple.dark.p3.a.2" | "purple.dark.p3.a.3" | "purple.dark.p3.a.4" | "purple.dark.p3.a.5" | "purple.dark.p3.a.6" | "purple.dark.p3.a.7" | "purple.dark.p3.a.8" | "purple.dark.p3.a.9" | "purple.dark.p3.a.10" | "purple.dark.p3.a.11" | "purple.dark.p3.a.12" | "purple.a.1" | "purple.a.2" | "purple.a.3" | "purple.a.4" | "purple.a.5" | "purple.a.6" | "purple.a.7" | "purple.a.8" | "purple.a.9" | "purple.a.10" | "purple.a.11" | "purple.a.12" | "purple.p3.1" | "purple.p3.2" | "purple.p3.3" | "purple.p3.4" | "purple.p3.5" | "purple.p3.6" | "purple.p3.7" | "purple.p3.8" | "purple.p3.9" | "purple.p3.10" | "purple.p3.11" | "purple.p3.12" | "purple.p3.a.1" | "purple.p3.a.2" | "purple.p3.a.3" | "purple.p3.a.4" | "purple.p3.a.5" | "purple.p3.a.6" | "purple.p3.a.7" | "purple.p3.a.8" | "purple.p3.a.9" | "purple.p3.a.10" | "purple.p3.a.11" | "purple.p3.a.12" | "red.1" | "red.2" | "red.3" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "red.11" | "red.12" | "red.light.1" | "red.light.2" | "red.light.3" | "red.light.4" | "red.light.5" | "red.light.6" | "red.light.7" | "red.light.8" | "red.light.9" | "red.light.10" | "red.light.11" | "red.light.12" | "red.light.a.1" | "red.light.a.2" | "red.light.a.3" | "red.light.a.4" | "red.light.a.5" | "red.light.a.6" | "red.light.a.7" | "red.light.a.8" | "red.light.a.9" | "red.light.a.10" | "red.light.a.11" | "red.light.a.12" | "red.light.p3.1" | "red.light.p3.2" | "red.light.p3.3" | "red.light.p3.4" | "red.light.p3.5" | "red.light.p3.6" | "red.light.p3.7" | "red.light.p3.8" | "red.light.p3.9" | "red.light.p3.10" | "red.light.p3.11" | "red.light.p3.12" | "red.light.p3.a.1" | "red.light.p3.a.2" | "red.light.p3.a.3" | "red.light.p3.a.4" | "red.light.p3.a.5" | "red.light.p3.a.6" | "red.light.p3.a.7" | "red.light.p3.a.8" | "red.light.p3.a.9" | "red.light.p3.a.10" | "red.light.p3.a.11" | "red.light.p3.a.12" | "red.dark.1" | "red.dark.2" | "red.dark.3" | "red.dark.4" | "red.dark.5" | "red.dark.6" | "red.dark.7" | "red.dark.8" | "red.dark.9" | "red.dark.10" | "red.dark.11" | "red.dark.12" | "red.dark.a.1" | "red.dark.a.2" | "red.dark.a.3" | "red.dark.a.4" | "red.dark.a.5" | "red.dark.a.6" | "red.dark.a.7" | "red.dark.a.8" | "red.dark.a.9" | "red.dark.a.10" | "red.dark.a.11" | "red.dark.a.12" | "red.dark.p3.1" | "red.dark.p3.2" | "red.dark.p3.3" | "red.dark.p3.4" | "red.dark.p3.5" | "red.dark.p3.6" | "red.dark.p3.7" | "red.dark.p3.8" | "red.dark.p3.9" | "red.dark.p3.10" | "red.dark.p3.11" | "red.dark.p3.12" | "red.dark.p3.a.1" | "red.dark.p3.a.2" | "red.dark.p3.a.3" | "red.dark.p3.a.4" | "red.dark.p3.a.5" | "red.dark.p3.a.6" | "red.dark.p3.a.7" | "red.dark.p3.a.8" | "red.dark.p3.a.9" | "red.dark.p3.a.10" | "red.dark.p3.a.11" | "red.dark.p3.a.12" | "red.a.1" | "red.a.2" | "red.a.3" | "red.a.4" | "red.a.5" | "red.a.6" | "red.a.7" | "red.a.8" | "red.a.9" | "red.a.10" | "red.a.11" | "red.a.12" | "red.p3.1" | "red.p3.2" | "red.p3.3" | "red.p3.4" | "red.p3.5" | "red.p3.6" | "red.p3.7" | "red.p3.8" | "red.p3.9" | "red.p3.10" | "red.p3.11" | "red.p3.12" | "red.p3.a.1" | "red.p3.a.2" | "red.p3.a.3" | "red.p3.a.4" | "red.p3.a.5" | "red.p3.a.6" | "red.p3.a.7" | "red.p3.a.8" | "red.p3.a.9" | "red.p3.a.10" | "red.p3.a.11" | "red.p3.a.12" | "ruby.1" | "ruby.2" | "ruby.3" | "ruby.4" | "ruby.5" | "ruby.6" | "ruby.7" | "ruby.8" | "ruby.9" | "ruby.10" | "ruby.11" | "ruby.12" | "ruby.light.1" | "ruby.light.2" | "ruby.light.3" | "ruby.light.4" | "ruby.light.5" | "ruby.light.6" | "ruby.light.7" | "ruby.light.8" | "ruby.light.9" | "ruby.light.10" | "ruby.light.11" | "ruby.light.12" | "ruby.light.a.1" | "ruby.light.a.2" | "ruby.light.a.3" | "ruby.light.a.4" | "ruby.light.a.5" | "ruby.light.a.6" | "ruby.light.a.7" | "ruby.light.a.8" | "ruby.light.a.9" | "ruby.light.a.10" | "ruby.light.a.11" | "ruby.light.a.12" | "ruby.light.p3.1" | "ruby.light.p3.2" | "ruby.light.p3.3" | "ruby.light.p3.4" | "ruby.light.p3.5" | "ruby.light.p3.6" | "ruby.light.p3.7" | "ruby.light.p3.8" | "ruby.light.p3.9" | "ruby.light.p3.10" | "ruby.light.p3.11" | "ruby.light.p3.12" | "ruby.light.p3.a.1" | "ruby.light.p3.a.2" | "ruby.light.p3.a.3" | "ruby.light.p3.a.4" | "ruby.light.p3.a.5" | "ruby.light.p3.a.6" | "ruby.light.p3.a.7" | "ruby.light.p3.a.8" | "ruby.light.p3.a.9" | "ruby.light.p3.a.10" | "ruby.light.p3.a.11" | "ruby.light.p3.a.12" | "ruby.dark.1" | "ruby.dark.2" | "ruby.dark.3" | "ruby.dark.4" | "ruby.dark.5" | "ruby.dark.6" | "ruby.dark.7" | "ruby.dark.8" | "ruby.dark.9" | "ruby.dark.10" | "ruby.dark.11" | "ruby.dark.12" | "ruby.dark.a.1" | "ruby.dark.a.2" | "ruby.dark.a.3" | "ruby.dark.a.4" | "ruby.dark.a.5" | "ruby.dark.a.6" | "ruby.dark.a.7" | "ruby.dark.a.8" | "ruby.dark.a.9" | "ruby.dark.a.10" | "ruby.dark.a.11" | "ruby.dark.a.12" | "ruby.dark.p3.1" | "ruby.dark.p3.2" | "ruby.dark.p3.3" | "ruby.dark.p3.4" | "ruby.dark.p3.5" | "ruby.dark.p3.6" | "ruby.dark.p3.7" | "ruby.dark.p3.8" | "ruby.dark.p3.9" | "ruby.dark.p3.10" | "ruby.dark.p3.11" | "ruby.dark.p3.12" | "ruby.dark.p3.a.1" | "ruby.dark.p3.a.2" | "ruby.dark.p3.a.3" | "ruby.dark.p3.a.4" | "ruby.dark.p3.a.5" | "ruby.dark.p3.a.6" | "ruby.dark.p3.a.7" | "ruby.dark.p3.a.8" | "ruby.dark.p3.a.9" | "ruby.dark.p3.a.10" | "ruby.dark.p3.a.11" | "ruby.dark.p3.a.12" | "ruby.a.1" | "ruby.a.2" | "ruby.a.3" | "ruby.a.4" | "ruby.a.5" | "ruby.a.6" | "ruby.a.7" | "ruby.a.8" | "ruby.a.9" | "ruby.a.10" | "ruby.a.11" | "ruby.a.12" | "ruby.p3.1" | "ruby.p3.2" | "ruby.p3.3" | "ruby.p3.4" | "ruby.p3.5" | "ruby.p3.6" | "ruby.p3.7" | "ruby.p3.8" | "ruby.p3.9" | "ruby.p3.10" | "ruby.p3.11" | "ruby.p3.12" | "ruby.p3.a.1" | "ruby.p3.a.2" | "ruby.p3.a.3" | "ruby.p3.a.4" | "ruby.p3.a.5" | "ruby.p3.a.6" | "ruby.p3.a.7" | "ruby.p3.a.8" | "ruby.p3.a.9" | "ruby.p3.a.10" | "ruby.p3.a.11" | "ruby.p3.a.12" | "teal.1" | "teal.2" | "teal.3" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "teal.11" | "teal.12" | "teal.light.1" | "teal.light.2" | "teal.light.3" | "teal.light.4" | "teal.light.5" | "teal.light.6" | "teal.light.7" | "teal.light.8" | "teal.light.9" | "teal.light.10" | "teal.light.11" | "teal.light.12" | "teal.light.a.1" | "teal.light.a.2" | "teal.light.a.3" | "teal.light.a.4" | "teal.light.a.5" | "teal.light.a.6" | "teal.light.a.7" | "teal.light.a.8" | "teal.light.a.9" | "teal.light.a.10" | "teal.light.a.11" | "teal.light.a.12" | "teal.light.p3.1" | "teal.light.p3.2" | "teal.light.p3.3" | "teal.light.p3.4" | "teal.light.p3.5" | "teal.light.p3.6" | "teal.light.p3.7" | "teal.light.p3.8" | "teal.light.p3.9" | "teal.light.p3.10" | "teal.light.p3.11" | "teal.light.p3.12" | "teal.light.p3.a.1" | "teal.light.p3.a.2" | "teal.light.p3.a.3" | "teal.light.p3.a.4" | "teal.light.p3.a.5" | "teal.light.p3.a.6" | "teal.light.p3.a.7" | "teal.light.p3.a.8" | "teal.light.p3.a.9" | "teal.light.p3.a.10" | "teal.light.p3.a.11" | "teal.light.p3.a.12" | "teal.dark.1" | "teal.dark.2" | "teal.dark.3" | "teal.dark.4" | "teal.dark.5" | "teal.dark.6" | "teal.dark.7" | "teal.dark.8" | "teal.dark.9" | "teal.dark.10" | "teal.dark.11" | "teal.dark.12" | "teal.dark.a.1" | "teal.dark.a.2" | "teal.dark.a.3" | "teal.dark.a.4" | "teal.dark.a.5" | "teal.dark.a.6" | "teal.dark.a.7" | "teal.dark.a.8" | "teal.dark.a.9" | "teal.dark.a.10" | "teal.dark.a.11" | "teal.dark.a.12" | "teal.dark.p3.1" | "teal.dark.p3.2" | "teal.dark.p3.3" | "teal.dark.p3.4" | "teal.dark.p3.5" | "teal.dark.p3.6" | "teal.dark.p3.7" | "teal.dark.p3.8" | "teal.dark.p3.9" | "teal.dark.p3.10" | "teal.dark.p3.11" | "teal.dark.p3.12" | "teal.dark.p3.a.1" | "teal.dark.p3.a.2" | "teal.dark.p3.a.3" | "teal.dark.p3.a.4" | "teal.dark.p3.a.5" | "teal.dark.p3.a.6" | "teal.dark.p3.a.7" | "teal.dark.p3.a.8" | "teal.dark.p3.a.9" | "teal.dark.p3.a.10" | "teal.dark.p3.a.11" | "teal.dark.p3.a.12" | "teal.a.1" | "teal.a.2" | "teal.a.3" | "teal.a.4" | "teal.a.5" | "teal.a.6" | "teal.a.7" | "teal.a.8" | "teal.a.9" | "teal.a.10" | "teal.a.11" | "teal.a.12" | "teal.p3.1" | "teal.p3.2" | "teal.p3.3" | "teal.p3.4" | "teal.p3.5" | "teal.p3.6" | "teal.p3.7" | "teal.p3.8" | "teal.p3.9" | "teal.p3.10" | "teal.p3.11" | "teal.p3.12" | "teal.p3.a.1" | "teal.p3.a.2" | "teal.p3.a.3" | "teal.p3.a.4" | "teal.p3.a.5" | "teal.p3.a.6" | "teal.p3.a.7" | "teal.p3.a.8" | "teal.p3.a.9" | "teal.p3.a.10" | "teal.p3.a.11" | "teal.p3.a.12" | "tomato.1" | "tomato.2" | "tomato.3" | "tomato.4" | "tomato.5" | "tomato.6" | "tomato.7" | "tomato.8" | "tomato.9" | "tomato.10" | "tomato.11" | "tomato.12" | "tomato.light.1" | "tomato.light.2" | "tomato.light.3" | "tomato.light.4" | "tomato.light.5" | "tomato.light.6" | "tomato.light.7" | "tomato.light.8" | "tomato.light.9" | "tomato.light.10" | "tomato.light.11" | "tomato.light.12" | "tomato.light.a.1" | "tomato.light.a.2" | "tomato.light.a.3" | "tomato.light.a.4" | "tomato.light.a.5" | "tomato.light.a.6" | "tomato.light.a.7" | "tomato.light.a.8" | "tomato.light.a.9" | "tomato.light.a.10" | "tomato.light.a.11" | "tomato.light.a.12" | "tomato.light.p3.1" | "tomato.light.p3.2" | "tomato.light.p3.3" | "tomato.light.p3.4" | "tomato.light.p3.5" | "tomato.light.p3.6" | "tomato.light.p3.7" | "tomato.light.p3.8" | "tomato.light.p3.9" | "tomato.light.p3.10" | "tomato.light.p3.11" | "tomato.light.p3.12" | "tomato.light.p3.a.1" | "tomato.light.p3.a.2" | "tomato.light.p3.a.3" | "tomato.light.p3.a.4" | "tomato.light.p3.a.5" | "tomato.light.p3.a.6" | "tomato.light.p3.a.7" | "tomato.light.p3.a.8" | "tomato.light.p3.a.9" | "tomato.light.p3.a.10" | "tomato.light.p3.a.11" | "tomato.light.p3.a.12" | "tomato.dark.1" | "tomato.dark.2" | "tomato.dark.3" | "tomato.dark.4" | "tomato.dark.5" | "tomato.dark.6" | "tomato.dark.7" | "tomato.dark.8" | "tomato.dark.9" | "tomato.dark.10" | "tomato.dark.11" | "tomato.dark.12" | "tomato.dark.a.1" | "tomato.dark.a.2" | "tomato.dark.a.3" | "tomato.dark.a.4" | "tomato.dark.a.5" | "tomato.dark.a.6" | "tomato.dark.a.7" | "tomato.dark.a.8" | "tomato.dark.a.9" | "tomato.dark.a.10" | "tomato.dark.a.11" | "tomato.dark.a.12" | "tomato.dark.p3.1" | "tomato.dark.p3.2" | "tomato.dark.p3.3" | "tomato.dark.p3.4" | "tomato.dark.p3.5" | "tomato.dark.p3.6" | "tomato.dark.p3.7" | "tomato.dark.p3.8" | "tomato.dark.p3.9" | "tomato.dark.p3.10" | "tomato.dark.p3.11" | "tomato.dark.p3.12" | "tomato.dark.p3.a.1" | "tomato.dark.p3.a.2" | "tomato.dark.p3.a.3" | "tomato.dark.p3.a.4" | "tomato.dark.p3.a.5" | "tomato.dark.p3.a.6" | "tomato.dark.p3.a.7" | "tomato.dark.p3.a.8" | "tomato.dark.p3.a.9" | "tomato.dark.p3.a.10" | "tomato.dark.p3.a.11" | "tomato.dark.p3.a.12" | "tomato.a.1" | "tomato.a.2" | "tomato.a.3" | "tomato.a.4" | "tomato.a.5" | "tomato.a.6" | "tomato.a.7" | "tomato.a.8" | "tomato.a.9" | "tomato.a.10" | "tomato.a.11" | "tomato.a.12" | "tomato.p3.1" | "tomato.p3.2" | "tomato.p3.3" | "tomato.p3.4" | "tomato.p3.5" | "tomato.p3.6" | "tomato.p3.7" | "tomato.p3.8" | "tomato.p3.9" | "tomato.p3.10" | "tomato.p3.11" | "tomato.p3.12" | "tomato.p3.a.1" | "tomato.p3.a.2" | "tomato.p3.a.3" | "tomato.p3.a.4" | "tomato.p3.a.5" | "tomato.p3.a.6" | "tomato.p3.a.7" | "tomato.p3.a.8" | "tomato.p3.a.9" | "tomato.p3.a.10" | "tomato.p3.a.11" | "tomato.p3.a.12" | "violet.1" | "violet.2" | "violet.3" | "violet.4" | "violet.5" | "violet.6" | "violet.7" | "violet.8" | "violet.9" | "violet.10" | "violet.11" | "violet.12" | "violet.light.1" | "violet.light.2" | "violet.light.3" | "violet.light.4" | "violet.light.5" | "violet.light.6" | "violet.light.7" | "violet.light.8" | "violet.light.9" | "violet.light.10" | "violet.light.11" | "violet.light.12" | "violet.light.a.1" | "violet.light.a.2" | "violet.light.a.3" | "violet.light.a.4" | "violet.light.a.5" | "violet.light.a.6" | "violet.light.a.7" | "violet.light.a.8" | "violet.light.a.9" | "violet.light.a.10" | "violet.light.a.11" | "violet.light.a.12" | "violet.light.p3.1" | "violet.light.p3.2" | "violet.light.p3.3" | "violet.light.p3.4" | "violet.light.p3.5" | "violet.light.p3.6" | "violet.light.p3.7" | "violet.light.p3.8" | "violet.light.p3.9" | "violet.light.p3.10" | "violet.light.p3.11" | "violet.light.p3.12" | "violet.light.p3.a.1" | "violet.light.p3.a.2" | "violet.light.p3.a.3" | "violet.light.p3.a.4" | "violet.light.p3.a.5" | "violet.light.p3.a.6" | "violet.light.p3.a.7" | "violet.light.p3.a.8" | "violet.light.p3.a.9" | "violet.light.p3.a.10" | "violet.light.p3.a.11" | "violet.light.p3.a.12" | "violet.dark.1" | "violet.dark.2" | "violet.dark.3" | "violet.dark.4" | "violet.dark.5" | "violet.dark.6" | "violet.dark.7" | "violet.dark.8" | "violet.dark.9" | "violet.dark.10" | "violet.dark.11" | "violet.dark.12" | "violet.dark.a.1" | "violet.dark.a.2" | "violet.dark.a.3" | "violet.dark.a.4" | "violet.dark.a.5" | "violet.dark.a.6" | "violet.dark.a.7" | "violet.dark.a.8" | "violet.dark.a.9" | "violet.dark.a.10" | "violet.dark.a.11" | "violet.dark.a.12" | "violet.dark.p3.1" | "violet.dark.p3.2" | "violet.dark.p3.3" | "violet.dark.p3.4" | "violet.dark.p3.5" | "violet.dark.p3.6" | "violet.dark.p3.7" | "violet.dark.p3.8" | "violet.dark.p3.9" | "violet.dark.p3.10" | "violet.dark.p3.11" | "violet.dark.p3.12" | "violet.dark.p3.a.1" | "violet.dark.p3.a.2" | "violet.dark.p3.a.3" | "violet.dark.p3.a.4" | "violet.dark.p3.a.5" | "violet.dark.p3.a.6" | "violet.dark.p3.a.7" | "violet.dark.p3.a.8" | "violet.dark.p3.a.9" | "violet.dark.p3.a.10" | "violet.dark.p3.a.11" | "violet.dark.p3.a.12" | "violet.a.1" | "violet.a.2" | "violet.a.3" | "violet.a.4" | "violet.a.5" | "violet.a.6" | "violet.a.7" | "violet.a.8" | "violet.a.9" | "violet.a.10" | "violet.a.11" | "violet.a.12" | "violet.p3.1" | "violet.p3.2" | "violet.p3.3" | "violet.p3.4" | "violet.p3.5" | "violet.p3.6" | "violet.p3.7" | "violet.p3.8" | "violet.p3.9" | "violet.p3.10" | "violet.p3.11" | "violet.p3.12" | "violet.p3.a.1" | "violet.p3.a.2" | "violet.p3.a.3" | "violet.p3.a.4" | "violet.p3.a.5" | "violet.p3.a.6" | "violet.p3.a.7" | "violet.p3.a.8" | "violet.p3.a.9" | "violet.p3.a.10" | "violet.p3.a.11" | "violet.p3.a.12" | "yellow.1" | "yellow.2" | "yellow.3" | "yellow.4" | "yellow.5" | "yellow.6" | "yellow.7" | "yellow.8" | "yellow.9" | "yellow.10" | "yellow.11" | "yellow.12" | "yellow.light.1" | "yellow.light.2" | "yellow.light.3" | "yellow.light.4" | "yellow.light.5" | "yellow.light.6" | "yellow.light.7" | "yellow.light.8" | "yellow.light.9" | "yellow.light.10" | "yellow.light.11" | "yellow.light.12" | "yellow.light.a.1" | "yellow.light.a.2" | "yellow.light.a.3" | "yellow.light.a.4" | "yellow.light.a.5" | "yellow.light.a.6" | "yellow.light.a.7" | "yellow.light.a.8" | "yellow.light.a.9" | "yellow.light.a.10" | "yellow.light.a.11" | "yellow.light.a.12" | "yellow.light.p3.1" | "yellow.light.p3.2" | "yellow.light.p3.3" | "yellow.light.p3.4" | "yellow.light.p3.5" | "yellow.light.p3.6" | "yellow.light.p3.7" | "yellow.light.p3.8" | "yellow.light.p3.9" | "yellow.light.p3.10" | "yellow.light.p3.11" | "yellow.light.p3.12" | "yellow.light.p3.a.1" | "yellow.light.p3.a.2" | "yellow.light.p3.a.3" | "yellow.light.p3.a.4" | "yellow.light.p3.a.5" | "yellow.light.p3.a.6" | "yellow.light.p3.a.7" | "yellow.light.p3.a.8" | "yellow.light.p3.a.9" | "yellow.light.p3.a.10" | "yellow.light.p3.a.11" | "yellow.light.p3.a.12" | "yellow.dark.1" | "yellow.dark.2" | "yellow.dark.3" | "yellow.dark.4" | "yellow.dark.5" | "yellow.dark.6" | "yellow.dark.7" | "yellow.dark.8" | "yellow.dark.9" | "yellow.dark.10" | "yellow.dark.11" | "yellow.dark.12" | "yellow.dark.a.1" | "yellow.dark.a.2" | "yellow.dark.a.3" | "yellow.dark.a.4" | "yellow.dark.a.5" | "yellow.dark.a.6" | "yellow.dark.a.7" | "yellow.dark.a.8" | "yellow.dark.a.9" | "yellow.dark.a.10" | "yellow.dark.a.11" | "yellow.dark.a.12" | "yellow.dark.p3.1" | "yellow.dark.p3.2" | "yellow.dark.p3.3" | "yellow.dark.p3.4" | "yellow.dark.p3.5" | "yellow.dark.p3.6" | "yellow.dark.p3.7" | "yellow.dark.p3.8" | "yellow.dark.p3.9" | "yellow.dark.p3.10" | "yellow.dark.p3.11" | "yellow.dark.p3.12" | "yellow.dark.p3.a.1" | "yellow.dark.p3.a.2" | "yellow.dark.p3.a.3" | "yellow.dark.p3.a.4" | "yellow.dark.p3.a.5" | "yellow.dark.p3.a.6" | "yellow.dark.p3.a.7" | "yellow.dark.p3.a.8" | "yellow.dark.p3.a.9" | "yellow.dark.p3.a.10" | "yellow.dark.p3.a.11" | "yellow.dark.p3.a.12" | "yellow.a.1" | "yellow.a.2" | "yellow.a.3" | "yellow.a.4" | "yellow.a.5" | "yellow.a.6" | "yellow.a.7" | "yellow.a.8" | "yellow.a.9" | "yellow.a.10" | "yellow.a.11" | "yellow.a.12" | "yellow.p3.1" | "yellow.p3.2" | "yellow.p3.3" | "yellow.p3.4" | "yellow.p3.5" | "yellow.p3.6" | "yellow.p3.7" | "yellow.p3.8" | "yellow.p3.9" | "yellow.p3.10" | "yellow.p3.11" | "yellow.p3.12" | "yellow.p3.a.1" | "yellow.p3.a.2" | "yellow.p3.a.3" | "yellow.p3.a.4" | "yellow.p3.a.5" | "yellow.p3.a.6" | "yellow.p3.a.7" | "yellow.p3.a.8" | "yellow.p3.a.9" | "yellow.p3.a.10" | "yellow.p3.a.11" | "yellow.p3.a.12" | "likec4.background" | "likec4.tag.bg" | "likec4.tag.bg.hover" | "likec4.tag.border" | "likec4.tag.text" | "likec4.panel.bg" | "likec4.panel.border" | "likec4.panel.action-icon.text" | "likec4.panel.action-icon.text.hover" | "likec4.panel.action-icon.text.disabled" | "likec4.panel.action-icon.bg" | "likec4.panel.action-icon.bg.hover" | "likec4.dropdown.bg" | "likec4.dropdown.border" | "likec4.overlay.backdrop" | "likec4.overlay.body" | "likec4.overlay.border" | "likec4.background.pattern" | "likec4.mixColor" | "colorPalette.colors.primary" | "colorPalette.primary" | "colorPalette" | "colorPalette.colors.primary.filled" | "colorPalette.primary.filled" | "colorPalette.filled" | "colorPalette.colors.primary.filledHover" | "colorPalette.primary.filledHover" | "colorPalette.filledHover" | "colorPalette.colors.primary.light" | "colorPalette.primary.light" | "colorPalette.light" | "colorPalette.colors.primary.lightHover" | "colorPalette.primary.lightHover" | "colorPalette.lightHover" | "colorPalette.colors.primary.lightColor" | "colorPalette.primary.lightColor" | "colorPalette.lightColor" | "colorPalette.colors.primary.outline" | "colorPalette.primary.outline" | "colorPalette.outline" | "colorPalette.colors.primary.outlineHover" | "colorPalette.primary.outlineHover" | "colorPalette.outlineHover" | "colorPalette.colors.primary[0]" | "colorPalette.primary[0]" | "colorPalette.colors.primary[1]" | "colorPalette.primary[1]" | "colorPalette.colors.primary[2]" | "colorPalette.primary[2]" | "colorPalette.colors.primary[3]" | "colorPalette.primary[3]" | "colorPalette.colors.primary[4]" | "colorPalette.primary[4]" | "colorPalette.colors.primary[5]" | "colorPalette.primary[5]" | "colorPalette.colors.primary[6]" | "colorPalette.primary[6]" | "colorPalette.colors.primary[7]" | "colorPalette.primary[7]" | "colorPalette.colors.primary[8]" | "colorPalette.primary[8]" | "colorPalette.colors.primary[9]" | "colorPalette.primary[9]" | "colorPalette.colors.white" | "colorPalette.white" | "colorPalette.colors.text" | "colorPalette.text" | "colorPalette.colors.body" | "colorPalette.body" | "colorPalette.colors.dimmed" | "colorPalette.dimmed" | "colorPalette.colors.defaultBorder" | "colorPalette.defaultBorder" | "colorPalette.colors.defaultColor" | "colorPalette.defaultColor" | "colorPalette.colors.defaultHover" | "colorPalette.defaultHover" | "colorPalette.colors.default" | "colorPalette.default" | "colorPalette.colors.error" | "colorPalette.error" | "colorPalette.colors.placeholder" | "colorPalette.placeholder" | "colorPalette.colors.gray" | "colorPalette.gray" | "colorPalette.colors.gray.filled" | "colorPalette.gray.filled" | "colorPalette.colors.gray.filledHover" | "colorPalette.gray.filledHover" | "colorPalette.colors.gray.light" | "colorPalette.gray.light" | "colorPalette.colors.gray.lightHover" | "colorPalette.gray.lightHover" | "colorPalette.colors.gray.lightColor" | "colorPalette.gray.lightColor" | "colorPalette.colors.gray.outline" | "colorPalette.gray.outline" | "colorPalette.colors.gray.outlineHover" | "colorPalette.gray.outlineHover" | "colorPalette.colors.gray[0]" | "colorPalette.gray[0]" | "colorPalette.colors.gray[1]" | "colorPalette.gray[1]" | "colorPalette.colors.gray[2]" | "colorPalette.gray[2]" | "colorPalette.colors.gray[3]" | "colorPalette.gray[3]" | "colorPalette.colors.gray[4]" | "colorPalette.gray[4]" | "colorPalette.colors.gray[5]" | "colorPalette.gray[5]" | "colorPalette.colors.gray[6]" | "colorPalette.gray[6]" | "colorPalette.colors.gray[7]" | "colorPalette.gray[7]" | "colorPalette.colors.gray[8]" | "colorPalette.gray[8]" | "colorPalette.colors.gray[9]" | "colorPalette.gray[9]" | "colorPalette.colors.dark" | "colorPalette.dark" | "colorPalette.colors.dark.filled" | "colorPalette.dark.filled" | "colorPalette.colors.dark.filledHover" | "colorPalette.dark.filledHover" | "colorPalette.colors.dark.light" | "colorPalette.dark.light" | "colorPalette.colors.dark.lightHover" | "colorPalette.dark.lightHover" | "colorPalette.colors.dark.lightColor" | "colorPalette.dark.lightColor" | "colorPalette.colors.dark.outline" | "colorPalette.dark.outline" | "colorPalette.colors.dark.outlineHover" | "colorPalette.dark.outlineHover" | "colorPalette.colors.dark[0]" | "colorPalette.dark[0]" | "colorPalette.colors.dark[1]" | "colorPalette.dark[1]" | "colorPalette.colors.dark[2]" | "colorPalette.dark[2]" | "colorPalette.colors.dark[3]" | "colorPalette.dark[3]" | "colorPalette.colors.dark[4]" | "colorPalette.dark[4]" | "colorPalette.colors.dark[5]" | "colorPalette.dark[5]" | "colorPalette.colors.dark[6]" | "colorPalette.dark[6]" | "colorPalette.colors.dark[7]" | "colorPalette.dark[7]" | "colorPalette.colors.dark[8]" | "colorPalette.dark[8]" | "colorPalette.colors.dark[9]" | "colorPalette.dark[9]" | "colorPalette.colors.orange" | "colorPalette.orange" | "colorPalette.colors.orange.filled" | "colorPalette.orange.filled" | "colorPalette.colors.orange.filledHover" | "colorPalette.orange.filledHover" | "colorPalette.colors.orange.light" | "colorPalette.orange.light" | "colorPalette.colors.orange.lightHover" | "colorPalette.orange.lightHover" | "colorPalette.colors.orange.lightColor" | "colorPalette.orange.lightColor" | "colorPalette.colors.orange.outline" | "colorPalette.orange.outline" | "colorPalette.colors.orange.outlineHover" | "colorPalette.orange.outlineHover" | "colorPalette.colors.orange[0]" | "colorPalette.orange[0]" | "colorPalette.colors.orange[1]" | "colorPalette.orange[1]" | "colorPalette.colors.orange[2]" | "colorPalette.orange[2]" | "colorPalette.colors.orange[3]" | "colorPalette.orange[3]" | "colorPalette.colors.orange[4]" | "colorPalette.orange[4]" | "colorPalette.colors.orange[5]" | "colorPalette.orange[5]" | "colorPalette.colors.orange[6]" | "colorPalette.orange[6]" | "colorPalette.colors.orange[7]" | "colorPalette.orange[7]" | "colorPalette.colors.orange[8]" | "colorPalette.orange[8]" | "colorPalette.colors.orange[9]" | "colorPalette.orange[9]" | "colorPalette.colors.teal" | "colorPalette.teal" | "colorPalette.colors.teal.filled" | "colorPalette.teal.filled" | "colorPalette.colors.teal.filledHover" | "colorPalette.teal.filledHover" | "colorPalette.colors.teal.light" | "colorPalette.teal.light" | "colorPalette.colors.teal.lightHover" | "colorPalette.teal.lightHover" | "colorPalette.colors.teal.lightColor" | "colorPalette.teal.lightColor" | "colorPalette.colors.teal.outline" | "colorPalette.teal.outline" | "colorPalette.colors.teal.outlineHover" | "colorPalette.teal.outlineHover" | "colorPalette.colors.teal[0]" | "colorPalette.teal[0]" | "colorPalette.colors.teal[1]" | "colorPalette.teal[1]" | "colorPalette.colors.teal[2]" | "colorPalette.teal[2]" | "colorPalette.colors.teal[3]" | "colorPalette.teal[3]" | "colorPalette.colors.teal[4]" | "colorPalette.teal[4]" | "colorPalette.colors.teal[5]" | "colorPalette.teal[5]" | "colorPalette.colors.teal[6]" | "colorPalette.teal[6]" | "colorPalette.colors.teal[7]" | "colorPalette.teal[7]" | "colorPalette.colors.teal[8]" | "colorPalette.teal[8]" | "colorPalette.colors.teal[9]" | "colorPalette.teal[9]" | "colorPalette.colors.red" | "colorPalette.red" | "colorPalette.colors.red.filled" | "colorPalette.red.filled" | "colorPalette.colors.red.filledHover" | "colorPalette.red.filledHover" | "colorPalette.colors.red.light" | "colorPalette.red.light" | "colorPalette.colors.red.lightHover" | "colorPalette.red.lightHover" | "colorPalette.colors.red.lightColor" | "colorPalette.red.lightColor" | "colorPalette.colors.red.outline" | "colorPalette.red.outline" | "colorPalette.colors.red.outlineHover" | "colorPalette.red.outlineHover" | "colorPalette.colors.red[0]" | "colorPalette.red[0]" | "colorPalette.colors.red[1]" | "colorPalette.red[1]" | "colorPalette.colors.red[2]" | "colorPalette.red[2]" | "colorPalette.colors.red[3]" | "colorPalette.red[3]" | "colorPalette.colors.red[4]" | "colorPalette.red[4]" | "colorPalette.colors.red[5]" | "colorPalette.red[5]" | "colorPalette.colors.red[6]" | "colorPalette.red[6]" | "colorPalette.colors.red[7]" | "colorPalette.red[7]" | "colorPalette.colors.red[8]" | "colorPalette.red[8]" | "colorPalette.colors.red[9]" | "colorPalette.red[9]" | "colorPalette.colors.green" | "colorPalette.green" | "colorPalette.colors.green.filled" | "colorPalette.green.filled" | "colorPalette.colors.green.filledHover" | "colorPalette.green.filledHover" | "colorPalette.colors.green.light" | "colorPalette.green.light" | "colorPalette.colors.green.lightHover" | "colorPalette.green.lightHover" | "colorPalette.colors.green.lightColor" | "colorPalette.green.lightColor" | "colorPalette.colors.green.outline" | "colorPalette.green.outline" | "colorPalette.colors.green.outlineHover" | "colorPalette.green.outlineHover" | "colorPalette.colors.green[0]" | "colorPalette.green[0]" | "colorPalette.colors.green[1]" | "colorPalette.green[1]" | "colorPalette.colors.green[2]" | "colorPalette.green[2]" | "colorPalette.colors.green[3]" | "colorPalette.green[3]" | "colorPalette.colors.green[4]" | "colorPalette.green[4]" | "colorPalette.colors.green[5]" | "colorPalette.green[5]" | "colorPalette.colors.green[6]" | "colorPalette.green[6]" | "colorPalette.colors.green[7]" | "colorPalette.green[7]" | "colorPalette.colors.green[8]" | "colorPalette.green[8]" | "colorPalette.colors.green[9]" | "colorPalette.green[9]" | "colorPalette.colors.yellow" | "colorPalette.yellow" | "colorPalette.colors.yellow.filled" | "colorPalette.yellow.filled" | "colorPalette.colors.yellow.filledHover" | "colorPalette.yellow.filledHover" | "colorPalette.colors.yellow.light" | "colorPalette.yellow.light" | "colorPalette.colors.yellow.lightHover" | "colorPalette.yellow.lightHover" | "colorPalette.colors.yellow.lightColor" | "colorPalette.yellow.lightColor" | "colorPalette.colors.yellow.outline" | "colorPalette.yellow.outline" | "colorPalette.colors.yellow.outlineHover" | "colorPalette.yellow.outlineHover" | "colorPalette.colors.yellow[0]" | "colorPalette.yellow[0]" | "colorPalette.colors.yellow[1]" | "colorPalette.yellow[1]" | "colorPalette.colors.yellow[2]" | "colorPalette.yellow[2]" | "colorPalette.colors.yellow[3]" | "colorPalette.yellow[3]" | "colorPalette.colors.yellow[4]" | "colorPalette.yellow[4]" | "colorPalette.colors.yellow[5]" | "colorPalette.yellow[5]" | "colorPalette.colors.yellow[6]" | "colorPalette.yellow[6]" | "colorPalette.colors.yellow[7]" | "colorPalette.yellow[7]" | "colorPalette.colors.yellow[8]" | "colorPalette.yellow[8]" | "colorPalette.colors.yellow[9]" | "colorPalette.yellow[9]" | "colorPalette.1" | "colorPalette.2" | "colorPalette.3" | "colorPalette.4" | "colorPalette.5" | "colorPalette.6" | "colorPalette.7" | "colorPalette.8" | "colorPalette.9" | "colorPalette.10" | "colorPalette.11" | "colorPalette.12" | "colorPalette.light.1" | "colorPalette.light.2" | "colorPalette.light.3" | "colorPalette.light.4" | "colorPalette.light.5" | "colorPalette.light.6" | "colorPalette.light.7" | "colorPalette.light.8" | "colorPalette.light.9" | "colorPalette.light.10" | "colorPalette.light.11" | "colorPalette.light.12" | "colorPalette.light.a.1" | "colorPalette.a.1" | "colorPalette.light.a.2" | "colorPalette.a.2" | "colorPalette.light.a.3" | "colorPalette.a.3" | "colorPalette.light.a.4" | "colorPalette.a.4" | "colorPalette.light.a.5" | "colorPalette.a.5" | "colorPalette.light.a.6" | "colorPalette.a.6" | "colorPalette.light.a.7" | "colorPalette.a.7" | "colorPalette.light.a.8" | "colorPalette.a.8" | "colorPalette.light.a.9" | "colorPalette.a.9" | "colorPalette.light.a.10" | "colorPalette.a.10" | "colorPalette.light.a.11" | "colorPalette.a.11" | "colorPalette.light.a.12" | "colorPalette.a.12" | "colorPalette.light.p3.1" | "colorPalette.p3.1" | "colorPalette.light.p3.2" | "colorPalette.p3.2" | "colorPalette.light.p3.3" | "colorPalette.p3.3" | "colorPalette.light.p3.4" | "colorPalette.p3.4" | "colorPalette.light.p3.5" | "colorPalette.p3.5" | "colorPalette.light.p3.6" | "colorPalette.p3.6" | "colorPalette.light.p3.7" | "colorPalette.p3.7" | "colorPalette.light.p3.8" | "colorPalette.p3.8" | "colorPalette.light.p3.9" | "colorPalette.p3.9" | "colorPalette.light.p3.10" | "colorPalette.p3.10" | "colorPalette.light.p3.11" | "colorPalette.p3.11" | "colorPalette.light.p3.12" | "colorPalette.p3.12" | "colorPalette.light.p3.a.1" | "colorPalette.p3.a.1" | "colorPalette.light.p3.a.2" | "colorPalette.p3.a.2" | "colorPalette.light.p3.a.3" | "colorPalette.p3.a.3" | "colorPalette.light.p3.a.4" | "colorPalette.p3.a.4" | "colorPalette.light.p3.a.5" | "colorPalette.p3.a.5" | "colorPalette.light.p3.a.6" | "colorPalette.p3.a.6" | "colorPalette.light.p3.a.7" | "colorPalette.p3.a.7" | "colorPalette.light.p3.a.8" | "colorPalette.p3.a.8" | "colorPalette.light.p3.a.9" | "colorPalette.p3.a.9" | "colorPalette.light.p3.a.10" | "colorPalette.p3.a.10" | "colorPalette.light.p3.a.11" | "colorPalette.p3.a.11" | "colorPalette.light.p3.a.12" | "colorPalette.p3.a.12" | "colorPalette.dark.1" | "colorPalette.dark.2" | "colorPalette.dark.3" | "colorPalette.dark.4" | "colorPalette.dark.5" | "colorPalette.dark.6" | "colorPalette.dark.7" | "colorPalette.dark.8" | "colorPalette.dark.9" | "colorPalette.dark.10" | "colorPalette.dark.11" | "colorPalette.dark.12" | "colorPalette.dark.a.1" | "colorPalette.dark.a.2" | "colorPalette.dark.a.3" | "colorPalette.dark.a.4" | "colorPalette.dark.a.5" | "colorPalette.dark.a.6" | "colorPalette.dark.a.7" | "colorPalette.dark.a.8" | "colorPalette.dark.a.9" | "colorPalette.dark.a.10" | "colorPalette.dark.a.11" | "colorPalette.dark.a.12" | "colorPalette.dark.p3.1" | "colorPalette.dark.p3.2" | "colorPalette.dark.p3.3" | "colorPalette.dark.p3.4" | "colorPalette.dark.p3.5" | "colorPalette.dark.p3.6" | "colorPalette.dark.p3.7" | "colorPalette.dark.p3.8" | "colorPalette.dark.p3.9" | "colorPalette.dark.p3.10" | "colorPalette.dark.p3.11" | "colorPalette.dark.p3.12" | "colorPalette.dark.p3.a.1" | "colorPalette.dark.p3.a.2" | "colorPalette.dark.p3.a.3" | "colorPalette.dark.p3.a.4" | "colorPalette.dark.p3.a.5" | "colorPalette.dark.p3.a.6" | "colorPalette.dark.p3.a.7" | "colorPalette.dark.p3.a.8" | "colorPalette.dark.p3.a.9" | "colorPalette.dark.p3.a.10" | "colorPalette.dark.p3.a.11" | "colorPalette.dark.p3.a.12" | "colorPalette.background" | "colorPalette.background.pattern" | "colorPalette.pattern" | "colorPalette.mixColor" | "colorPalette.tag.bg" | "colorPalette.bg" | "colorPalette.tag.bg.hover" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.tag.border" | "colorPalette.border" | "colorPalette.tag.text" | "colorPalette.panel.bg" | "colorPalette.panel.border" | "colorPalette.panel.action-icon.text" | "colorPalette.action-icon.text" | "colorPalette.panel.action-icon.text.hover" | "colorPalette.action-icon.text.hover" | "colorPalette.text.hover" | "colorPalette.panel.action-icon.text.disabled" | "colorPalette.action-icon.text.disabled" | "colorPalette.text.disabled" | "colorPalette.disabled" | "colorPalette.panel.action-icon.bg" | "colorPalette.action-icon.bg" | "colorPalette.panel.action-icon.bg.hover" | "colorPalette.action-icon.bg.hover" | "colorPalette.dropdown.bg" | "colorPalette.dropdown.border" | "colorPalette.overlay.backdrop" | "colorPalette.backdrop" | "colorPalette.overlay.body" | "colorPalette.overlay.border"
|
|
13
13
|
|
|
14
14
|
export type BorderToken = "none" | "transparent" | "default"
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@likec4/styles",
|
|
3
3
|
"description": "Shared PandaCSS preset and generated styles, used in LikeC4",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.43.0",
|
|
6
6
|
"bugs": "https://github.com/likec4/likec4/issues",
|
|
7
7
|
"homepage": "https://likec4.dev",
|
|
8
8
|
"author": "Denis Davydkov <denis@davydkov.com>",
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"./dev": "./dev.ts"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
|
-
"@pandacss/dev": "^1.4.
|
|
75
|
-
"@pandacss/types": "^1.4.
|
|
74
|
+
"@pandacss/dev": "^1.4.3",
|
|
75
|
+
"@pandacss/types": "^1.4.3",
|
|
76
76
|
"react": "^18.x || ^19.x",
|
|
77
77
|
"@types/react": "^18.x || ^19.x"
|
|
78
78
|
},
|
|
@@ -85,22 +85,22 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@types/node": "~20.19.
|
|
88
|
+
"@types/node": "~20.19.22",
|
|
89
89
|
"@pandabox/panda-plugins": "^0.0.8",
|
|
90
90
|
"@pandabox/utils": "^0.0.5",
|
|
91
91
|
"@pandabox/unplugin": "^0.2.2",
|
|
92
|
-
"@pandacss/dev": "^1.4.
|
|
93
|
-
"@pandacss/types": "^1.4.
|
|
92
|
+
"@pandacss/dev": "^1.4.3",
|
|
93
|
+
"@pandacss/types": "^1.4.3",
|
|
94
94
|
"@types/picomatch": "^4.0.2",
|
|
95
95
|
"@types/react": "19.1.16",
|
|
96
96
|
"@types/react-dom": "19.1.9",
|
|
97
97
|
"postcss": "8.5.6",
|
|
98
98
|
"nano-spawn": "^1.0.3",
|
|
99
99
|
"unbuild": "3.5.0",
|
|
100
|
-
"typescript": "5.9.
|
|
101
|
-
"@likec4/style-preset": "1.
|
|
100
|
+
"typescript": "5.9.3",
|
|
101
|
+
"@likec4/style-preset": "1.43.0",
|
|
102
102
|
"@likec4/devops": "1.42.0",
|
|
103
|
-
"@likec4/tsconfig": "1.
|
|
103
|
+
"@likec4/tsconfig": "1.43.0"
|
|
104
104
|
},
|
|
105
105
|
"scripts": {
|
|
106
106
|
"typecheck": "tsc --build --verbose",
|