@atlaskit/tokens 1.6.0 → 1.8.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.
Files changed (129) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/cjs/artifacts/generated-pairs.js +313 -1
  3. package/dist/cjs/artifacts/palettes-raw/palette.js +171 -1
  4. package/dist/cjs/artifacts/themes/atlassian-dark.js +2 -2
  5. package/dist/cjs/artifacts/themes/atlassian-legacy-dark.js +2 -2
  6. package/dist/cjs/artifacts/themes/atlassian-legacy-light.js +2 -2
  7. package/dist/cjs/artifacts/themes/atlassian-light.js +2 -2
  8. package/dist/cjs/artifacts/token-default-values.js +15 -1
  9. package/dist/cjs/artifacts/token-names.js +15 -1
  10. package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +309 -1
  11. package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +309 -1
  12. package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +309 -1
  13. package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +309 -1
  14. package/dist/cjs/get-token-value.js +1 -1
  15. package/dist/cjs/get-token.js +1 -1
  16. package/dist/cjs/palettes/palette.js +70 -0
  17. package/dist/cjs/set-global-theme.js +30 -6
  18. package/dist/cjs/tokens/atlassian-dark/color/accent.js +28 -0
  19. package/dist/cjs/tokens/atlassian-dark/color/chart.js +26 -0
  20. package/dist/cjs/tokens/atlassian-legacy-dark/color/accent.js +36 -0
  21. package/dist/cjs/tokens/atlassian-legacy-dark/color/chart.js +32 -0
  22. package/dist/cjs/tokens/atlassian-legacy-light/color/accent.js +36 -0
  23. package/dist/cjs/tokens/atlassian-legacy-light/color/chart.js +32 -0
  24. package/dist/cjs/tokens/atlassian-light/color/accent.js +28 -0
  25. package/dist/cjs/tokens/atlassian-light/color/chart.js +26 -0
  26. package/dist/cjs/tokens/default/color/accent.js +68 -0
  27. package/dist/cjs/tokens/default/color/chart.js +56 -0
  28. package/dist/cjs/version.json +1 -1
  29. package/dist/es2019/artifacts/generated-pairs.js +313 -1
  30. package/dist/es2019/artifacts/palettes-raw/palette.js +171 -1
  31. package/dist/es2019/artifacts/themes/atlassian-dark.js +15 -1
  32. package/dist/es2019/artifacts/themes/atlassian-legacy-dark.js +15 -1
  33. package/dist/es2019/artifacts/themes/atlassian-legacy-light.js +15 -1
  34. package/dist/es2019/artifacts/themes/atlassian-light.js +15 -1
  35. package/dist/es2019/artifacts/token-default-values.js +15 -1
  36. package/dist/es2019/artifacts/token-names.js +15 -1
  37. package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +309 -1
  38. package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +309 -1
  39. package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +309 -1
  40. package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +309 -1
  41. package/dist/es2019/get-token-value.js +1 -1
  42. package/dist/es2019/get-token.js +1 -1
  43. package/dist/es2019/palettes/palette.js +70 -0
  44. package/dist/es2019/set-global-theme.js +30 -6
  45. package/dist/es2019/tokens/atlassian-dark/color/accent.js +28 -0
  46. package/dist/es2019/tokens/atlassian-dark/color/chart.js +26 -0
  47. package/dist/es2019/tokens/atlassian-legacy-dark/color/accent.js +36 -0
  48. package/dist/es2019/tokens/atlassian-legacy-dark/color/chart.js +32 -0
  49. package/dist/es2019/tokens/atlassian-legacy-light/color/accent.js +36 -0
  50. package/dist/es2019/tokens/atlassian-legacy-light/color/chart.js +32 -0
  51. package/dist/es2019/tokens/atlassian-light/color/accent.js +28 -0
  52. package/dist/es2019/tokens/atlassian-light/color/chart.js +26 -0
  53. package/dist/es2019/tokens/default/color/accent.js +68 -0
  54. package/dist/es2019/tokens/default/color/chart.js +56 -0
  55. package/dist/es2019/version.json +1 -1
  56. package/dist/esm/artifacts/generated-pairs.js +313 -1
  57. package/dist/esm/artifacts/palettes-raw/palette.js +171 -1
  58. package/dist/esm/artifacts/themes/atlassian-dark.js +2 -2
  59. package/dist/esm/artifacts/themes/atlassian-legacy-dark.js +2 -2
  60. package/dist/esm/artifacts/themes/atlassian-legacy-light.js +2 -2
  61. package/dist/esm/artifacts/themes/atlassian-light.js +2 -2
  62. package/dist/esm/artifacts/token-default-values.js +15 -1
  63. package/dist/esm/artifacts/token-names.js +15 -1
  64. package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +309 -1
  65. package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +309 -1
  66. package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +309 -1
  67. package/dist/esm/artifacts/tokens-raw/atlassian-light.js +309 -1
  68. package/dist/esm/get-token-value.js +1 -1
  69. package/dist/esm/get-token.js +1 -1
  70. package/dist/esm/palettes/palette.js +70 -0
  71. package/dist/esm/set-global-theme.js +30 -6
  72. package/dist/esm/tokens/atlassian-dark/color/accent.js +28 -0
  73. package/dist/esm/tokens/atlassian-dark/color/chart.js +26 -0
  74. package/dist/esm/tokens/atlassian-legacy-dark/color/accent.js +36 -0
  75. package/dist/esm/tokens/atlassian-legacy-dark/color/chart.js +32 -0
  76. package/dist/esm/tokens/atlassian-legacy-light/color/accent.js +36 -0
  77. package/dist/esm/tokens/atlassian-legacy-light/color/chart.js +32 -0
  78. package/dist/esm/tokens/atlassian-light/color/accent.js +28 -0
  79. package/dist/esm/tokens/atlassian-light/color/chart.js +26 -0
  80. package/dist/esm/tokens/default/color/accent.js +68 -0
  81. package/dist/esm/tokens/default/color/chart.js +56 -0
  82. package/dist/esm/version.json +1 -1
  83. package/dist/types/artifacts/generated-pairs.d.ts +1 -1
  84. package/dist/types/artifacts/palettes-raw/palette.d.ts +1 -1
  85. package/dist/types/artifacts/themes/atlassian-dark.d.ts +2 -2
  86. package/dist/types/artifacts/themes/atlassian-legacy-dark.d.ts +2 -2
  87. package/dist/types/artifacts/themes/atlassian-legacy-light.d.ts +2 -2
  88. package/dist/types/artifacts/themes/atlassian-light.d.ts +2 -2
  89. package/dist/types/artifacts/token-default-values.d.ts +15 -1
  90. package/dist/types/artifacts/token-names.d.ts +29 -1
  91. package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
  92. package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
  93. package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
  94. package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
  95. package/dist/types/artifacts/types-internal.d.ts +2 -2
  96. package/dist/types/artifacts/types.d.ts +2 -2
  97. package/dist/types/palettes/palette.d.ts +1 -1
  98. package/dist/types/set-global-theme.d.ts +3 -1
  99. package/dist/types/tokens/atlassian-dark/utility/utility.d.ts +1 -1
  100. package/dist/types/tokens/atlassian-light/utility/utility.d.ts +1 -1
  101. package/dist/types/tokens/default/utility/utility.d.ts +1 -1
  102. package/dist/types/types.d.ts +27 -1
  103. package/dist/types-ts4.5/artifacts/generated-pairs.d.ts +1 -1
  104. package/dist/types-ts4.5/artifacts/palettes-raw/palette.d.ts +1 -1
  105. package/dist/types-ts4.5/artifacts/themes/atlassian-dark.d.ts +2 -2
  106. package/dist/types-ts4.5/artifacts/themes/atlassian-legacy-dark.d.ts +2 -2
  107. package/dist/types-ts4.5/artifacts/themes/atlassian-legacy-light.d.ts +2 -2
  108. package/dist/types-ts4.5/artifacts/themes/atlassian-light.d.ts +2 -2
  109. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +15 -1
  110. package/dist/types-ts4.5/artifacts/token-names.d.ts +29 -1
  111. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
  112. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
  113. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
  114. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
  115. package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
  116. package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
  117. package/dist/types-ts4.5/palettes/palette.d.ts +1 -1
  118. package/dist/types-ts4.5/set-global-theme.d.ts +3 -1
  119. package/dist/types-ts4.5/tokens/atlassian-dark/utility/utility.d.ts +1 -1
  120. package/dist/types-ts4.5/tokens/atlassian-light/utility/utility.d.ts +1 -1
  121. package/dist/types-ts4.5/tokens/default/utility/utility.d.ts +1 -1
  122. package/dist/types-ts4.5/types.d.ts +27 -1
  123. package/figma/atlassian-dark.json +126 -0
  124. package/figma/atlassian-legacy-dark.json +126 -0
  125. package/figma/atlassian-legacy-light.json +126 -0
  126. package/figma/atlassian-light.json +126 -0
  127. package/package.json +5 -2
  128. package/report.api.md +57 -1
  129. package/tmp/api-report-tmp.d.ts +31 -3
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::7af1f88dfeb09fd8473d7895cf1609b4>>
3
+ * @codegen <<SignedSource::91d9e5ee340016d156f56631de55a7df>>
4
4
  * @codegenCommand yarn build tokens
