@likec4/styles 1.57.0 → 1.59.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/dev.mjs +15 -8
- package/dist/css/conditions.mjs +1 -1
- package/dist/jsx/create-style-context.mjs +4 -1
- package/dist/jsx/is-valid-prop.mjs +1 -1
- package/dist/patterns/txt.d.mts +1 -1
- package/dist/patterns/txt.mjs +8 -3
- package/dist/recipes/likec4tag.d.mts +1 -4
- package/dist/recipes/likec4tag.mjs +2 -9
- package/dist/tokens/index.mjs +1606 -10966
- package/dist/tokens/tokens.d.mts +25 -13
- package/dist/types/conditions.d.mts +0 -2
- package/dist/types/prop-type.d.mts +7 -2
- package/dist/types/style-props.d.mts +11 -11
- package/package.json +31 -61
- package/dev.d.mts +0 -3
- package/dist/types/index.mjs +0 -1
- package/postcss.d.mts +0 -6
- package/postcss.mjs +0 -2
- package/preset/_chunks/libs/@radix-ui/colors.mjs +0 -3786
- package/preset/_chunks/libs/pandacss-preset-radix-colors.mjs +0 -149
- package/preset/_chunks/libs/remeda.mjs +0 -148
- package/preset/_chunks/rolldown-runtime.mjs +0 -13
- package/preset/package.json +0 -4
- package/preset/preset.d.mts +0 -1466
- package/preset/preset.mjs +0 -4075
- package/types/package.json +0 -4
- package/vars/package.json +0 -4
- package/vars/vars.d.mts +0 -417
- package/vars/vars.mjs +0 -418
package/dist/tokens/tokens.d.mts
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
export type Token = "fontSizes.${FontSizeToken}" | "lineHeights.${LineHeightToken}" | "sizes.${SizeToken}" | "borders.${BorderToken}" | "borderWidths.${BorderWidthToken}" | "spacing.${SpacingToken}" | "radii.${RadiusToken}" | "colors.${ColorToken}" | "
|
|
2
|
+
export type Token = "fontWeights.${FontWeightToken}" | "fontSizes.${FontSizeToken}" | "lineHeights.${LineHeightToken}" | "fonts.${FontToken}" | "letterSpacings.${LetterSpacingToken}" | "sizes.${SizeToken}" | "borders.${BorderToken}" | "borderWidths.${BorderWidthToken}" | "spacing.${SpacingToken}" | "radii.${RadiusToken}" | "colors.${ColorToken}" | "easings.${EasingToken}" | "durations.${DurationToken}" | "shadows.${ShadowToken}" | "zIndex.${ZIndexToken}" | "opacity.${OpacityToken}" | "cursor.${CursorToken}" | "blurs.${BlurToken}" | "breakpoints.${BreakpointToken}"
|
|
3
3
|
|
|
4
|
-
export type ColorPalette = "
|
|
4
|
+
export type ColorPalette = "subflow" | "subflow.opt" | "subflow.loop" | "subflow.try" | "subflow.break" | "subflow.par" | "subflow.alt"
|
|
5
|
+
|
|
6
|
+
export type FontWeightToken = "normal" | "medium" | "semibold" | "bold" | "extrabold"
|
|
5
7
|
|
|
6
8
|
export type FontSizeToken = "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "likec4.xs" | "likec4.sm" | "likec4.md" | "likec4.lg" | "likec4.xl"
|
|
7
9
|
|
|
8
10
|
export type LineHeightToken = "1" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl"
|
|
9
11
|
|
|
10
|
-
export type
|
|
12
|
+
export type FontToken = "mono" | "body" | "likec4" | "likec4.element" | "likec4.compound" | "likec4.relation"
|
|
13
|
+
|
|
14
|
+
export type LetterSpacingToken = "tighter" | "tight" | "normal" | "wide" | "wider" | "widest"
|
|
15
|
+
|
|
16
|
+
export type SizeToken = "0" | "auto" | "max-content" | "min-content" | "fit-content" | "stretch" | "100cqw" | "100cqh" | "100vw" | "100vh" | "100%" | "50%" | "spacing.0" | "spacing.1" | "spacing.2" | "spacing.3" | "spacing.4" | "spacing.5" | "spacing.6" | "spacing.7" | "spacing.8" | "spacing.9" | "spacing.10" | "spacing.12" | "spacing.16" | "spacing.0.5" | "spacing.1.5" | "spacing.2.5" | "spacing.3.5" | "spacing.4.5" | "spacing.xxs" | "spacing.xs" | "spacing.sm" | "spacing.md" | "spacing.lg" | "spacing.xl" | "spacing.likec4.xs" | "spacing.likec4.sm" | "spacing.likec4.md" | "spacing.likec4.lg" | "spacing.likec4.xl" | "full" | "action-icon" | "icon" | "icon.xxs" | "icon.xs" | "icon.sm" | "icon.md" | "icon.lg" | "icon.xl" | "breakpoint-xs" | "breakpoint-sm" | "breakpoint-md" | "breakpoint-lg" | "breakpoint-xl"
|
|
11
17
|
|
|
12
18
|
export type BorderToken = "none" | "transparent" | "default"
|
|
13
19
|
|
|
@@ -15,39 +21,45 @@ export type BorderWidthToken = "0" | "1" | "2" | "3" | "4"
|
|
|
15
21
|
|
|
16
22
|
export type SpacingToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "12" | "16" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "likec4.xs" | "likec4.sm" | "likec4.md" | "likec4.lg" | "likec4.xl"
|
|
17
23
|
|
|
18
|
-
export type RadiusToken = "0" | "xs" | "sm" | "md" | "lg" | "xl"
|
|
24
|
+
export type RadiusToken = "0" | "xs" | "sm" | "md" | "lg" | "xl" | "pill"
|
|
19
25
|
|
|
20
|
-
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" | "inherit" | "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" | "white" | "black" | "body" | "text" | "text.bright" | "text.dimmed" | "text.placeholder" | "default" | "default.color" | "default.border" | "default.hover" | "disabled.text" | "disabled.border" | "disabled.body" | "likec4.background" | "likec4.background.pattern" | "likec4.mixColor" | "likec4.tag.bg" | "likec4.tag.bg.hover" | "likec4.tag.border" | "likec4.tag.text" | "likec4.panel.bg" | "likec4.panel.border" | "likec4.panel.text" | "likec4.panel.text.dimmed" | "likec4.panel.action" | "likec4.panel.action.disabled" | "likec4.panel.action.hover" | "likec4.panel.action.bg" | "likec4.panel.action.bg.hover" | "likec4.panel.action.warning" | "likec4.panel.action.warning.hover" | "likec4.panel.action.warning.bg" | "likec4.panel.action.warning.bg.hover" | "likec4.dropdown.bg" | "likec4.dropdown.border" | "likec4.overlay.backdrop" | "likec4.overlay.body" | "likec4.overlay.border" | "likec4.compare.latest" | "likec4.walkthrough.parallelFrame" | "likec4.compare.manual" | "likec4.compare.manual.outline" | "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.bright" | "colorPalette.color" | "colorPalette.border" | "colorPalette.hover" | "colorPalette.background" | "colorPalette.background.pattern" | "colorPalette.pattern" | "colorPalette.mixColor" | "colorPalette.tag.bg" | "colorPalette.bg" | "colorPalette.tag.bg.hover" | "colorPalette.bg.hover" | "colorPalette.tag.border" | "colorPalette.tag.text" | "colorPalette.panel.bg" | "colorPalette.panel.border" | "colorPalette.panel.text" | "colorPalette.panel.text.dimmed" | "colorPalette.text.dimmed" | "colorPalette.panel.action" | "colorPalette.action" | "colorPalette.panel.action.disabled" | "colorPalette.action.disabled" | "colorPalette.disabled" | "colorPalette.panel.action.hover" | "colorPalette.action.hover" | "colorPalette.panel.action.bg" | "colorPalette.action.bg" | "colorPalette.panel.action.bg.hover" | "colorPalette.action.bg.hover" | "colorPalette.panel.action.warning" | "colorPalette.action.warning" | "colorPalette.warning" | "colorPalette.panel.action.warning.hover" | "colorPalette.action.warning.hover" | "colorPalette.warning.hover" | "colorPalette.panel.action.warning.bg" | "colorPalette.action.warning.bg" | "colorPalette.warning.bg" | "colorPalette.panel.action.warning.bg.hover" | "colorPalette.action.warning.bg.hover" | "colorPalette.warning.bg.hover" | "colorPalette.dropdown.bg" | "colorPalette.dropdown.border" | "colorPalette.overlay.backdrop" | "colorPalette.backdrop" | "colorPalette.overlay.body" | "colorPalette.overlay.border" | "colorPalette.walkthrough.parallelFrame" | "colorPalette.parallelFrame" | "colorPalette.compare.manual" | "colorPalette.manual" | "colorPalette.compare.manual.outline" | "colorPalette.manual.outline" | "colorPalette.compare.latest" | "colorPalette.latest"
|
|
21
|
-
|
|
22
|
-
export type FontWeightToken = "normal" | "medium" | "bold" | "bolder"
|
|
23
|
-
|
|
24
|
-
export type FontToken = "mono" | "body" | "likec4" | "likec4.element" | "likec4.compound" | "likec4.relation"
|
|
26
|
+
export type ColorToken = "mantine.primary" | "mantine.primary.filled" | "mantine.primary.filledHover" | "mantine.primary.light" | "mantine.primary.lightHover" | "mantine.primary.lightColor" | "mantine.primary.outline" | "mantine.primary.outlineHover" | "mantine.primary[0]" | "mantine.primary[1]" | "mantine.primary[2]" | "mantine.primary[3]" | "mantine.primary[4]" | "mantine.primary[5]" | "mantine.primary[6]" | "mantine.primary[7]" | "mantine.primary[8]" | "mantine.primary[9]" | "mantine.white" | "mantine.text" | "mantine.body" | "mantine.dimmed" | "mantine.defaultBorder" | "mantine.defaultColor" | "mantine.defaultHover" | "mantine.default" | "mantine.error" | "mantine.placeholder" | "mantine.gray" | "mantine.gray.filled" | "mantine.gray.filledHover" | "mantine.gray.light" | "mantine.gray.lightHover" | "mantine.gray.lightColor" | "mantine.gray.outline" | "mantine.gray.outlineHover" | "mantine.gray[0]" | "mantine.gray[1]" | "mantine.gray[2]" | "mantine.gray[3]" | "mantine.gray[4]" | "mantine.gray[5]" | "mantine.gray[6]" | "mantine.gray[7]" | "mantine.gray[8]" | "mantine.gray[9]" | "mantine.dark" | "mantine.dark.filled" | "mantine.dark.filledHover" | "mantine.dark.light" | "mantine.dark.lightHover" | "mantine.dark.lightColor" | "mantine.dark.outline" | "mantine.dark.outlineHover" | "mantine.dark[0]" | "mantine.dark[1]" | "mantine.dark[2]" | "mantine.dark[3]" | "mantine.dark[4]" | "mantine.dark[5]" | "mantine.dark[6]" | "mantine.dark[7]" | "mantine.dark[8]" | "mantine.dark[9]" | "mantine.orange" | "mantine.orange.filled" | "mantine.orange.filledHover" | "mantine.orange.light" | "mantine.orange.lightHover" | "mantine.orange.lightColor" | "mantine.orange.outline" | "mantine.orange.outlineHover" | "mantine.orange[0]" | "mantine.orange[1]" | "mantine.orange[2]" | "mantine.orange[3]" | "mantine.orange[4]" | "mantine.orange[5]" | "mantine.orange[6]" | "mantine.orange[7]" | "mantine.orange[8]" | "mantine.orange[9]" | "mantine.teal" | "mantine.teal.filled" | "mantine.teal.filledHover" | "mantine.teal.light" | "mantine.teal.lightHover" | "mantine.teal.lightColor" | "mantine.teal.outline" | "mantine.teal.outlineHover" | "mantine.teal[0]" | "mantine.teal[1]" | "mantine.teal[2]" | "mantine.teal[3]" | "mantine.teal[4]" | "mantine.teal[5]" | "mantine.teal[6]" | "mantine.teal[7]" | "mantine.teal[8]" | "mantine.teal[9]" | "mantine.red" | "mantine.red.filled" | "mantine.red.filledHover" | "mantine.red.light" | "mantine.red.lightHover" | "mantine.red.lightColor" | "mantine.red.outline" | "mantine.red.outlineHover" | "mantine.red[0]" | "mantine.red[1]" | "mantine.red[2]" | "mantine.red[3]" | "mantine.red[4]" | "mantine.red[5]" | "mantine.red[6]" | "mantine.red[7]" | "mantine.red[8]" | "mantine.red[9]" | "mantine.green" | "mantine.green.filled" | "mantine.green.filledHover" | "mantine.green.light" | "mantine.green.lightHover" | "mantine.green.lightColor" | "mantine.green.outline" | "mantine.green.outlineHover" | "mantine.green[0]" | "mantine.green[1]" | "mantine.green[2]" | "mantine.green[3]" | "mantine.green[4]" | "mantine.green[5]" | "mantine.green[6]" | "mantine.green[7]" | "mantine.green[8]" | "mantine.green[9]" | "mantine.yellow" | "mantine.yellow.filled" | "mantine.yellow.filledHover" | "mantine.yellow.light" | "mantine.yellow.lightHover" | "mantine.yellow.lightColor" | "mantine.yellow.outline" | "mantine.yellow.outlineHover" | "mantine.yellow[0]" | "mantine.yellow[1]" | "mantine.yellow[2]" | "mantine.yellow[3]" | "mantine.yellow[4]" | "mantine.yellow[5]" | "mantine.yellow[6]" | "mantine.yellow[7]" | "mantine.yellow[8]" | "mantine.yellow[9]" | "transparent" | "none" | "inherit" | "current" | "currentColor" | "white" | "black" | "text" | "text.bright" | "text.dimmed" | "text.placeholder" | "default" | "default.color" | "default.border" | "default.hover" | "disabled.text" | "disabled.border" | "disabled.body" | "surface.canvas" | "surface.default" | "surface.default.border" | "surface.sunken" | "surface.sunken.border" | "surface.sunken.hover" | "body" | "diagram.background" | "diagram.background.pattern" | "likec4.background" | "likec4.background.pattern" | "likec4.mixColor" | "likec4.tag.bg" | "likec4.tag.bg.hover" | "likec4.tag.border" | "likec4.tag.text" | "likec4.panel.bg" | "likec4.panel.border" | "likec4.panel.text" | "likec4.panel.text.dimmed" | "likec4.panel.action" | "likec4.panel.action.disabled" | "likec4.panel.action.hover" | "likec4.panel.action.bg" | "likec4.panel.action.bg.hover" | "likec4.panel.action.warning" | "likec4.panel.action.warning.hover" | "likec4.panel.action.warning.bg" | "likec4.panel.action.warning.bg.hover" | "likec4.dropdown.bg" | "likec4.dropdown.border" | "likec4.overlay.backdrop" | "likec4.overlay.body" | "likec4.overlay.border" | "likec4.compare.latest" | "subflow.opt" | "subflow.opt.hovered" | "subflow.opt.text" | "subflow.opt.border" | "subflow.opt.label" | "subflow.loop" | "subflow.loop.hovered" | "subflow.loop.text" | "subflow.loop.border" | "subflow.loop.header" | "subflow.loop.label" | "subflow.try" | "subflow.try.hovered" | "subflow.try.text" | "subflow.try.border" | "subflow.try.header" | "subflow.try.label" | "subflow.break" | "subflow.break.hovered" | "subflow.break.text" | "subflow.break.border" | "subflow.break.header" | "subflow.break.label" | "subflow.par" | "subflow.par.hovered" | "subflow.par.text" | "subflow.par.border" | "subflow.par.header" | "subflow.par.label" | "subflow.alt" | "subflow.alt.hovered" | "subflow.alt.header" | "subflow.alt.text" | "subflow.alt.border" | "subflow.alt.label" | "amber.1" | "amber.2" | "amber.3" | "amber.4" | "amber.5" | "amber.6" | "amber.7" | "amber.8" | "amber.9" | "amber.10" | "amber.11" | "amber.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" | "crimson.1" | "crimson.2" | "crimson.3" | "crimson.4" | "crimson.5" | "crimson.6" | "crimson.7" | "crimson.8" | "crimson.9" | "crimson.10" | "crimson.11" | "crimson.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" | "indigo.1" | "indigo.2" | "indigo.3" | "indigo.4" | "indigo.5" | "indigo.6" | "indigo.7" | "indigo.8" | "indigo.9" | "indigo.10" | "indigo.11" | "indigo.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" | "orange.1" | "orange.2" | "orange.3" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "orange.11" | "orange.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" | "purple.1" | "purple.2" | "purple.3" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "purple.11" | "purple.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" | "ruby.1" | "ruby.2" | "ruby.3" | "ruby.4" | "ruby.5" | "ruby.6" | "ruby.7" | "ruby.8" | "ruby.9" | "ruby.10" | "ruby.11" | "ruby.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" | "tomato.1" | "tomato.2" | "tomato.3" | "tomato.4" | "tomato.5" | "tomato.6" | "tomato.7" | "tomato.8" | "tomato.9" | "tomato.10" | "tomato.11" | "tomato.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" | "yellow.1" | "yellow.2" | "yellow.3" | "yellow.4" | "yellow.5" | "yellow.6" | "yellow.7" | "yellow.8" | "yellow.9" | "yellow.10" | "yellow.11" | "yellow.12" | "likec4.walkthrough.parallelFrame" | "likec4.compare.manual" | "likec4.compare.manual.outline" | "colorPalette.opt" | "colorPalette" | "colorPalette.opt.hovered" | "colorPalette.hovered" | "colorPalette.opt.text" | "colorPalette.text" | "colorPalette.opt.border" | "colorPalette.border" | "colorPalette.opt.label" | "colorPalette.label" | "colorPalette.loop" | "colorPalette.loop.hovered" | "colorPalette.loop.text" | "colorPalette.loop.border" | "colorPalette.loop.header" | "colorPalette.header" | "colorPalette.loop.label" | "colorPalette.try" | "colorPalette.try.hovered" | "colorPalette.try.text" | "colorPalette.try.border" | "colorPalette.try.header" | "colorPalette.try.label" | "colorPalette.break" | "colorPalette.break.hovered" | "colorPalette.break.text" | "colorPalette.break.border" | "colorPalette.break.header" | "colorPalette.break.label" | "colorPalette.par" | "colorPalette.par.hovered" | "colorPalette.par.text" | "colorPalette.par.border" | "colorPalette.par.header" | "colorPalette.par.label" | "colorPalette.alt" | "colorPalette.alt.hovered" | "colorPalette.alt.header" | "colorPalette.alt.text" | "colorPalette.alt.border" | "colorPalette.alt.label"
|
|
25
27
|
|
|
26
28
|
export type EasingToken = "default" | "in" | "out" | "inOut"
|
|
27
29
|
|
|
28
|
-
export type DurationToken = "fastest" | "faster" | "fast" | "normal" | "slow" | "slower" | "slowest"
|
|
30
|
+
export type DurationToken = "0" | "fastest" | "faster" | "fast" | "normal" | "slow" | "slower" | "slowest"
|
|
29
31
|
|
|
30
32
|
export type ShadowToken = "none" | "xs" | "sm" | "md" | "lg" | "xl"
|
|
31
33
|
|
|
32
|
-
export type ZIndexToken = "0" | "1" | "-1" | "likec4.diagram.edge" | "likec4.diagram.edge.label" | "likec4.diagram.edge.controlPoint" | "likec4.diagram.node.compound" | "likec4.diagram.node.element" | "likec4.dropdown" | "likec4.panel" | "likec4.panel.dropdown"
|
|
34
|
+
export type ZIndexToken = "0" | "1" | "-1" | "likec4.diagram.edge" | "likec4.diagram.edge.label" | "likec4.diagram.edge.controlPoint" | "likec4.diagram.node.compound" | "likec4.diagram.node.element" | "likec4.dropdown" | "likec4.panel" | "likec4.panel.dropdown" | "likec4.floatingWindow"
|
|
35
|
+
|
|
36
|
+
export type OpacityToken = "0" | "1" | "0.5" | "0.7" | "0.9"
|
|
37
|
+
|
|
38
|
+
export type CursorToken = "default" | "pointer" | "none"
|
|
39
|
+
|
|
40
|
+
export type BlurToken = "1" | "2" | "4" | ".5"
|
|
33
41
|
|
|
34
42
|
export type BreakpointToken = "xs" | "sm" | "md" | "lg" | "xl"
|
|
35
43
|
|
|
36
44
|
export type Tokens = {
|
|
45
|
+
fontWeights: FontWeightToken
|
|
37
46
|
fontSizes: FontSizeToken
|
|
38
47
|
lineHeights: LineHeightToken
|
|
48
|
+
fonts: FontToken
|
|
49
|
+
letterSpacings: LetterSpacingToken
|
|
39
50
|
sizes: SizeToken
|
|
40
51
|
borders: BorderToken
|
|
41
52
|
borderWidths: BorderWidthToken
|
|
42
53
|
spacing: SpacingToken
|
|
43
54
|
radii: RadiusToken
|
|
44
55
|
colors: ColorToken
|
|
45
|
-
fontWeights: FontWeightToken
|
|
46
|
-
fonts: FontToken
|
|
47
56
|
easings: EasingToken
|
|
48
57
|
durations: DurationToken
|
|
49
58
|
shadows: ShadowToken
|
|
50
59
|
zIndex: ZIndexToken
|
|
60
|
+
opacity: OpacityToken
|
|
61
|
+
cursor: CursorToken
|
|
62
|
+
blurs: BlurToken
|
|
51
63
|
breakpoints: BreakpointToken
|
|
52
64
|
} & { [token: string]: never }
|
|
53
65
|
|
|
@@ -272,8 +272,6 @@ export interface Conditions {
|
|
|
272
272
|
"_whenDimmed": string
|
|
273
273
|
/** `:where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) &` */
|
|
274
274
|
"_whenFocused": string
|
|
275
|
-
/** `@media (color-gamut: p3)` */
|
|
276
|
-
"_p3": string
|
|
277
275
|
/** `@media screen and (min-width: 36rem)` */
|
|
278
276
|
"xs": string
|
|
279
277
|
/** `@media screen and (min-width: 36rem) and (max-width: 47.9975rem)` */
|
|
@@ -83,6 +83,7 @@ export interface UtilityValues {
|
|
|
83
83
|
fontSize: Tokens["fontSizes"];
|
|
84
84
|
fontWeight: Tokens["fontWeights"];
|
|
85
85
|
fontSmoothing: "antialiased" | "subpixel-antialiased";
|
|
86
|
+
letterSpacing: Tokens["letterSpacings"];
|
|
86
87
|
lineHeight: Tokens["lineHeights"];
|
|
87
88
|
textDecorationColor: Tokens["colors"];
|
|
88
89
|
textEmphasisColor: Tokens["colors"];
|
|
@@ -148,10 +149,13 @@ export interface UtilityValues {
|
|
|
148
149
|
borderBlockEndColor: Tokens["colors"];
|
|
149
150
|
borderBlockStart: Tokens["borders"];
|
|
150
151
|
borderBlockStartColor: Tokens["colors"];
|
|
152
|
+
opacity: Tokens["opacity"];
|
|
151
153
|
boxShadow: Tokens["shadows"];
|
|
152
154
|
boxShadowColor: Tokens["colors"];
|
|
153
155
|
filter: "auto";
|
|
156
|
+
blur: Tokens["blurs"];
|
|
154
157
|
backdropFilter: "auto";
|
|
158
|
+
backdropBlur: Tokens["blurs"];
|
|
155
159
|
borderSpacing: Tokens["spacing"] | "auto";
|
|
156
160
|
borderSpacingX: Tokens["spacing"];
|
|
157
161
|
borderSpacingY: Tokens["spacing"];
|
|
@@ -209,9 +213,10 @@ export interface UtilityValues {
|
|
|
209
213
|
strokeWidth: Tokens["borderWidths"];
|
|
210
214
|
srOnly: boolean;
|
|
211
215
|
debug: boolean;
|
|
212
|
-
|
|
216
|
+
cursor: Tokens["cursor"];
|
|
217
|
+
colorPalette: "subflow" | "subflow.opt" | "subflow.loop" | "subflow.try" | "subflow.break" | "subflow.par" | "subflow.alt";
|
|
213
218
|
textStyle: "dimmed" | "dimmed.xxs" | "dimmed.xs" | "dimmed.sm" | "dimmed.md" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "likec4" | "likec4.panel" | "likec4.panel.action";
|
|
214
|
-
layerStyle: "likec4.tag" | "likec4.panel" | "likec4.panel.action" | "likec4.panel.action.filled" | "likec4.dropdown";
|
|
219
|
+
layerStyle: "surface.sunken" | "likec4.tag" | "likec4.panel" | "likec4.panel.action" | "likec4.panel.action.filled" | "likec4.dropdown";
|
|
215
220
|
animationStyle: "indicator" | "xyedgeAnimated";
|
|
216
221
|
}
|
|
217
222
|
|
|
@@ -1659,7 +1659,7 @@ boxDecorationBreak?: ConditionalValue<WithEscapeHatch<CssVars | CssProperties["b
|
|
|
1659
1659
|
*
|
|
1660
1660
|
* @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-shadow
|
|
1661
1661
|
*/
|
|
1662
|
-
boxShadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars
|
|
1662
|
+
boxShadow?: ConditionalValue<WithEscapeHatch<UtilityValues["boxShadow"] | CssVars>>
|
|
1663
1663
|
/**
|
|
1664
1664
|
* This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
|
|
1665
1665
|
*
|
|
@@ -2196,7 +2196,7 @@ counterSet?: ConditionalValue<WithEscapeHatch<CssProperties["counterSet"]>>
|
|
|
2196
2196
|
*
|
|
2197
2197
|
* @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/cursor
|
|
2198
2198
|
*/
|
|
2199
|
-
cursor?: ConditionalValue<
|
|
2199
|
+
cursor?: ConditionalValue<UtilityValues["cursor"] | CssVars | CssProperties["cursor"]>
|
|
2200
2200
|
/**
|
|
2201
2201
|
* This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2020.
|
|
2202
2202
|
*
|
|
@@ -3446,7 +3446,7 @@ left?: ConditionalValue<WithEscapeHatch<UtilityValues["left"] | CssVars>>
|
|
|
3446
3446
|
*
|
|
3447
3447
|
* @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing
|
|
3448
3448
|
*/
|
|
3449
|
-
letterSpacing?: ConditionalValue<
|
|
3449
|
+
letterSpacing?: ConditionalValue<UtilityValues["letterSpacing"] | CssVars | CssProperties["letterSpacing"]>
|
|
3450
3450
|
/**
|
|
3451
3451
|
* This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
|
|
3452
3452
|
*
|
|
@@ -4336,7 +4336,7 @@ offsetRotate?: ConditionalValue<WithEscapeHatch<CssProperties["offsetRotate"]>>
|
|
|
4336
4336
|
*
|
|
4337
4337
|
* @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/opacity
|
|
4338
4338
|
*/
|
|
4339
|
-
opacity?: ConditionalValue<
|
|
4339
|
+
opacity?: ConditionalValue<UtilityValues["opacity"] | CssVars | CssProperties["opacity"]>
|
|
4340
4340
|
/**
|
|
4341
4341
|
* This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
|
|
4342
4342
|
*
|
|
@@ -6174,7 +6174,7 @@ textRendering?: ConditionalValue<WithEscapeHatch<CssProperties["textRendering"]>
|
|
|
6174
6174
|
*
|
|
6175
6175
|
* @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow
|
|
6176
6176
|
*/
|
|
6177
|
-
textShadow?: ConditionalValue<UtilityValues["textShadow"] | CssVars
|
|
6177
|
+
textShadow?: ConditionalValue<WithEscapeHatch<UtilityValues["textShadow"] | CssVars>>
|
|
6178
6178
|
/**
|
|
6179
6179
|
* This feature is not Baseline because it does not work in some of the most widely-used browsers.
|
|
6180
6180
|
*
|
|
@@ -7892,7 +7892,7 @@ borderEndColor?: ConditionalValue<WithEscapeHatch<UtilityValues["borderInlineEnd
|
|
|
7892
7892
|
*
|
|
7893
7893
|
* @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-shadow
|
|
7894
7894
|
*/
|
|
7895
|
-
shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars
|
|
7895
|
+
shadow?: ConditionalValue<WithEscapeHatch<UtilityValues["boxShadow"] | CssVars>>
|
|
7896
7896
|
shadowColor?: ConditionalValue<WithEscapeHatch<UtilityValues["boxShadowColor"] | CssVars>>
|
|
7897
7897
|
z?: ConditionalValue<WithEscapeHatch<UtilityValues["translateZ"] | CssVars>>
|
|
7898
7898
|
/**
|
|
@@ -7986,8 +7986,8 @@ scrollPaddingX?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingIn
|
|
|
7986
7986
|
saturate?: ConditionalValue<string | number | CssProperties["saturate"]>
|
|
7987
7987
|
sepia?: ConditionalValue<string | number | CssProperties["sepia"]>
|
|
7988
7988
|
dropShadow?: ConditionalValue<string | number | CssProperties["dropShadow"]>
|
|
7989
|
-
blur?: ConditionalValue<
|
|
7990
|
-
backdropBlur?: ConditionalValue<
|
|
7989
|
+
blur?: ConditionalValue<UtilityValues["blur"] | CssVars | CssProperties["blur"]>
|
|
7990
|
+
backdropBlur?: ConditionalValue<UtilityValues["backdropBlur"] | CssVars | CssProperties["backdropBlur"]>
|
|
7991
7991
|
backdropBrightness?: ConditionalValue<string | number | CssProperties["backdropBrightness"]>
|
|
7992
7992
|
backdropContrast?: ConditionalValue<string | number | CssProperties["backdropContrast"]>
|
|
7993
7993
|
backdropGrayscale?: ConditionalValue<string | number | CssProperties["backdropGrayscale"]>
|
|
@@ -8085,11 +8085,11 @@ scrollSnapMarginRight?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollSn
|
|
|
8085
8085
|
srOnly?: ConditionalValue<UtilityValues["srOnly"] | CssVars | CssProperties["srOnly"]>
|
|
8086
8086
|
debug?: ConditionalValue<UtilityValues["debug"] | CssVars | CssProperties["debug"]>
|
|
8087
8087
|
colorPalette?: ConditionalValue<UtilityValues["colorPalette"] | CssVars | CssProperties["colorPalette"]>
|
|
8088
|
-
textStyle?: ConditionalValue<UtilityValues["textStyle"] | CssVars
|
|
8089
|
-
layerStyle?: ConditionalValue<UtilityValues["layerStyle"] | CssVars
|
|
8088
|
+
textStyle?: ConditionalValue<WithEscapeHatch<UtilityValues["textStyle"] | CssVars>>
|
|
8089
|
+
layerStyle?: ConditionalValue<WithEscapeHatch<UtilityValues["layerStyle"] | CssVars>>
|
|
8090
8090
|
animationStyle?: ConditionalValue<UtilityValues["animationStyle"] | CssVars | CssProperties["animationStyle"]>
|
|
8091
8091
|
}
|
|
8092
8092
|
|
|
8093
|
-
type StrictTokenProps = "top" | "left" | "inset" | "insetInline" | "insetX" | "insetBlock" | "insetY" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetEnd" | "end" | "insetInlineStart" | "insetStart" | "start" | "right" | "bottom" | "gap" | "gridGap" | "gridRowGap" | "gridColumnGap" | "rowGap" | "columnGap" | "padding" | "p" | "paddingLeft" | "pl" | "paddingRight" | "pr" | "paddingTop" | "pt" | "paddingBottom" | "pb" | "paddingBlock" | "py" | "paddingY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingInline" | "paddingX" | "px" | "paddingInlineEnd" | "pe" | "paddingEnd" | "paddingInlineStart" | "ps" | "paddingStart" | "marginLeft" | "ml" | "marginRight" | "mr" | "marginTop" | "mt" | "marginBottom" | "mb" | "margin" | "m" | "marginBlock" | "my" | "marginY" | "marginBlockEnd" | "marginBlockStart" | "marginInline" | "mx" | "marginX" | "marginInlineEnd" | "me" | "marginEnd" | "marginInlineStart" | "ms" | "marginStart" | "spaceX" | "spaceY" | "outlineColor" | "ringColor" | "outlineOffset" | "ringOffset" | "focusRingColor" | "focusRingOffset" | "divideColor" | "color" | "fontFamily" | "fontWeight" | "textDecorationColor" | "textEmphasisColor" | "textIndent" | "textShadowColor" | "WebkitTextFillColor" | "background" | "bg" | "backgroundColor" | "bgColor" | "gradientFrom" | "gradientTo" | "gradientVia" | "borderRadius" | "rounded" | "borderTopLeftRadius" | "roundedTopLeft" | "borderTopRightRadius" | "roundedTopRight" | "borderBottomRightRadius" | "roundedBottomRight" | "borderBottomLeftRadius" | "roundedBottomLeft" | "borderTopRadius" | "roundedTop" | "borderRightRadius" | "roundedRight" | "borderBottomRadius" | "roundedBottom" | "borderLeftRadius" | "roundedLeft" | "borderStartStartRadius" | "roundedStartStart" | "borderStartEndRadius" | "roundedStartEnd" | "borderStartRadius" | "roundedStart" | "borderEndStartRadius" | "roundedEndStart" | "borderEndEndRadius" | "roundedEndEnd" | "borderEndRadius" | "roundedEnd" | "borderColor" | "borderInlineColor" | "borderXColor" | "borderBlockColor" | "borderYColor" | "borderLeftColor" | "borderInlineStartColor" | "borderStartColor" | "borderRightColor" | "borderInlineEndColor" | "borderEndColor" | "borderTopColor" | "borderBottomColor" | "borderBlockEndColor" | "borderBlockStartColor" | "boxShadowColor" | "shadowColor" | "borderSpacing" | "borderSpacingX" | "borderSpacingY" | "transitionTimingFunction" | "animationTimingFunction" | "translateX" | "x" | "translateY" | "y" | "translateZ" | "z" | "accentColor" | "caretColor" | "scrollbarColor" | "scrollMargin" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollMarginBottom" | "scrollMarginBlock" | "scrollMarginY" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginInline" | "scrollMarginX" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingY" | "scrollPaddingBlockStart" | "scrollPaddingBlockEnd" | "scrollPaddingInline" | "scrollPaddingX" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollPaddingBottom" | "scrollSnapMargin" | "scrollSnapMarginTop" | "scrollSnapMarginBottom" | "scrollSnapMarginLeft" | "scrollSnapMarginRight" | "fill" | "stroke"
|
|
8093
|
+
type StrictTokenProps = "textStyle" | "layerStyle" | "top" | "left" | "inset" | "insetInline" | "insetX" | "insetBlock" | "insetY" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetEnd" | "end" | "insetInlineStart" | "insetStart" | "start" | "right" | "bottom" | "gap" | "gridGap" | "gridRowGap" | "gridColumnGap" | "rowGap" | "columnGap" | "padding" | "p" | "paddingLeft" | "pl" | "paddingRight" | "pr" | "paddingTop" | "pt" | "paddingBottom" | "pb" | "paddingBlock" | "py" | "paddingY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingInline" | "paddingX" | "px" | "paddingInlineEnd" | "pe" | "paddingEnd" | "paddingInlineStart" | "ps" | "paddingStart" | "marginLeft" | "ml" | "marginRight" | "mr" | "marginTop" | "mt" | "marginBottom" | "mb" | "margin" | "m" | "marginBlock" | "my" | "marginY" | "marginBlockEnd" | "marginBlockStart" | "marginInline" | "mx" | "marginX" | "marginInlineEnd" | "me" | "marginEnd" | "marginInlineStart" | "ms" | "marginStart" | "spaceX" | "spaceY" | "outlineColor" | "ringColor" | "outlineOffset" | "ringOffset" | "focusRingColor" | "focusRingOffset" | "divideColor" | "color" | "fontFamily" | "fontWeight" | "textDecorationColor" | "textEmphasisColor" | "textIndent" | "textShadow" | "textShadowColor" | "WebkitTextFillColor" | "background" | "bg" | "backgroundColor" | "bgColor" | "gradientFrom" | "gradientTo" | "gradientVia" | "borderRadius" | "rounded" | "borderTopLeftRadius" | "roundedTopLeft" | "borderTopRightRadius" | "roundedTopRight" | "borderBottomRightRadius" | "roundedBottomRight" | "borderBottomLeftRadius" | "roundedBottomLeft" | "borderTopRadius" | "roundedTop" | "borderRightRadius" | "roundedRight" | "borderBottomRadius" | "roundedBottom" | "borderLeftRadius" | "roundedLeft" | "borderStartStartRadius" | "roundedStartStart" | "borderStartEndRadius" | "roundedStartEnd" | "borderStartRadius" | "roundedStart" | "borderEndStartRadius" | "roundedEndStart" | "borderEndEndRadius" | "roundedEndEnd" | "borderEndRadius" | "roundedEnd" | "borderColor" | "borderInlineColor" | "borderXColor" | "borderBlockColor" | "borderYColor" | "borderLeftColor" | "borderInlineStartColor" | "borderStartColor" | "borderRightColor" | "borderInlineEndColor" | "borderEndColor" | "borderTopColor" | "borderBottomColor" | "borderBlockEndColor" | "borderBlockStartColor" | "boxShadow" | "shadow" | "boxShadowColor" | "shadowColor" | "borderSpacing" | "borderSpacingX" | "borderSpacingY" | "transitionTimingFunction" | "animationTimingFunction" | "translateX" | "x" | "translateY" | "y" | "translateZ" | "z" | "accentColor" | "caretColor" | "scrollbarColor" | "scrollMargin" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollMarginBottom" | "scrollMarginBlock" | "scrollMarginY" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginInline" | "scrollMarginX" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingY" | "scrollPaddingBlockStart" | "scrollPaddingBlockEnd" | "scrollPaddingInline" | "scrollPaddingX" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollPaddingBottom" | "scrollSnapMargin" | "scrollSnapMarginTop" | "scrollSnapMarginBottom" | "scrollSnapMarginLeft" | "scrollSnapMarginRight" | "fill" | "stroke"
|
|
8094
8094
|
|
|
8095
8095
|
type Restrict<Key, Value, Fallback> = Key extends StrictTokenProps ? Value : Value | Fallback
|