5
5
  */
6
- export type ActiveTokens = 'color.text' | 'color.text.accent.red' | 'color.text.accent.red.bolder' | 'color.text.accent.orange' | 'color.text.accent.orange.bolder' | 'color.text.accent.yellow' | 'color.text.accent.yellow.bolder' | 'color.text.accent.green' | 'color.text.accent.green.bolder' | 'color.text.accent.teal' | 'color.text.accent.teal.bolder' | 'color.text.accent.blue' | 'color.text.accent.blue.bolder' | 'color.text.accent.purple' | 'color.text.accent.purple.bolder' | 'color.text.accent.magenta' | 'color.text.accent.magenta.bolder' | 'color.text.accent.gray' | 'color.text.accent.gray.bolder' | 'color.text.disabled' | 'color.text.inverse' | 'color.text.selected' | 'color.text.brand' | 'color.text.danger' | 'color.text.warning' | 'color.text.warning.inverse' | 'color.text.success' | 'color.text.discovery' | 'color.text.information' | 'color.text.subtlest' | 'color.text.subtle' | 'color.link' | 'color.link.pressed' | 'color.icon' | 'color.icon.accent.red' | 'color.icon.accent.orange' | 'color.icon.accent.yellow' | 'color.icon.accent.green' | 'color.icon.accent.teal' | 'color.icon.accent.blue' | 'color.icon.accent.purple' | 'color.icon.accent.magenta' | 'color.icon.accent.gray' | 'color.icon.disabled' | 'color.icon.inverse' | 'color.icon.selected' | 'color.icon.brand' | 'color.icon.danger' | 'color.icon.warning' | 'color.icon.warning.inverse' | 'color.icon.success' | 'color.icon.discovery' | 'color.icon.information' | 'color.icon.subtle' | 'color.border' | 'color.border.accent.red' | 'color.border.accent.orange' | 'color.border.accent.yellow' | 'color.border.accent.green' | 'color.border.accent.teal' | 'color.border.accent.blue' | 'color.border.accent.purple' | 'color.border.accent.magenta' | 'color.border.accent.gray' | 'color.border.disabled' | 'color.border.focused' | 'color.border.input' | 'color.border.inverse' | 'color.border.selected' | 'color.border.brand' | 'color.border.danger' | 'color.border.warning' | 'color.border.success' | 'color.border.discovery' | 'color.border.information' | 'color.border.bold' | 'color.background.accent.red.subtlest' | 'color.background.accent.red.subtler' | 'color.background.accent.red.subtle' | 'color.background.accent.red.bolder' | 'color.background.accent.orange.subtlest' | 'color.background.accent.orange.subtler' | 'color.background.accent.orange.subtle' | 'color.background.accent.orange.bolder' | 'color.background.accent.yellow.subtlest' | 'color.background.accent.yellow.subtler' | 'color.background.accent.yellow.subtle' | 'color.background.accent.yellow.bolder' | 'color.background.accent.green.subtlest' | 'color.background.accent.green.subtler' | 'color.background.accent.green.subtle' | 'color.background.accent.green.bolder' | 'color.background.accent.teal.subtlest' | 'color.background.accent.teal.subtler' | 'color.background.accent.teal.subtle' | 'color.background.accent.teal.bolder' | 'color.background.accent.blue.subtlest' | 'color.background.accent.blue.subtler' | 'color.background.accent.blue.subtle' | 'color.background.accent.blue.bolder' | 'color.background.accent.purple.subtlest' | 'color.background.accent.purple.subtler' | 'color.background.accent.purple.subtle' | 'color.background.accent.purple.bolder' | 'color.background.accent.magenta.subtlest' | 'color.background.accent.magenta.subtler' | 'color.background.accent.magenta.subtle' | 'color.background.accent.magenta.bolder' | 'color.background.accent.gray.subtlest' | 'color.background.accent.gray.subtler' | 'color.background.accent.gray.subtle' | 'color.background.accent.gray.bolder' | 'color.background.disabled' | 'color.background.input' | 'color.background.input.hovered' | 'color.background.input.pressed' | 'color.background.inverse.subtle' | 'color.background.inverse.subtle.hovered' | 'color.background.inverse.subtle.pressed' | 'color.background.neutral' | 'color.background.neutral.hovered' | 'color.background.neutral.pressed' | 'color.background.neutral.subtle' | 'color.background.neutral.subtle.hovered' | 'color.background.neutral.subtle.pressed' | 'color.background.neutral.bold' | 'color.background.neutral.bold.hovered' | 'color.background.neutral.bold.pressed' | 'color.background.selected' | 'color.background.selected.hovered' | 'color.background.selected.pressed' | 'color.background.selected.bold' | 'color.background.selected.bold.hovered' | 'color.background.selected.bold.pressed' | 'color.background.brand.bold' | 'color.background.brand.bold.hovered' | 'color.background.brand.bold.pressed' | 'color.background.danger' | 'color.background.danger.hovered' | 'color.background.danger.pressed' | 'color.background.danger.bold' | 'color.background.danger.bold.hovered' | 'color.background.danger.bold.pressed' | 'color.background.warning' | 'color.background.warning.hovered' | 'color.background.warning.pressed' | 'color.background.warning.bold' | 'color.background.warning.bold.hovered' | 'color.background.warning.bold.pressed' | 'color.background.success' | 'color.background.success.hovered' | 'color.background.success.pressed' | 'color.background.success.bold' | 'color.background.success.bold.hovered' | 'color.background.success.bold.pressed' | 'color.background.discovery' | 'color.background.discovery.hovered' | 'color.background.discovery.pressed' | 'color.background.discovery.bold' | 'color.background.discovery.bold.hovered' | 'color.background.discovery.bold.pressed' | 'color.background.information' | 'color.background.information.hovered' | 'color.background.information.pressed' | 'color.background.information.bold' | 'color.background.information.bold.hovered' | 'color.background.information.bold.pressed' | 'color.blanket' | 'color.blanket.selected' | 'color.blanket.danger' | 'color.interaction.hovered' | 'color.interaction.pressed' | 'color.skeleton' | 'color.skeleton.subtle' | 'color.chart.categorical.1' | 'color.chart.categorical.1.hovered' | 'color.chart.categorical.2' | 'color.chart.categorical.2.hovered' | 'color.chart.categorical.3' | 'color.chart.categorical.3.hovered' | 'color.chart.categorical.4' | 'color.chart.categorical.4.hovered' | 'color.chart.categorical.5' | 'color.chart.categorical.5.hovered' | 'color.chart.categorical.6' | 'color.chart.categorical.6.hovered' | 'color.chart.categorical.7' | 'color.chart.categorical.7.hovered' | 'color.chart.categorical.8' | 'color.chart.categorical.8.hovered' | 'color.chart.neutral' | 'color.chart.neutral.hovered' | 'color.chart.red.bold' | 'color.chart.red.bold.hovered' | 'color.chart.red.bolder' | 'color.chart.red.bolder.hovered' | 'color.chart.red.boldest' | 'color.chart.red.boldest.hovered' | 'color.chart.orange.bold' | 'color.chart.orange.bold.hovered' | 'color.chart.orange.bolder' | 'color.chart.orange.bolder.hovered' | 'color.chart.orange.boldest' | 'color.chart.orange.boldest.hovered' | 'color.chart.yellow.bold' | 'color.chart.yellow.bold.hovered' | 'color.chart.yellow.bolder' | 'color.chart.yellow.bolder.hovered' | 'color.chart.yellow.boldest' | 'color.chart.yellow.boldest.hovered' | 'color.chart.green.bold' | 'color.chart.green.bold.hovered' | 'color.chart.green.bolder' | 'color.chart.green.bolder.hovered' | 'color.chart.green.boldest' | 'color.chart.green.boldest.hovered' | 'color.chart.teal.bold' | 'color.chart.teal.bold.hovered' | 'color.chart.teal.bolder' | 'color.chart.teal.bolder.hovered' | 'color.chart.teal.boldest' | 'color.chart.teal.boldest.hovered' | 'color.chart.blue.bold' | 'color.chart.blue.bold.hovered' | 'color.chart.blue.bolder' | 'color.chart.blue.bolder.hovered' | 'color.chart.blue.boldest' | 'color.chart.blue.boldest.hovered' | 'color.chart.purple.bold' | 'color.chart.purple.bold.hovered' | 'color.chart.purple.bolder' | 'color.chart.purple.bolder.hovered' | 'color.chart.purple.boldest' | 'color.chart.purple.boldest.hovered' | 'color.chart.magenta.bold' | 'color.chart.magenta.bold.hovered' | 'color.chart.magenta.bolder' | 'color.chart.magenta.bolder.hovered' | 'color.chart.magenta.boldest' | 'color.chart.magenta.boldest.hovered' | 'color.chart.gray.bold' | 'color.chart.gray.bold.hovered' | 'color.chart.gray.bolder' | 'color.chart.gray.bolder.hovered' | 'color.chart.gray.boldest' | 'color.chart.gray.boldest.hovered' | 'color.chart.brand' | 'color.chart.brand.hovered' | 'color.chart.danger' | 'color.chart.danger.hovered' | 'color.chart.danger.bold' | 'color.chart.danger.bold.hovered' | 'color.chart.warning' | 'color.chart.warning.hovered' | 'color.chart.warning.bold' | 'color.chart.warning.bold.hovered' | 'color.chart.success' | 'color.chart.success.hovered' | 'color.chart.success.bold' | 'color.chart.success.bold.hovered' | 'color.chart.discovery' | 'color.chart.discovery.hovered' | 'color.chart.discovery.bold' | 'color.chart.discovery.bold.hovered' | 'color.chart.information' | 'color.chart.information.hovered' | 'color.chart.information.bold' | 'color.chart.information.bold.hovered' | 'elevation.surface' | 'elevation.surface.hovered' | 'elevation.surface.pressed' | 'elevation.surface.overlay' | 'elevation.surface.overlay.hovered' | 'elevation.surface.overlay.pressed' | 'elevation.surface.raised' | 'elevation.surface.raised.hovered' | 'elevation.surface.raised.pressed' | 'elevation.surface.sunken' | 'elevation.shadow.overflow' | 'elevation.shadow.overflow.perimeter' | 'elevation.shadow.overflow.spread' | 'elevation.shadow.overlay' | 'elevation.shadow.raised' | 'opacity.disabled' | 'opacity.loading' | 'utility.UNSAFE.transparent' | 'border.radius.050' | 'border.radius' | 'border.radius.100' | 'border.radius.200' | 'border.radius.300' | 'border.radius.400' | 'border.radius.circle' | 'border.width.050' | 'border.width' | 'border.width.100' | 'space.0' | 'space.025' | 'space.050' | 'space.075' | 'space.100' | 'space.150' | 'space.200' | 'space.250' | 'space.300' | 'space.400' | 'space.500' | 'space.600' | 'space.800' | 'space.1000' | 'font.family.monospace' | 'font.family.sans' | 'font.size.050' | 'font.size.075' | 'font.size.100' | 'font.size.200' | 'font.size.300' | 'font.size.400' | 'font.size.500' | 'font.size.600' | 'font.weight.bold' | 'font.weight.medium' | 'font.weight.regular' | 'font.weight.semibold' | 'font.lineHeight.100' | 'font.lineHeight.200' | 'font.lineHeight.300' | 'font.lineHeight.400' | 'font.lineHeight.500' | 'font.lineHeight.600';
6
+ export type ActiveTokens = 'color.text' | 'color.text.accent.lime' | 'color.text.accent.lime.bolder' | 'color.text.accent.red' | 'color.text.accent.red.bolder' | 'color.text.accent.orange' | 'color.text.accent.orange.bolder' | 'color.text.accent.yellow' | 'color.text.accent.yellow.bolder' | 'color.text.accent.green' | 'color.text.accent.green.bolder' | 'color.text.accent.teal' | 'color.text.accent.teal.bolder' | 'color.text.accent.blue' | 'color.text.accent.blue.bolder' | 'color.text.accent.purple' | 'color.text.accent.purple.bolder' | 'color.text.accent.magenta' | 'color.text.accent.magenta.bolder' | 'color.text.accent.gray' | 'color.text.accent.gray.bolder' | 'color.text.disabled' | 'color.text.inverse' | 'color.text.selected' | 'color.text.brand' | 'color.text.danger' | 'color.text.warning' | 'color.text.warning.inverse' | 'color.text.success' | 'color.text.discovery' | 'color.text.information' | 'color.text.subtlest' | 'color.text.subtle' | 'color.link' | 'color.link.pressed' | 'color.icon' | 'color.icon.accent.lime' | 'color.icon.accent.red' | 'color.icon.accent.orange' | 'color.icon.accent.yellow' | 'color.icon.accent.green' | 'color.icon.accent.teal' | 'color.icon.accent.blue' | 'color.icon.accent.purple' | 'color.icon.accent.magenta' | 'color.icon.accent.gray' | 'color.icon.disabled' | 'color.icon.inverse' | 'color.icon.selected' | 'color.icon.brand' | 'color.icon.danger' | 'color.icon.warning' | 'color.icon.warning.inverse' | 'color.icon.success' | 'color.icon.discovery' | 'color.icon.information' | 'color.icon.subtle' | 'color.border' | 'color.border.accent.lime' | 'color.border.accent.red' | 'color.border.accent.orange' | 'color.border.accent.yellow' | 'color.border.accent.green' | 'color.border.accent.teal' | 'color.border.accent.blue' | 'color.border.accent.purple' | 'color.border.accent.magenta' | 'color.border.accent.gray' | 'color.border.disabled' | 'color.border.focused' | 'color.border.input' | 'color.border.inverse' | 'color.border.selected' | 'color.border.brand' | 'color.border.danger' | 'color.border.warning' | 'color.border.success' | 'color.border.discovery' | 'color.border.information' | 'color.border.bold' | 'color.background.accent.lime.subtlest' | 'color.background.accent.lime.subtler' | 'color.background.accent.lime.subtle' | 'color.background.accent.lime.bolder' | 'color.background.accent.red.subtlest' | 'color.background.accent.red.subtler' | 'color.background.accent.red.subtle' | 'color.background.accent.red.bolder' | 'color.background.accent.orange.subtlest' | 'color.background.accent.orange.subtler' | 'color.background.accent.orange.subtle' | 'color.background.accent.orange.bolder' | 'color.background.accent.yellow.subtlest' | 'color.background.accent.yellow.subtler' | 'color.background.accent.yellow.subtle' | 'color.background.accent.yellow.bolder' | 'color.background.accent.green.subtlest' | 'color.background.accent.green.subtler' | 'color.background.accent.green.subtle' | 'color.background.accent.green.bolder' | 'color.background.accent.teal.subtlest' | 'color.background.accent.teal.subtler' | 'color.background.accent.teal.subtle' | 'color.background.accent.teal.bolder' | 'color.background.accent.blue.subtlest' | 'color.background.accent.blue.subtler' | 'color.background.accent.blue.subtle' | 'color.background.accent.blue.bolder' | 'color.background.accent.purple.subtlest' | 'color.background.accent.purple.subtler' | 'color.background.accent.purple.subtle' | 'color.background.accent.purple.bolder' | 'color.background.accent.magenta.subtlest' | 'color.background.accent.magenta.subtler' | 'color.background.accent.magenta.subtle' | 'color.background.accent.magenta.bolder' | 'color.background.accent.gray.subtlest' | 'color.background.accent.gray.subtler' | 'color.background.accent.gray.subtle' | 'color.background.accent.gray.bolder' | 'color.background.disabled' | 'color.background.input' | 'color.background.input.hovered' | 'color.background.input.pressed' | 'color.background.inverse.subtle' | 'color.background.inverse.subtle.hovered' | 'color.background.inverse.subtle.pressed' | 'color.background.neutral' | 'color.background.neutral.hovered' | 'color.background.neutral.pressed' | 'color.background.neutral.subtle' | 'color.background.neutral.subtle.hovered' | 'color.background.neutral.subtle.pressed' | 'color.background.neutral.bold' | 'color.background.neutral.bold.hovered' | 'color.background.neutral.bold.pressed' | 'color.background.selected' | 'color.background.selected.hovered' | 'color.background.selected.pressed' | 'color.background.selected.bold' | 'color.background.selected.bold.hovered' | 'color.background.selected.bold.pressed' | 'color.background.brand.bold' | 'color.background.brand.bold.hovered' | 'color.background.brand.bold.pressed' | 'color.background.danger' | 'color.background.danger.hovered' | 'color.background.danger.pressed' | 'color.background.danger.bold' | 'color.background.danger.bold.hovered' | 'color.background.danger.bold.pressed' | 'color.background.warning' | 'color.background.warning.hovered' | 'color.background.warning.pressed' | 'color.background.warning.bold' | 'color.background.warning.bold.hovered' | 'color.background.warning.bold.pressed' | 'color.background.success' | 'color.background.success.hovered' | 'color.background.success.pressed' | 'color.background.success.bold' | 'color.background.success.bold.hovered' | 'color.background.success.bold.pressed' | 'color.background.discovery' | 'color.background.discovery.hovered' | 'color.background.discovery.pressed' | 'color.background.discovery.bold' | 'color.background.discovery.bold.hovered' | 'color.background.discovery.bold.pressed' | 'color.background.information' | 'color.background.information.hovered' | 'color.background.information.pressed' | 'color.background.information.bold' | 'color.background.information.bold.hovered' | 'color.background.information.bold.pressed' | 'color.blanket' | 'color.blanket.selected' | 'color.blanket.danger' | 'color.interaction.hovered' | 'color.interaction.pressed' | 'color.skeleton' | 'color.skeleton.subtle' | 'color.chart.categorical.1' | 'color.chart.categorical.1.hovered' | 'color.chart.categorical.2' | 'color.chart.categorical.2.hovered' | 'color.chart.categorical.3' | 'color.chart.categorical.3.hovered' | 'color.chart.categorical.4' | 'color.chart.categorical.4.hovered' | 'color.chart.categorical.5' | 'color.chart.categorical.5.hovered' | 'color.chart.categorical.6' | 'color.chart.categorical.6.hovered' | 'color.chart.categorical.7' | 'color.chart.categorical.7.hovered' | 'color.chart.categorical.8' | 'color.chart.categorical.8.hovered' | 'color.chart.lime.bold' | 'color.chart.lime.bold.hovered' | 'color.chart.lime.bolder' | 'color.chart.lime.bolder.hovered' | 'color.chart.lime.boldest' | 'color.chart.lime.boldest.hovered' | 'color.chart.neutral' | 'color.chart.neutral.hovered' | 'color.chart.red.bold' | 'color.chart.red.bold.hovered' | 'color.chart.red.bolder' | 'color.chart.red.bolder.hovered' | 'color.chart.red.boldest' | 'color.chart.red.boldest.hovered' | 'color.chart.orange.bold' | 'color.chart.orange.bold.hovered' | 'color.chart.orange.bolder' | 'color.chart.orange.bolder.hovered' | 'color.chart.orange.boldest' | 'color.chart.orange.boldest.hovered' | 'color.chart.yellow.bold' | 'color.chart.yellow.bold.hovered' | 'color.chart.yellow.bolder' | 'color.chart.yellow.bolder.hovered' | 'color.chart.yellow.boldest' | 'color.chart.yellow.boldest.hovered' | 'color.chart.green.bold' | 'color.chart.green.bold.hovered' | 'color.chart.green.bolder' | 'color.chart.green.bolder.hovered' | 'color.chart.green.boldest' | 'color.chart.green.boldest.hovered' | 'color.chart.teal.bold' | 'color.chart.teal.bold.hovered' | 'color.chart.teal.bolder' | 'color.chart.teal.bolder.hovered' | 'color.chart.teal.boldest' | 'color.chart.teal.boldest.hovered' | 'color.chart.blue.bold' | 'color.chart.blue.bold.hovered' | 'color.chart.blue.bolder' | 'color.chart.blue.bolder.hovered' | 'color.chart.blue.boldest' | 'color.chart.blue.boldest.hovered' | 'color.chart.purple.bold' | 'color.chart.purple.bold.hovered' | 'color.chart.purple.bolder' | 'color.chart.purple.bolder.hovered' | 'color.chart.purple.boldest' | 'color.chart.purple.boldest.hovered' | 'color.chart.magenta.bold' | 'color.chart.magenta.bold.hovered' | 'color.chart.magenta.bolder' | 'color.chart.magenta.bolder.hovered' | 'color.chart.magenta.boldest' | 'color.chart.magenta.boldest.hovered' | 'color.chart.gray.bold' | 'color.chart.gray.bold.hovered' | 'color.chart.gray.bolder' | 'color.chart.gray.bolder.hovered' | 'color.chart.gray.boldest' | 'color.chart.gray.boldest.hovered' | 'color.chart.brand' | 'color.chart.brand.hovered' | 'color.chart.danger' | 'color.chart.danger.hovered' | 'color.chart.danger.bold' | 'color.chart.danger.bold.hovered' | 'color.chart.warning' | 'color.chart.warning.hovered' | 'color.chart.warning.bold' | 'color.chart.warning.bold.hovered' | 'color.chart.success' | 'color.chart.success.hovered' | 'color.chart.success.bold' | 'color.chart.success.bold.hovered' | 'color.chart.discovery' | 'color.chart.discovery.hovered' | 'color.chart.discovery.bold' | 'color.chart.discovery.bold.hovered' | 'color.chart.information' | 'color.chart.information.hovered' | 'color.chart.information.bold' | 'color.chart.information.bold.hovered' | 'elevation.surface' | 'elevation.surface.hovered' | 'elevation.surface.pressed' | 'elevation.surface.overlay' | 'elevation.surface.overlay.hovered' | 'elevation.surface.overlay.pressed' | 'elevation.surface.raised' | 'elevation.surface.raised.hovered' | 'elevation.surface.raised.pressed' | 'elevation.surface.sunken' | 'elevation.shadow.overflow' | 'elevation.shadow.overflow.perimeter' | 'elevation.shadow.overflow.spread' | 'elevation.shadow.overlay' | 'elevation.shadow.raised' | 'opacity.disabled' | 'opacity.loading' | 'utility.UNSAFE.transparent' | 'border.radius.050' | 'border.radius' | 'border.radius.100' | 'border.radius.200' | 'border.radius.300' | 'border.radius.400' | 'border.radius.circle' | 'border.width.050' | 'border.width' | 'border.width.100' | 'space.0' | 'space.025' | 'space.050' | 'space.075' | 'space.100' | 'space.150' | 'space.200' | 'space.250' | 'space.300' | 'space.400' | 'space.500' | 'space.600' | 'space.800' | 'space.1000' | 'font.family.monospace' | 'font.family.sans' | 'font.size.050' | 'font.size.075' | 'font.size.100' | 'font.size.200' | 'font.size.300' | 'font.size.400' | 'font.size.500' | 'font.size.600' | 'font.weight.bold' | 'font.weight.medium' | 'font.weight.regular' | 'font.weight.semibold' | 'font.lineHeight.100' | 'font.lineHeight.200' | 'font.lineHeight.300' | 'font.lineHeight.400' | 'font.lineHeight.500' | 'font.lineHeight.600';
@@ -1,5 +1,5 @@
1
1
  import type { PaletteColorTokenSchema } from '../types';
2
- type PaletteValues = 'Blue100' | 'Blue200' | 'Blue300' | 'Blue400' | 'Blue500' | 'Blue600' | 'Blue700' | 'Blue800' | 'Blue900' | 'Blue1000' | 'Red100' | 'Red200' | 'Red300' | 'Red400' | 'Red500' | 'Red600' | 'Red700' | 'Red800' | 'Red900' | 'Red1000' | 'Yellow100' | 'Yellow200' | 'Yellow300' | 'Yellow400' | 'Yellow500' | 'Yellow600' | 'Yellow700' | 'Yellow800' | 'Yellow900' | 'Yellow1000' | 'Green100' | 'Green200' | 'Green300' | 'Green400' | 'Green500' | 'Green600' | 'Green700' | 'Green800' | 'Green900' | 'Green1000' | 'Purple100' | 'Purple200' | 'Purple300' | 'Purple400' | 'Purple500' | 'Purple600' | 'Purple700' | 'Purple800' | 'Purple900' | 'Purple1000' | 'Teal100' | 'Teal200' | 'Teal300' | 'Teal400' | 'Teal500' | 'Teal600' | 'Teal700' | 'Teal800' | 'Teal900' | 'Teal1000' | 'Orange100' | 'Orange200' | 'Orange300' | 'Orange400' | 'Orange500' | 'Orange600' | 'Orange700' | 'Orange800' | 'Orange900' | 'Orange1000' | 'Magenta100' | 'Magenta200' | 'Magenta300' | 'Magenta400' | 'Magenta500' | 'Magenta600' | 'Magenta700' | 'Magenta800' | 'Magenta900' | 'Magenta1000' | 'DarkNeutral-100' | 'DarkNeutral-100A' | 'DarkNeutral0' | 'DarkNeutral100' | 'DarkNeutral100A' | 'DarkNeutral200' | 'DarkNeutral200A' | 'DarkNeutral300' | 'DarkNeutral300A' | 'DarkNeutral400' | 'DarkNeutral400A' | 'DarkNeutral500' | 'DarkNeutral500A' | 'DarkNeutral600' | 'DarkNeutral700' | 'DarkNeutral800' | 'DarkNeutral900' | 'DarkNeutral1000' | 'DarkNeutral1100' | 'Neutral0' | 'Neutral100' | 'Neutral100A' | 'Neutral200' | 'Neutral200A' | 'Neutral300' | 'Neutral300A' | 'Neutral400' | 'Neutral400A' | 'Neutral500' | 'Neutral500A' | 'Neutral600' | 'Neutral700' | 'Neutral800' | 'Neutral900' | 'Neutral1000' | 'Neutral1100';
2
+ type PaletteValues = 'Blue100' | 'Blue200' | 'Blue300' | 'Blue400' | 'Blue500' | 'Blue600' | 'Blue700' | 'Blue800' | 'Blue900' | 'Blue1000' | 'Red100' | 'Red200' | 'Red300' | 'Red400' | 'Red500' | 'Red600' | 'Red700' | 'Red800' | 'Red900' | 'Red1000' | 'Yellow100' | 'Yellow200' | 'Yellow300' | 'Yellow400' | 'Yellow500' | 'Yellow600' | 'Yellow700' | 'Yellow800' | 'Yellow900' | 'Yellow1000' | 'Green100' | 'Green200' | 'Green300' | 'Green400' | 'Green500' | 'Green600' | 'Green700' | 'Green800' | 'Green900' | 'Green1000' | 'Purple100' | 'Purple200' | 'Purple300' | 'Purple400' | 'Purple500' | 'Purple600' | 'Purple700' | 'Purple800' | 'Purple900' | 'Purple1000' | 'Teal100' | 'Teal200' | 'Teal300' | 'Teal400' | 'Teal500' | 'Teal600' | 'Teal700' | 'Teal800' | 'Teal900' | 'Teal1000' | 'Orange100' | 'Orange200' | 'Orange300' | 'Orange400' | 'Orange500' | 'Orange600' | 'Orange700' | 'Orange800' | 'Orange900' | 'Orange1000' | 'Magenta100' | 'Magenta200' | 'Magenta300' | 'Magenta400' | 'Magenta500' | 'Magenta600' | 'Magenta700' | 'Magenta800' | 'Magenta900' | 'Magenta1000' | 'Lime100' | 'Lime200' | 'Lime300' | 'Lime400' | 'Lime500' | 'Lime600' | 'Lime700' | 'Lime800' | 'Lime900' | 'Lime1000' | 'DarkNeutral-100' | 'DarkNeutral-100A' | 'DarkNeutral0' | 'DarkNeutral100' | 'DarkNeutral100A' | 'DarkNeutral200' | 'DarkNeutral200A' | 'DarkNeutral300' | 'DarkNeutral300A' | 'DarkNeutral400' | 'DarkNeutral400A' | 'DarkNeutral500' | 'DarkNeutral500A' | 'DarkNeutral600' | 'DarkNeutral700' | 'DarkNeutral800' | 'DarkNeutral900' | 'DarkNeutral1000' | 'DarkNeutral1100' | 'Neutral0' | 'Neutral100' | 'Neutral100A' | 'Neutral200' | 'Neutral200A' | 'Neutral300' | 'Neutral300A' | 'Neutral400' | 'Neutral400A' | 'Neutral500' | 'Neutral500A' | 'Neutral600' | 'Neutral700' | 'Neutral800' | 'Neutral900' | 'Neutral1000' | 'Neutral1100';
3
3
  export type BaseToken = keyof PaletteColorTokenSchema<PaletteValues>['color']['palette'];
4
4
  declare const palette: PaletteColorTokenSchema<PaletteValues>;
5
5
  export default palette;
@@ -18,6 +18,7 @@ export interface ActiveThemeState extends ThemeState {
18
18
  * @param {string} themeState.colorMode Determines which color theme is applied. If set to `auto`, the theme applied will be determined by the OS setting.
19
19
  * @param {string} themeState.dark The color theme to be applied when the color mode resolves to 'dark'.
20
20
  * @param {string} themeState.light The color theme to be applied when the color mode resolves to 'light'.
21
+ * @param {string} themeState.shape The shape theme to be applied.
21
22
  * @param {string} themeState.spacing The spacing theme to be applied.
22
23
  * @param {string} themeState.typography The typography theme to be applied.
23
24
  *
@@ -42,13 +43,14 @@ export interface ThemeStyles {
42
43
  * @param {string} themeState.colorMode Determines which color theme is applied. If set to `auto`, the theme applied will be determined by the OS setting.
43
44
  * @param {string} themeState.dark The color theme to be applied when the color mode resolves to 'dark'.
44
45
  * @param {string} themeState.light The color theme to be applied when the color mode resolves to 'light'.
46
+ * @param {string} themeState.shape The shape theme to be applied.
45
47
  * @param {string} themeState.spacing The spacing theme to be applied.
46
48
  * @param {string} themeState.typography The typography theme to be applied.
47
49
  *
48
50
  * @returns A Promise of an object array, containing theme IDs, data-attributes to attach to the theme, and the theme CSS.
49
51
  * If an error is encountered while loading themes, the themes arrav will be emptv.
50
52
  */
51
- export declare const getThemeStyles: ({ colorMode, dark, light, spacing, typography, shape, }?: Partial<ThemeState>) => Promise<ThemeStyles[]>;
53
+ export declare const getThemeStyles: ({ colorMode, dark, light, shape, spacing, typography, }?: Partial<ThemeState>) => Promise<ThemeStyles[]>;
52
54
  /**
53
55
  * Server-side rendering utility. Generates the valid HTML attributes for a given theme.
54
56
  * Note: this utility does not handle automatic theme switching.
@@ -1,5 +1,5 @@
1
1
  import type { UtilTokenSchema, ValueSchema } from '../../../types';
2
2
  declare const _default: {
3
- utility: ValueSchema<UtilTokenSchema<"Red100" | "Red200" | "Red300" | "Red400" | "Red500" | "Red600" | "Red700" | "Red800" | "Red900" | "Red1000" | "Orange100" | "Orange200" | "Orange300" | "Orange400" | "Orange500" | "Orange600" | "Orange700" | "Orange800" | "Orange900" | "Orange1000" | "Yellow100" | "Yellow200" | "Yellow300" | "Yellow400" | "Yellow500" | "Yellow600" | "Yellow700" | "Yellow800" | "Yellow900" | "Yellow1000" | "Green100" | "Green200" | "Green300" | "Green400" | "Green500" | "Green600" | "Green700" | "Green800" | "Green900" | "Green1000" | "Teal100" | "Teal200" | "Teal300" | "Teal400" | "Teal500" | "Teal600" | "Teal700" | "Teal800" | "Teal900" | "Teal1000" | "Blue100" | "Blue200" | "Blue300" | "Blue400" | "Blue500" | "Blue600" | "Blue700" | "Blue800" | "Blue900" | "Blue1000" | "Purple100" | "Purple200" | "Purple300" | "Purple400" | "Purple500" | "Purple600" | "Purple700" | "Purple800" | "Purple900" | "Purple1000" | "Magenta100" | "Magenta200" | "Magenta300" | "Magenta400" | "Magenta500" | "Magenta600" | "Magenta700" | "Magenta800" | "Magenta900" | "Magenta1000" | "Neutral0" | "Neutral100" | "Neutral200" | "Neutral300" | "Neutral400" | "Neutral500" | "Neutral600" | "Neutral700" | "Neutral800" | "Neutral900" | "Neutral1000" | "Neutral1100" | "Neutral100A" | "Neutral200A" | "Neutral300A" | "Neutral400A" | "Neutral500A" | "DarkNeutral-100" | "DarkNeutral0" | "DarkNeutral100" | "DarkNeutral200" | "DarkNeutral300" | "DarkNeutral400" | "DarkNeutral500" | "DarkNeutral600" | "DarkNeutral700" | "DarkNeutral800" | "DarkNeutral900" | "DarkNeutral1000" | "DarkNeutral1100" | "DarkNeutral-100A" | "DarkNeutral100A" | "DarkNeutral200A" | "DarkNeutral300A" | "DarkNeutral400A" | "DarkNeutral500A">>;
3
+ utility: ValueSchema<UtilTokenSchema<"Lime100" | "Lime200" | "Lime300" | "Lime400" | "Lime500" | "Lime600" | "Lime700" | "Lime800" | "Lime900" | "Lime1000" | "Red100" | "Red200" | "Red300" | "Red400" | "Red500" | "Red600" | "Red700" | "Red800" | "Red900" | "Red1000" | "Orange100" | "Orange200" | "Orange300" | "Orange400" | "Orange500" | "Orange600" | "Orange700" | "Orange800" | "Orange900" | "Orange1000" | "Yellow100" | "Yellow200" | "Yellow300" | "Yellow400" | "Yellow500" | "Yellow600" | "Yellow700" | "Yellow800" | "Yellow900" | "Yellow1000" | "Green100" | "Green200" | "Green300" | "Green400" | "Green500" | "Green600" | "Green700" | "Green800" | "Green900" | "Green1000" | "Teal100" | "Teal200" | "Teal300" | "Teal400" | "Teal500" | "Teal600" | "Teal700" | "Teal800" | "Teal900" | "Teal1000" | "Blue100" | "Blue200" | "Blue300" | "Blue400" | "Blue500" | "Blue600" | "Blue700" | "Blue800" | "Blue900" | "Blue1000" | "Purple100" | "Purple200" | "Purple300" | "Purple400" | "Purple500" | "Purple600" | "Purple700" | "Purple800" | "Purple900" | "Purple1000" | "Magenta100" | "Magenta200" | "Magenta300" | "Magenta400" | "Magenta500" | "Magenta600" | "Magenta700" | "Magenta800" | "Magenta900" | "Magenta1000" | "Neutral0" | "Neutral100" | "Neutral200" | "Neutral300" | "Neutral400" | "Neutral500" | "Neutral600" | "Neutral700" | "Neutral800" | "Neutral900" | "Neutral1000" | "Neutral1100" | "Neutral100A" | "Neutral200A" | "Neutral300A" | "Neutral400A" | "Neutral500A" | "DarkNeutral-100" | "DarkNeutral0" | "DarkNeutral100" | "DarkNeutral200" | "DarkNeutral300" | "DarkNeutral400" | "DarkNeutral500" | "DarkNeutral600" | "DarkNeutral700" | "DarkNeutral800" | "DarkNeutral900" | "DarkNeutral1000" | "DarkNeutral1100" | "DarkNeutral-100A" | "DarkNeutral100A" | "DarkNeutral200A" | "DarkNeutral300A" | "DarkNeutral400A" | "DarkNeutral500A">>;
4
4
  };
5
5
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import type { UtilTokenSchema, ValueSchema } from '../../../types';
2
2
  declare const _default: {
3
- utility: ValueSchema<UtilTokenSchema<"Red100" | "Red200" | "Red300" | "Red400" | "Red500" | "Red600" | "Red700" | "Red800" | "Red900" | "Red1000" | "Orange100" | "Orange200" | "Orange300" | "Orange400" | "Orange500" | "Orange600" | "Orange700" | "Orange800" | "Orange900" | "Orange1000" | "Yellow100" | "Yellow200" | "Yellow300" | "Yellow400" | "Yellow500" | "Yellow600" | "Yellow700" | "Yellow800" | "Yellow900" | "Yellow1000" | "Green100" | "Green200" | "Green300" | "Green400" | "Green500" | "Green600" | "Green700" | "Green800" | "Green900" | "Green1000" | "Teal100" | "Teal200" | "Teal300" | "Teal400" | "Teal500" | "Teal600" | "Teal700" | "Teal800" | "Teal900" | "Teal1000" | "Blue100" | "Blue200" | "Blue300" | "Blue400" | "Blue500" | "Blue600" | "Blue700" | "Blue800" | "Blue900" | "Blue1000" | "Purple100" | "Purple200" | "Purple300" | "Purple400" | "Purple500" | "Purple600" | "Purple700" | "Purple800" | "Purple900" | "Purple1000" | "Magenta100" | "Magenta200" | "Magenta300" | "Magenta400" | "Magenta500" | "Magenta600" | "Magenta700" | "Magenta800" | "Magenta900" | "Magenta1000" | "Neutral0" | "Neutral100" | "Neutral200" | "Neutral300" | "Neutral400" | "Neutral500" | "Neutral600" | "Neutral700" | "Neutral800" | "Neutral900" | "Neutral1000" | "Neutral1100" | "Neutral100A" | "Neutral200A" | "Neutral300A" | "Neutral400A" | "Neutral500A" | "DarkNeutral-100" | "DarkNeutral0" | "DarkNeutral100" | "DarkNeutral200" | "DarkNeutral300" | "DarkNeutral400" | "DarkNeutral500" | "DarkNeutral600" | "DarkNeutral700" | "DarkNeutral800" | "DarkNeutral900" | "DarkNeutral1000" | "DarkNeutral1100" | "DarkNeutral-100A" | "DarkNeutral100A" | "DarkNeutral200A" | "DarkNeutral300A" | "DarkNeutral400A" | "DarkNeutral500A">>;
3
+ utility: ValueSchema<UtilTokenSchema<"Lime100" | "Lime200" | "Lime300" | "Lime400" | "Lime500" | "Lime600" | "Lime700" | "Lime800" | "Lime900" | "Lime1000" | "Red100" | "Red200" | "Red300" | "Red400" | "Red500" | "Red600" | "Red700" | "Red800" | "Red900" | "Red1000" | "Orange100" | "Orange200" | "Orange300" | "Orange400" | "Orange500" | "Orange600" | "Orange700" | "Orange800" | "Orange900" | "Orange1000" | "Yellow100" | "Yellow200" | "Yellow300" | "Yellow400" | "Yellow500" | "Yellow600" | "Yellow700" | "Yellow800" | "Yellow900" | "Yellow1000" | "Green100" | "Green200" | "Green300" | "Green400" | "Green500" | "Green600" | "Green700" | "Green800" | "Green900" | "Green1000" | "Teal100" | "Teal200" | "Teal300" | "Teal400" | "Teal500" | "Teal600" | "Teal700" | "Teal800" | "Teal900" | "Teal1000" | "Blue100" | "Blue200" | "Blue300" | "Blue400" | "Blue500" | "Blue600" | "Blue700" | "Blue800" | "Blue900" | "Blue1000" | "Purple100" | "Purple200" | "Purple300" | "Purple400" | "Purple500" | "Purple600" | "Purple700" | "Purple800" | "Purple900" | "Purple1000" | "Magenta100" | "Magenta200" | "Magenta300" | "Magenta400" | "Magenta500" | "Magenta600" | "Magenta700" | "Magenta800" | "Magenta900" | "Magenta1000" | "Neutral0" | "Neutral100" | "Neutral200" | "Neutral300" | "Neutral400" | "Neutral500" | "Neutral600" | "Neutral700" | "Neutral800" | "Neutral900" | "Neutral1000" | "Neutral1100" | "Neutral100A" | "Neutral200A" | "Neutral300A" | "Neutral400A" | "Neutral500A" | "DarkNeutral-100" | "DarkNeutral0" | "DarkNeutral100" | "DarkNeutral200" | "DarkNeutral300" | "DarkNeutral400" | "DarkNeutral500" | "DarkNeutral600" | "DarkNeutral700" | "DarkNeutral800" | "DarkNeutral900" | "DarkNeutral1000" | "DarkNeutral1100" | "DarkNeutral-100A" | "DarkNeutral100A" | "DarkNeutral200A" | "DarkNeutral300A" | "DarkNeutral400A" | "DarkNeutral500A">>;
4
4
  };
5
5
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import type { AttributeSchema, UtilTokenSchema } from '../../../types';
2
2
  declare const _default: {
3
- utility: AttributeSchema<UtilTokenSchema<"Red100" | "Red200" | "Red300" | "Red400" | "Red500" | "Red600" | "Red700" | "Red800" | "Red900" | "Red1000" | "Orange100" | "Orange200" | "Orange300" | "Orange400" | "Orange500" | "Orange600" | "Orange700" | "Orange800" | "Orange900" | "Orange1000" | "Yellow100" | "Yellow200" | "Yellow300" | "Yellow400" | "Yellow500" | "Yellow600" | "Yellow700" | "Yellow800" | "Yellow900" | "Yellow1000" | "Green100" | "Green200" | "Green300" | "Green400" | "Green500" | "Green600" | "Green700" | "Green800" | "Green900" | "Green1000" | "Teal100" | "Teal200" | "Teal300" | "Teal400" | "Teal500" | "Teal600" | "Teal700" | "Teal800" | "Teal900" | "Teal1000" | "Blue100" | "Blue200" | "Blue300" | "Blue400" | "Blue500" | "Blue600" | "Blue700" | "Blue800" | "Blue900" | "Blue1000" | "Purple100" | "Purple200" | "Purple300" | "Purple400" | "Purple500" | "Purple600" | "Purple700" | "Purple800" | "Purple900" | "Purple1000" | "Magenta100" | "Magenta200" | "Magenta300" | "Magenta400" | "Magenta500" | "Magenta600" | "Magenta700" | "Magenta800" | "Magenta900" | "Magenta1000" | "Neutral0" | "Neutral100" | "Neutral200" | "Neutral300" | "Neutral400" | "Neutral500" | "Neutral600" | "Neutral700" | "Neutral800" | "Neutral900" | "Neutral1000" | "Neutral1100" | "Neutral100A" | "Neutral200A" | "Neutral300A" | "Neutral400A" | "Neutral500A" | "DarkNeutral-100" | "DarkNeutral0" | "DarkNeutral100" | "DarkNeutral200" | "DarkNeutral300" | "DarkNeutral400" | "DarkNeutral500" | "DarkNeutral600" | "DarkNeutral700" | "DarkNeutral800" | "DarkNeutral900" | "DarkNeutral1000" | "DarkNeutral1100" | "DarkNeutral-100A" | "DarkNeutral100A" | "DarkNeutral200A" | "DarkNeutral300A" | "DarkNeutral400A" | "DarkNeutral500A">>;
3
+ utility: AttributeSchema<UtilTokenSchema<"Lime100" | "Lime200" | "Lime300" | "Lime400" | "Lime500" | "Lime600" | "Lime700" | "Lime800" | "Lime900" | "Lime1000" | "Red100" | "Red200" | "Red300" | "Red400" | "Red500" | "Red600" | "Red700" | "Red800" | "Red900" | "Red1000" | "Orange100" | "Orange200" | "Orange300" | "Orange400" | "Orange500" | "Orange600" | "Orange700" | "Orange800" | "Orange900" | "Orange1000" | "Yellow100" | "Yellow200" | "Yellow300" | "Yellow400" | "Yellow500" | "Yellow600" | "Yellow700" | "Yellow800" | "Yellow900" | "Yellow1000" | "Green100" | "Green200" | "Green300" | "Green400" | "Green500" | "Green600" | "Green700" | "Green800" | "Green900" | "Green1000" | "Teal100" | "Teal200" | "Teal300" | "Teal400" | "Teal500" | "Teal600" | "Teal700" | "Teal800" | "Teal900" | "Teal1000" | "Blue100" | "Blue200" | "Blue300" | "Blue400" | "Blue500" | "Blue600" | "Blue700" | "Blue800" | "Blue900" | "Blue1000" | "Purple100" | "Purple200" | "Purple300" | "Purple400" | "Purple500" | "Purple600" | "Purple700" | "Purple800" | "Purple900" | "Purple1000" | "Magenta100" | "Magenta200" | "Magenta300" | "Magenta400" | "Magenta500" | "Magenta600" | "Magenta700" | "Magenta800" | "Magenta900" | "Magenta1000" | "Neutral0" | "Neutral100" | "Neutral200" | "Neutral300" | "Neutral400" | "Neutral500" | "Neutral600" | "Neutral700" | "Neutral800" | "Neutral900" | "Neutral1000" | "Neutral1100" | "Neutral100A" | "Neutral200A" | "Neutral300A" | "Neutral400A" | "Neutral500A" | "DarkNeutral-100" | "DarkNeutral0" | "DarkNeutral100" | "DarkNeutral200" | "DarkNeutral300" | "DarkNeutral400" | "DarkNeutral500" | "DarkNeutral600" | "DarkNeutral700" | "DarkNeutral800" | "DarkNeutral900" | "DarkNeutral1000" | "DarkNeutral1100" | "DarkNeutral-100A" | "DarkNeutral100A" | "DarkNeutral200A" | "DarkNeutral300A" | "DarkNeutral400A" | "DarkNeutral500A">>;
4
4
  };
5
5
  export default _default;
@@ -9,7 +9,7 @@ export type ExperimentalTokenState = 'experimental';
9
9
  export type TokenState = ActiveTokenState | DeprecatedTokenState | DeletedTokenState | ExperimentalTokenState;
10
10
  export type Replacement = InternalTokenIds | InternalTokenIds[];
11
11
  export type ExperimentalReplacement = InternalTokenIds | InternalTokenIds[] | string;
12
- export type PaletteCategory = 'blue' | 'purple' | 'red' | 'magenta' | 'orange' | 'yellow' | 'green' | 'teal' | 'light mode neutral' | 'dark mode neutral';
12
+ export type PaletteCategory = 'blue' | 'purple' | 'red' | 'magenta' | 'orange' | 'yellow' | 'green' | 'teal' | 'lime' | 'light mode neutral' | 'dark mode neutral';
13
13
  export type ValueCategory = 'opacity';
14
14
  export interface Token<TValue, Group extends Groups> {
15
15
  value: TValue;
@@ -365,6 +365,10 @@ export interface AccentColorTokenSchema<BaseToken> {
365
365
  '[default]': PaintToken<BaseToken>;
366
366
  bolder: PaintToken<BaseToken>;
367
367
  };
368
+ lime: {
369
+ '[default]': PaintToken<BaseToken>;
370
+ bolder: PaintToken<BaseToken>;
371
+ };
368
372
  gray: {
369
373
  '[default]': PaintToken<BaseToken>;
370
374
  bolder: PaintToken<BaseToken>;
@@ -381,6 +385,7 @@ export interface AccentColorTokenSchema<BaseToken> {
381
385
  purple: PaintToken<BaseToken>;
382
386
  teal: PaintToken<BaseToken>;
383
387
  magenta: PaintToken<BaseToken>;
388
+ lime: PaintToken<BaseToken>;
384
389
  gray: PaintToken<BaseToken>;
385
390
  };
386
391
  };
@@ -394,6 +399,7 @@ export interface AccentColorTokenSchema<BaseToken> {
394
399
  purple: PaintToken<BaseToken>;
395
400
  teal: PaintToken<BaseToken>;
396
401
  magenta: PaintToken<BaseToken>;
402
+ lime: PaintToken<BaseToken>;
397
403
  gray: PaintToken<BaseToken>;
398
404
  };
399
405
  };
@@ -447,6 +453,12 @@ export interface AccentColorTokenSchema<BaseToken> {
447
453
  subtle: PaintToken<BaseToken>;
448
454
  bolder: PaintToken<BaseToken>;
449
455
  };
456
+ lime: {
457
+ subtlest: PaintToken<BaseToken>;
458
+ subtler: PaintToken<BaseToken>;
459
+ subtle: PaintToken<BaseToken>;
460
+ bolder: PaintToken<BaseToken>;
461
+ };
450
462
  gray: {
451
463
  subtlest: PaintToken<BaseToken>;
452
464
  subtler: PaintToken<BaseToken>;
@@ -638,6 +650,20 @@ export interface ChartColorTokenSchema<BaseToken> {
638
650
  hovered: PaintToken<BaseToken>;
639
651
  };
640
652
  };
653
+ lime: {
654
+ bold: {
655
+ '[default]': PaintToken<BaseToken>;
656
+ hovered: PaintToken<BaseToken>;
657
+ };
658
+ bolder: {
659
+ '[default]': PaintToken<BaseToken>;
660
+ hovered: PaintToken<BaseToken>;
661
+ };
662
+ boldest: {
663
+ '[default]': PaintToken<BaseToken>;
664
+ hovered: PaintToken<BaseToken>;
665
+ };
666
+ };
641
667
  teal: {
642
668
  bold: {
643
669
  '[default]': PaintToken<BaseToken>;
@@ -10,6 +10,24 @@
10
10
  },
11
11
  "value": "#C7D1DB"
12
12
  },
13
+ "Dark/color.text.accent.lime": {
14
+ "attributes": {
15
+ "group": "paint",
16
+ "state": "active",
17
+ "introduced": "1.6.0",
18
+ "description": "Use for lime text on subtlest and subtler lime accent backgrounds when there is no meaning tied to the color."
19
+ },
20
+ "value": "#B3DF72"
21
+ },
22
+ "Dark/color.text.accent.lime.bolder": {
23
+ "attributes": {
24
+ "group": "paint",
25
+ "state": "active",
26
+ "introduced": "0.7.0",
27
+ "description": "Use for lime text on subtle lime accent backgrounds when there is no meaning tied to the color."
28
+ },
29
+ "value": "#D3F1A7"
30
+ },
13
31
  "Dark/color.text.accent.red": {
14
32
  "attributes": {
15
33
  "group": "paint",
@@ -307,6 +325,15 @@
307
325
  },
308
326
  "value": "#9FADBC"
309
327
  },
328
+ "Dark/color.icon.accent.lime": {
329
+ "attributes": {
330
+ "group": "paint",
331
+ "state": "active",
332
+ "introduced": "1.6.0",
333
+ "description": "Use for lime icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
334
+ },
335
+ "value": "#82B536"
336
+ },
310
337
  "Dark/color.icon.accent.red": {
311
338
  "attributes": {
312
339
  "group": "paint",
@@ -496,6 +523,15 @@
496
523
  },
497
524
  "value": "#A6C5E229"
498
525
  },
526
+ "Dark/color.border.accent.lime": {
527
+ "attributes": {
528
+ "group": "paint",
529
+ "state": "active",
530
+ "introduced": "1.6.0",
531
+ "description": "Use for lime borders on non-bold backgrounds when there is no meaning tied to the color."
532
+ },
533
+ "value": "#82B536"
534
+ },
499
535
  "Dark/color.border.accent.red": {
500
536
  "attributes": {
501
537
  "group": "paint",
@@ -685,6 +721,42 @@
685
721
  },
686
722
  "value": "#738496"
687
723
  },
724
+ "Dark/color.background.accent.lime.subtlest": {
725
+ "attributes": {
726
+ "group": "paint",
727
+ "state": "active",
728
+ "introduced": "1.6.0",
729
+ "description": "Use for for backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
730
+ },
731
+ "value": "#2A3818"
732
+ },
733
+ "Dark/color.background.accent.lime.subtler": {
734
+ "attributes": {
735
+ "group": "paint",
736
+ "state": "active",
737
+ "introduced": "1.6.0",
738
+ "description": "Use for for backgrounds when there is no meaning tied to the color, such as colored tags."
739
+ },
740
+ "value": "#37471F"
741
+ },
742
+ "Dark/color.background.accent.lime.subtle": {
743
+ "attributes": {
744
+ "group": "paint",
745
+ "state": "active",
746
+ "introduced": "1.6.0",
747
+ "description": "Use for vibrant for backgrounds when there is no meaning tied to the color, such as colored tags."
748
+ },
749
+ "value": "#4C6B1F"
750
+ },
751
+ "Dark/color.background.accent.lime.bolder": {
752
+ "attributes": {
753
+ "group": "paint",
754
+ "state": "active",
755
+ "introduced": "1.6.0",
756
+ "description": "Use for for backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
757
+ },
758
+ "value": "#94C748"
759
+ },
688
760
  "Dark/color.background.accent.red.subtlest": {
689
761
  "attributes": {
690
762
  "group": "paint",
@@ -1711,6 +1783,60 @@
1711
1783
  },
1712
1784
  "value": "#FFE2BD"
1713
1785
  },
1786
+ "Dark/color.chart.lime.bold": {
1787
+ "attributes": {
1788
+ "group": "paint",
1789
+ "state": "active",
1790
+ "introduced": "0.13.3",
1791
+ "description": "For data visualisation only."
1792
+ },
1793
+ "value": "#37B4C3"
1794
+ },
1795
+ "Dark/color.chart.lime.bold.hovered": {
1796
+ "attributes": {
1797
+ "group": "paint",
1798
+ "state": "active",
1799
+ "introduced": "0.13.3",
1800
+ "description": "Hovered state of color.chart.lime.bold."
1801
+ },
1802
+ "value": "#60C6D2"
1803
+ },
1804
+ "Dark/color.chart.lime.bolder": {
1805
+ "attributes": {
1806
+ "group": "paint",
1807
+ "state": "active",
1808
+ "introduced": "0.13.3",
1809
+ "description": "For data visualisation only."
1810
+ },
1811
+ "value": "#60C6D2"
1812
+ },
1813
+ "Dark/color.chart.lime.bolder.hovered": {
1814
+ "attributes": {
1815
+ "group": "paint",
1816
+ "state": "active",
1817
+ "introduced": "0.13.3",
1818
+ "description": "Hovered state of color.chart.lime.bolder."
1819
+ },
1820
+ "value": "#8BDBE5"
1821
+ },
1822
+ "Dark/color.chart.lime.boldest": {
1823
+ "attributes": {
1824
+ "group": "paint",
1825
+ "state": "active",
1826
+ "introduced": "0.13.3",
1827
+ "description": "For data visualisation only."
1828
+ },
1829
+ "value": "#8BDBE5"
1830
+ },
1831
+ "Dark/color.chart.lime.boldest.hovered": {
1832
+ "attributes": {
1833
+ "group": "paint",
1834
+ "state": "active",
1835
+ "introduced": "0.13.3",
1836
+ "description": "Hovered state of color.chart.lime.boldest."
1837
+ },
1838
+ "value": "#C1F0F5"
1839
+ },
1714
1840
  "Dark/color.chart.neutral": {
1715
1841
  "attributes": {
1716
1842
  "group": "paint",
@@ -10,6 +10,24 @@
10
10
  },
11
11
  "value": "#E6EDFA"
12
12
  },
13
+ "Legacy dark/color.text.accent.lime": {
14
+ "attributes": {
15
+ "group": "paint",
16
+ "state": "active",
17
+ "introduced": "1.6.0",
18
+ "description": "Use for lime text on subtlest and subtler lime accent backgrounds when there is no meaning tied to the color."
19
+ },
20
+ "value": "#4C6B1F"
21
+ },
22
+ "Legacy dark/color.text.accent.lime.bolder": {
23
+ "attributes": {
24
+ "group": "paint",
25
+ "state": "active",
26
+ "introduced": "0.7.0",
27
+ "description": "Use for lime text on subtle lime accent backgrounds when there is no meaning tied to the color."
28
+ },
29
+ "value": "#37471F"
30
+ },
13
31
  "Legacy dark/color.text.accent.red": {
14
32
  "attributes": {
15
33
  "group": "paint",
@@ -307,6 +325,15 @@
307
325
  },
308
326
  "value": "#DCE5F5"
309
327
  },
328
+ "Legacy dark/color.icon.accent.lime": {
329
+ "attributes": {
330
+ "group": "paint",
331
+ "state": "active",
332
+ "introduced": "1.6.0",
333
+ "description": "Use for lime icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
334
+ },
335
+ "value": "#6A9A23"
336
+ },
310
337
  "Legacy dark/color.icon.accent.red": {
311
338
  "attributes": {
312
339
  "group": "paint",
@@ -496,6 +523,15 @@
496
523
  },
497
524
  "value": "#202B3D"
498
525
  },
526
+ "Legacy dark/color.border.accent.lime": {
527
+ "attributes": {
528
+ "group": "paint",
529
+ "state": "active",
530
+ "introduced": "1.6.0",
531
+ "description": "Use for lime borders on non-bold backgrounds when there is no meaning tied to the color."
532
+ },
533
+ "value": "#6A9A23"
534
+ },
499
535
  "Legacy dark/color.border.accent.red": {
500
536
  "attributes": {
501
537
  "group": "paint",
@@ -685,6 +721,42 @@
685
721
  },
686
722
  "value": "#7988A3"
687
723
  },
724
+ "Legacy dark/color.background.accent.lime.subtlest": {
725
+ "attributes": {
726
+ "group": "paint",
727
+ "state": "active",
728
+ "introduced": "1.6.0",
729
+ "description": "Use for for backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
730
+ },
731
+ "value": "#EEFBDA"
732
+ },
733
+ "Legacy dark/color.background.accent.lime.subtler": {
734
+ "attributes": {
735
+ "group": "paint",
736
+ "state": "active",
737
+ "introduced": "1.6.0",
738
+ "description": "Use for for backgrounds when there is no meaning tied to the color, such as colored tags."
739
+ },
740
+ "value": "#D3F1A7"
741
+ },
742
+ "Legacy dark/color.background.accent.lime.subtle": {
743
+ "attributes": {
744
+ "group": "paint",
745
+ "state": "active",
746
+ "introduced": "1.6.0",
747
+ "description": "Use for vibrant for backgrounds when there is no meaning tied to the color, such as colored tags."
748
+ },
749
+ "value": "#94C748"
750
+ },
751
+ "Legacy dark/color.background.accent.lime.bolder": {
752
+ "attributes": {
753
+ "group": "paint",
754
+ "state": "active",
755
+ "introduced": "1.6.0",
756
+ "description": "Use for for backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
757
+ },
758
+ "value": "#5B7F24"
759
+ },
688
760
  "Legacy dark/color.background.accent.red.subtlest": {
689
761
  "attributes": {
690
762
  "group": "paint",
@@ -1711,6 +1783,60 @@
1711
1783
  },
1712
1784
  "value": "#FFE2BD"
1713
1785
  },
1786
+ "Legacy dark/color.chart.lime.bold": {
1787
+ "attributes": {
1788
+ "group": "paint",
1789
+ "state": "active",
1790
+ "introduced": "0.13.3",
1791
+ "description": "For data visualisation only."
1792
+ },
1793
+ "value": "#6A9A23"
1794
+ },
1795
+ "Legacy dark/color.chart.lime.bold.hovered": {
1796
+ "attributes": {
1797
+ "group": "paint",
1798
+ "state": "active",
1799
+ "introduced": "0.13.3",
1800
+ "description": "Hovered state of color.chart.lime.bold."
1801
+ },
1802
+ "value": "#5B7F24"
1803
+ },
1804
+ "Legacy dark/color.chart.lime.bolder": {
1805
+ "attributes": {
1806
+ "group": "paint",
1807
+ "state": "active",
1808
+ "introduced": "0.13.3",
1809
+ "description": "For data visualisation only."
1810
+ },
1811
+ "value": "#5B7F24"
1812
+ },
1813
+ "Legacy dark/color.chart.lime.bolder.hovered": {
1814
+ "attributes": {
1815
+ "group": "paint",
1816
+ "state": "active",
1817
+ "introduced": "0.13.3",
1818
+ "description": "Hovered state of color.chart.lime.bolder."
1819
+ },
1820
+ "value": "#4C6B1F"
1821
+ },
1822
+ "Legacy dark/color.chart.lime.boldest": {
1823
+ "attributes": {
1824
+ "group": "paint",
1825
+ "state": "active",
1826
+ "introduced": "0.13.3",
1827
+ "description": "For data visualisation only."
1828
+ },
1829
+ "value": "#4C6B1F"
1830
+ },
1831
+ "Legacy dark/color.chart.lime.boldest.hovered": {
1832
+ "attributes": {
1833
+ "group": "paint",
1834
+ "state": "active",
1835
+ "introduced": "0.13.3",
1836
+ "description": "Hovered state of color.chart.lime.boldest."
1837
+ },
1838
+ "value": "#37471F"
1839
+ },
1714
1840
  "Legacy dark/color.chart.neutral": {
1715
1841
  "attributes": {
1716
1842
  "group": "paint",