@primer/primitives 9.0.3 → 9.1.0-rc.c6c17c46

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 (375) hide show
  1. package/dist/build/PrimerStyleDictionary.d.ts +9 -0
  2. package/dist/build/PrimerStyleDictionary.js +92 -0
  3. package/dist/build/filters/index.d.ts +13 -0
  4. package/dist/build/filters/index.js +29 -0
  5. package/{src/filters/isBorder.ts → dist/build/filters/isBorder.d.ts} +2 -5
  6. package/dist/build/filters/isBorder.js +12 -0
  7. package/{src/filters/isColor.ts → dist/build/filters/isColor.d.ts} +2 -5
  8. package/dist/build/filters/isColor.js +12 -0
  9. package/dist/build/filters/isColorWithAlpha.d.ts +7 -0
  10. package/dist/build/filters/isColorWithAlpha.js +13 -0
  11. package/dist/build/filters/isColorWithMix.d.ts +7 -0
  12. package/dist/build/filters/isColorWithMix.js +28 -0
  13. package/{src/filters/isDeprecated.ts → dist/build/filters/isDeprecated.d.ts} +2 -5
  14. package/dist/build/filters/isDeprecated.js +12 -0
  15. package/{src/filters/isDimension.ts → dist/build/filters/isDimension.d.ts} +2 -5
  16. package/dist/build/filters/isDimension.js +12 -0
  17. package/{src/filters/isDuration.ts → dist/build/filters/isDuration.d.ts} +2 -5
  18. package/dist/build/filters/isDuration.js +12 -0
  19. package/{src/filters/isFontFamily.ts → dist/build/filters/isFontFamily.d.ts} +2 -5
  20. package/dist/build/filters/isFontFamily.js +12 -0
  21. package/{src/filters/isFontWeight.ts → dist/build/filters/isFontWeight.d.ts} +2 -5
  22. package/dist/build/filters/isFontWeight.js +12 -0
  23. package/dist/build/filters/isFromFile.d.ts +8 -0
  24. package/dist/build/filters/isFromFile.js +14 -0
  25. package/{src/filters/isNumber.ts → dist/build/filters/isNumber.d.ts} +2 -3
  26. package/dist/build/filters/isNumber.js +10 -0
  27. package/{src/filters/isShadow.ts → dist/build/filters/isShadow.d.ts} +2 -5
  28. package/dist/build/filters/isShadow.js +12 -0
  29. package/{src/filters/isSource.ts → dist/build/filters/isSource.d.ts} +2 -5
  30. package/dist/build/filters/isSource.js +12 -0
  31. package/{src/filters/isTypography.ts → dist/build/filters/isTypography.d.ts} +2 -5
  32. package/dist/build/filters/isTypography.js +12 -0
  33. package/dist/build/formats/cssAdvanced.d.ts +2 -0
  34. package/dist/build/formats/cssAdvanced.js +85 -0
  35. package/dist/build/formats/cssCustomMedia.d.ts +7 -0
  36. package/dist/build/formats/cssCustomMedia.js +25 -0
  37. package/dist/build/formats/index.d.ts +9 -0
  38. package/dist/build/formats/index.js +21 -0
  39. package/dist/build/formats/javascriptCommonJs.d.ts +7 -0
  40. package/dist/build/formats/javascriptCommonJs.js +25 -0
  41. package/dist/build/formats/javascriptEsm.d.ts +7 -0
  42. package/dist/build/formats/javascriptEsm.js +25 -0
  43. package/dist/build/formats/jsonFigma.d.ts +7 -0
  44. package/dist/build/formats/jsonFigma.js +116 -0
  45. package/dist/build/formats/jsonNestedPrefixed.d.ts +8 -0
  46. package/dist/build/formats/jsonNestedPrefixed.js +28 -0
  47. package/dist/build/formats/jsonOneDimensional.d.ts +8 -0
  48. package/dist/build/formats/jsonOneDimensional.js +24 -0
  49. package/dist/build/formats/jsonPostCssFallback.d.ts +8 -0
  50. package/dist/build/formats/jsonPostCssFallback.js +21 -0
  51. package/dist/build/formats/typescriptExportDefinition.d.ts +7 -0
  52. package/dist/build/formats/typescriptExportDefinition.js +166 -0
  53. package/{src/formats/utilities/jsonToFlat.ts → dist/build/formats/utilities/jsonToFlat.d.ts} +4 -3
  54. package/dist/build/formats/utilities/jsonToFlat.js +12 -0
  55. package/dist/build/formats/utilities/jsonToNestedValue.d.ts +8 -0
  56. package/dist/build/formats/utilities/jsonToNestedValue.js +25 -0
  57. package/dist/build/formats/utilities/prefixTokens.d.ts +8 -0
  58. package/dist/build/formats/utilities/prefixTokens.js +17 -0
  59. package/dist/build/parsers/index.d.ts +1 -0
  60. package/dist/build/parsers/index.js +5 -0
  61. package/dist/build/parsers/w3cJsonParser.d.ts +6 -0
  62. package/dist/build/parsers/w3cJsonParser.js +27 -0
  63. package/dist/build/platforms/css.d.ts +2 -0
  64. package/dist/build/platforms/css.js +88 -0
  65. package/dist/build/platforms/deprecatedJson.d.ts +2 -0
  66. package/dist/build/platforms/deprecatedJson.js +17 -0
  67. package/dist/build/platforms/docJson.d.ts +2 -0
  68. package/dist/build/platforms/docJson.js +35 -0
  69. package/dist/build/platforms/fallbacks.d.ts +2 -0
  70. package/dist/build/platforms/fallbacks.js +35 -0
  71. package/dist/build/platforms/figma.d.ts +2 -0
  72. package/dist/build/platforms/figma.js +53 -0
  73. package/dist/build/platforms/index.d.ts +10 -0
  74. package/dist/build/platforms/index.js +23 -0
  75. package/dist/build/platforms/javascript.d.ts +2 -0
  76. package/dist/build/platforms/javascript.js +31 -0
  77. package/dist/build/platforms/json.d.ts +2 -0
  78. package/dist/build/platforms/json.js +33 -0
  79. package/dist/build/platforms/styleLint.d.ts +2 -0
  80. package/dist/build/platforms/styleLint.js +35 -0
  81. package/dist/build/platforms/typeDefinitions.d.ts +2 -0
  82. package/dist/build/platforms/typeDefinitions.js +31 -0
  83. package/dist/build/platforms/typescript.d.ts +2 -0
  84. package/dist/build/platforms/typescript.js +31 -0
  85. package/dist/build/schemas/alphaValue.d.ts +2 -0
  86. package/dist/build/schemas/alphaValue.js +8 -0
  87. package/dist/build/schemas/baseToken.d.ts +11 -0
  88. package/dist/build/schemas/baseToken.js +10 -0
  89. package/dist/build/schemas/borderToken.d.ts +51 -0
  90. package/dist/build/schemas/borderToken.js +20 -0
  91. package/dist/build/schemas/collections.d.ts +6 -0
  92. package/dist/build/schemas/collections.js +18 -0
  93. package/dist/build/schemas/colorHexValue.d.ts +2 -0
  94. package/dist/build/schemas/colorHexValue.js +12 -0
  95. package/dist/build/schemas/colorToken.d.ts +80 -0
  96. package/dist/build/schemas/colorToken.js +52 -0
  97. package/dist/build/schemas/designToken.d.ts +2 -0
  98. package/dist/build/schemas/designToken.js +37 -0
  99. package/dist/build/schemas/dimensionToken.d.ts +52 -0
  100. package/dist/build/schemas/dimensionToken.js +36 -0
  101. package/dist/build/schemas/dimensionValue.d.ts +2 -0
  102. package/dist/build/schemas/dimensionValue.js +12 -0
  103. package/dist/build/schemas/durationToken.d.ts +18 -0
  104. package/dist/build/schemas/durationToken.js +14 -0
  105. package/dist/build/schemas/durationValue.d.ts +2 -0
  106. package/dist/build/schemas/durationValue.js +8 -0
  107. package/dist/build/schemas/fontFamilyToken.d.ts +52 -0
  108. package/dist/build/schemas/fontFamilyToken.js +23 -0
  109. package/dist/build/schemas/fontWeightToken.d.ts +52 -0
  110. package/dist/build/schemas/fontWeightToken.js +24 -0
  111. package/dist/build/schemas/fontWeightValue.d.ts +2 -0
  112. package/dist/build/schemas/fontWeightValue.js +9 -0
  113. package/dist/build/schemas/numberToken.d.ts +71 -0
  114. package/dist/build/schemas/numberToken.js +30 -0
  115. package/dist/build/schemas/referenceValue.d.ts +2 -0
  116. package/dist/build/schemas/referenceValue.js +8 -0
  117. package/dist/build/schemas/scopes.d.ts +5 -0
  118. package/dist/build/schemas/scopes.js +34 -0
  119. package/dist/build/schemas/shadowToken.d.ts +157 -0
  120. package/dist/build/schemas/shadowToken.js +46 -0
  121. package/dist/build/schemas/stringToken.d.ts +18 -0
  122. package/dist/build/schemas/stringToken.js +13 -0
  123. package/dist/build/schemas/tokenName.d.ts +2 -0
  124. package/dist/build/schemas/tokenName.js +8 -0
  125. package/dist/build/schemas/tokenType.d.ts +3 -0
  126. package/dist/build/schemas/tokenType.js +6 -0
  127. package/dist/build/schemas/typographyToken.d.ts +59 -0
  128. package/dist/build/schemas/typographyToken.js +21 -0
  129. package/dist/build/schemas/validTokenType.d.ts +5 -0
  130. package/dist/build/schemas/validTokenType.js +34 -0
  131. package/dist/build/schemas/viewportRangeToken.d.ts +18 -0
  132. package/dist/build/schemas/viewportRangeToken.js +13 -0
  133. package/dist/build/transformers/borderToCss.d.ts +8 -0
  134. package/dist/build/transformers/borderToCss.js +38 -0
  135. package/dist/build/transformers/colorToHex.d.ts +8 -0
  136. package/dist/build/transformers/colorToHex.js +18 -0
  137. package/dist/build/transformers/colorToHexAlpha.d.ts +8 -0
  138. package/dist/build/transformers/colorToHexAlpha.js +25 -0
  139. package/dist/build/transformers/colorToHexMix.d.ts +8 -0
  140. package/dist/build/transformers/colorToHexMix.js +25 -0
  141. package/dist/build/transformers/colorToRgbAlpha.d.ts +8 -0
  142. package/dist/build/transformers/colorToRgbAlpha.js +22 -0
  143. package/dist/build/transformers/colorToRgbaFloat.d.ts +8 -0
  144. package/dist/build/transformers/colorToRgbaFloat.js +50 -0
  145. package/dist/build/transformers/dimensionToPixelUnitless.d.ts +8 -0
  146. package/dist/build/transformers/dimensionToPixelUnitless.js +50 -0
  147. package/dist/build/transformers/dimensionToRem.d.ts +8 -0
  148. package/dist/build/transformers/dimensionToRem.js +47 -0
  149. package/dist/build/transformers/dimensionToRemPxArray.d.ts +8 -0
  150. package/dist/build/transformers/dimensionToRemPxArray.js +47 -0
  151. package/dist/build/transformers/durationToCss.d.ts +8 -0
  152. package/dist/build/transformers/durationToCss.js +30 -0
  153. package/dist/build/transformers/figmaAttributes.d.ts +8 -0
  154. package/dist/build/transformers/figmaAttributes.js +57 -0
  155. package/dist/build/transformers/floatToPixel.d.ts +15 -0
  156. package/dist/build/transformers/floatToPixel.js +41 -0
  157. package/dist/build/transformers/fontFamilyToCss.d.ts +14 -0
  158. package/dist/build/transformers/fontFamilyToCss.js +40 -0
  159. package/dist/build/transformers/fontFamilyToFigma.d.ts +14 -0
  160. package/dist/build/transformers/fontFamilyToFigma.js +46 -0
  161. package/dist/build/transformers/fontWeightToNumber.d.ts +9 -0
  162. package/dist/build/transformers/fontWeightToNumber.js +53 -0
  163. package/dist/build/transformers/index.d.ts +24 -0
  164. package/dist/build/transformers/index.js +51 -0
  165. package/dist/build/transformers/jsonDeprecated.d.ts +8 -0
  166. package/dist/build/transformers/jsonDeprecated.js +16 -0
  167. package/{src/transformers/namePathToCamelCase.ts → dist/build/transformers/namePathToCamelCase.d.ts} +2 -8
  168. package/dist/build/transformers/namePathToCamelCase.js +14 -0
  169. package/dist/build/transformers/namePathToDotNotation.d.ts +8 -0
  170. package/dist/build/transformers/namePathToDotNotation.js +33 -0
  171. package/dist/build/transformers/namePathToFigma.d.ts +9 -0
  172. package/dist/build/transformers/namePathToFigma.js +24 -0
  173. package/dist/build/transformers/namePathToKebabCase.d.ts +8 -0
  174. package/dist/build/transformers/namePathToKebabCase.js +18 -0
  175. package/dist/build/transformers/namePathToPascalCase.d.ts +8 -0
  176. package/dist/build/transformers/namePathToPascalCase.js +14 -0
  177. package/dist/build/transformers/namePathToSlashNotation.d.ts +8 -0
  178. package/dist/build/transformers/namePathToSlashNotation.js +18 -0
  179. package/dist/build/transformers/shadowToCss.d.ts +8 -0
  180. package/dist/build/transformers/shadowToCss.js +35 -0
  181. package/dist/build/transformers/typographyToCss.d.ts +8 -0
  182. package/dist/build/transformers/typographyToCss.js +29 -0
  183. package/dist/build/transformers/utilities/alpha.d.ts +9 -0
  184. package/dist/build/transformers/utilities/alpha.js +20 -0
  185. package/dist/build/transformers/utilities/checkRequiredTokenProperties.d.ts +7 -0
  186. package/dist/build/transformers/utilities/checkRequiredTokenProperties.js +17 -0
  187. package/dist/build/transformers/utilities/getTokenValue.d.ts +2 -0
  188. package/dist/build/transformers/utilities/getTokenValue.js +18 -0
  189. package/dist/build/transformers/utilities/hasSpaceInString.d.ts +1 -0
  190. package/dist/build/transformers/utilities/hasSpaceInString.js +10 -0
  191. package/dist/build/transformers/utilities/hexToRgbaFloat.d.ts +2 -0
  192. package/dist/build/transformers/utilities/hexToRgbaFloat.js +33 -0
  193. package/dist/build/transformers/utilities/invalidTokenError.d.ts +7 -0
  194. package/dist/build/transformers/utilities/invalidTokenError.js +26 -0
  195. package/dist/build/transformers/utilities/isRgbaFloat.d.ts +7 -0
  196. package/dist/build/transformers/utilities/isRgbaFloat.js +24 -0
  197. package/dist/build/transformers/utilities/mix.d.ts +5 -0
  198. package/dist/build/transformers/utilities/mix.js +40 -0
  199. package/dist/build/transformers/utilities/rgbaFloatToHex.d.ts +6 -0
  200. package/dist/build/transformers/utilities/rgbaFloatToHex.js +15 -0
  201. package/dist/build/utilities/copyFromDir.d.ts +8 -0
  202. package/dist/build/utilities/copyFromDir.js +34 -0
  203. package/dist/build/utilities/filterStringArray.d.ts +1 -0
  204. package/dist/build/utilities/filterStringArray.js +17 -0
  205. package/{src/utilities/getFlag.ts → dist/build/utilities/getFlag.d.ts} +1 -5
  206. package/dist/build/utilities/getFlag.js +16 -0
  207. package/dist/build/utilities/index.d.ts +3 -0
  208. package/dist/build/utilities/index.js +9 -0
  209. package/dist/build/utilities/joinFriendly.d.ts +1 -0
  210. package/dist/build/utilities/joinFriendly.js +5 -0
  211. package/dist/build/utilities/schemaErrorMessage.d.ts +1 -0
  212. package/dist/build/utilities/schemaErrorMessage.js +5 -0
  213. package/dist/build/utilities/toCamelCase.d.ts +1 -0
  214. package/dist/build/utilities/toCamelCase.js +20 -0
  215. package/dist/build/utilities/toPascalCase.d.ts +1 -0
  216. package/dist/build/utilities/toPascalCase.js +17 -0
  217. package/dist/build/utilities/treeWalker.d.ts +8 -0
  218. package/dist/build/utilities/treeWalker.js +27 -0
  219. package/{src/utilities/upperCaseFirstCharacter.ts → dist/build/utilities/upperCaseFirstCharacter.d.ts} +1 -3
  220. package/dist/build/utilities/upperCaseFirstCharacter.js +14 -0
  221. package/package.json +4 -5
  222. package/src/PrimerStyleDictionary.ts +0 -232
  223. package/src/filters/index.ts +0 -13
  224. package/src/filters/isColorWithAlpha.ts +0 -11
  225. package/src/filters/isColorWithMix.ts +0 -33
  226. package/src/filters/isFromFile.ts +0 -12
  227. package/src/formats/cssAdvanced.ts +0 -99
  228. package/src/formats/cssCustomMedia.ts +0 -24
  229. package/src/formats/index.ts +0 -9
  230. package/src/formats/javascriptCommonJs.ts +0 -21
  231. package/src/formats/javascriptEsm.ts +0 -21
  232. package/src/formats/jsonFigma.ts +0 -134
  233. package/src/formats/jsonNestedPrefixed.ts +0 -23
  234. package/src/formats/jsonOneDimensional.ts +0 -18
  235. package/src/formats/jsonPostCssFallback.ts +0 -16
  236. package/src/formats/typescriptExportDefinition.ts +0 -170
  237. package/src/formats/utilities/jsonToNestedValue.ts +0 -20
  238. package/src/formats/utilities/prefixTokens.ts +0 -17
  239. package/src/parsers/index.ts +0 -1
  240. package/src/parsers/w3cJsonParser.ts +0 -25
  241. package/src/platforms/css.ts +0 -101
  242. package/src/platforms/deprecatedJson.ts +0 -16
  243. package/src/platforms/docJson.ts +0 -34
  244. package/src/platforms/fallbacks.ts +0 -34
  245. package/src/platforms/figma.ts +0 -58
  246. package/src/platforms/index.ts +0 -10
  247. package/src/platforms/javascript.ts +0 -30
  248. package/src/platforms/json.ts +0 -32
  249. package/src/platforms/styleLint.ts +0 -34
  250. package/src/platforms/typeDefinitions.ts +0 -30
  251. package/src/platforms/typescript.ts +0 -30
  252. package/src/schemas/alphaValue.ts +0 -12
  253. package/src/schemas/baseToken.ts +0 -8
  254. package/src/schemas/borderToken.ts +0 -19
  255. package/src/schemas/collections.ts +0 -49
  256. package/src/schemas/colorHexValue.ts +0 -18
  257. package/src/schemas/colorToken.ts +0 -50
  258. package/src/schemas/designToken.ts +0 -38
  259. package/src/schemas/dimensionToken.ts +0 -34
  260. package/src/schemas/dimensionValue.ts +0 -16
  261. package/src/schemas/durationToken.ts +0 -12
  262. package/src/schemas/durationValue.ts +0 -9
  263. package/src/schemas/fontFamilyToken.ts +0 -21
  264. package/src/schemas/fontWeightToken.ts +0 -22
  265. package/src/schemas/fontWeightValue.ts +0 -14
  266. package/src/schemas/numberToken.ts +0 -28
  267. package/src/schemas/referenceValue.ts +0 -12
  268. package/src/schemas/scopes.ts +0 -40
  269. package/src/schemas/shadowToken.ts +0 -45
  270. package/src/schemas/stringToken.ts +0 -11
  271. package/src/schemas/tokenName.ts +0 -12
  272. package/src/schemas/tokenType.ts +0 -4
  273. package/src/schemas/typographyToken.ts +0 -20
  274. package/src/schemas/validTokenType.ts +0 -44
  275. package/src/schemas/viewportRangeToken.ts +0 -11
  276. package/src/test-utilities/getMockDictionary.ts +0 -22
  277. package/src/test-utilities/getMockFormatterArguments.ts +0 -21
  278. package/src/test-utilities/getMockParserInput.ts +0 -72
  279. package/src/test-utilities/getMockToken.ts +0 -25
  280. package/src/test-utilities/index.ts +0 -4
  281. package/src/tokens/base/color/dark/dark.dimmed.json5 +0 -1164
  282. package/src/tokens/base/color/dark/dark.high-contrast.json5 +0 -764
  283. package/src/tokens/base/color/dark/dark.json5 +0 -911
  284. package/src/tokens/base/color/dark/display-dark.json5 +0 -1774
  285. package/src/tokens/base/color/light/display-light.json5 +0 -1774
  286. package/src/tokens/base/color/light/light.high-contrast.json5 +0 -755
  287. package/src/tokens/base/color/light/light.json5 +0 -911
  288. package/src/tokens/base/size/size.json +0 -196
  289. package/src/tokens/base/typography/typography.json +0 -48
  290. package/src/tokens/fallback/color-fallbacks.json +0 -270
  291. package/src/tokens/functional/border/dark.json5 +0 -12
  292. package/src/tokens/functional/border/light.json5 +0 -12
  293. package/src/tokens/functional/color/dark/app-dark.json5 +0 -554
  294. package/src/tokens/functional/color/dark/data-vis-dark.json5 +0 -284
  295. package/src/tokens/functional/color/dark/display-dark.json5 +0 -1258
  296. package/src/tokens/functional/color/dark/overrides/dark.dimmed.json5 +0 -194
  297. package/src/tokens/functional/color/dark/overrides/dark.high-contrast.json5 +0 -935
  298. package/src/tokens/functional/color/dark/overrides/dark.protanopia-deuteranopia.json5 +0 -310
  299. package/src/tokens/functional/color/dark/overrides/dark.tritanopia.json5 +0 -224
  300. package/src/tokens/functional/color/dark/patterns-dark.json5 +0 -3097
  301. package/src/tokens/functional/color/dark/primitives-dark.json5 +0 -1200
  302. package/src/tokens/functional/color/dark/syntax-dark.json5 +0 -559
  303. package/src/tokens/functional/color/light/app-light.json5 +0 -551
  304. package/src/tokens/functional/color/light/data-vis-light.json5 +0 -284
  305. package/src/tokens/functional/color/light/display-light.json5 +0 -1258
  306. package/src/tokens/functional/color/light/overrides/light.high-contrast.json5 +0 -819
  307. package/src/tokens/functional/color/light/overrides/light.protanopia-deuteranopia.json5 +0 -327
  308. package/src/tokens/functional/color/light/overrides/light.tritanopia.json5 +0 -237
  309. package/src/tokens/functional/color/light/patterns-light.json5 +0 -3091
  310. package/src/tokens/functional/color/light/primitives-light.json5 +0 -1193
  311. package/src/tokens/functional/color/light/syntax-light.json5 +0 -559
  312. package/src/tokens/functional/motion/loading.json5 +0 -17
  313. package/src/tokens/functional/motion/patterns.json5 +0 -28
  314. package/src/tokens/functional/shadow/dark.json5 +0 -383
  315. package/src/tokens/functional/shadow/light.json5 +0 -376
  316. package/src/tokens/functional/size/border.json +0 -111
  317. package/src/tokens/functional/size/breakpoints.json +0 -64
  318. package/src/tokens/functional/size/size-coarse.json +0 -28
  319. package/src/tokens/functional/size/size-fine.json +0 -28
  320. package/src/tokens/functional/size/size.json +0 -740
  321. package/src/tokens/functional/size/viewport.json +0 -28
  322. package/src/tokens/functional/typography/typography.json +0 -527
  323. package/src/tokens/removed/color.json +0 -421
  324. package/src/tokens/removed/testing.json5 +0 -4
  325. package/src/transformers/borderToCss.ts +0 -38
  326. package/src/transformers/colorToHex.ts +0 -16
  327. package/src/transformers/colorToHexAlpha.ts +0 -23
  328. package/src/transformers/colorToHexMix.ts +0 -19
  329. package/src/transformers/colorToRgbAlpha.ts +0 -19
  330. package/src/transformers/colorToRgbaFloat.ts +0 -45
  331. package/src/transformers/dimensionToPixelUnitless.ts +0 -60
  332. package/src/transformers/dimensionToRem.ts +0 -56
  333. package/src/transformers/dimensionToRemPxArray.ts +0 -60
  334. package/src/transformers/durationToCss.ts +0 -29
  335. package/src/transformers/figmaAttributes.ts +0 -79
  336. package/src/transformers/floatToPixel.ts +0 -40
  337. package/src/transformers/fontFamilyToCss.ts +0 -37
  338. package/src/transformers/fontFamilyToFigma.ts +0 -47
  339. package/src/transformers/fontWeightToNumber.ts +0 -53
  340. package/src/transformers/index.ts +0 -24
  341. package/src/transformers/jsonDeprecated.ts +0 -15
  342. package/src/transformers/namePathToDotNotation.ts +0 -34
  343. package/src/transformers/namePathToFigma.ts +0 -28
  344. package/src/transformers/namePathToKebabCase.ts +0 -19
  345. package/src/transformers/namePathToSlashNotation.ts +0 -19
  346. package/src/transformers/shadowToCss.ts +0 -37
  347. package/src/transformers/typographyToCss.ts +0 -31
  348. package/src/transformers/utilities/alpha.ts +0 -23
  349. package/src/transformers/utilities/checkRequiredTokenProperties.ts +0 -16
  350. package/src/transformers/utilities/getTokenValue.ts +0 -18
  351. package/src/transformers/utilities/hasSpaceInString.ts +0 -6
  352. package/src/transformers/utilities/hexToRgbaFloat.ts +0 -31
  353. package/src/transformers/utilities/invalidTokenError.ts +0 -34
  354. package/src/transformers/utilities/isRgbaFloat.ts +0 -29
  355. package/src/transformers/utilities/mix.ts +0 -46
  356. package/src/transformers/utilities/rgbaFloatToHex.ts +0 -15
  357. package/src/types/Border.d.ts +0 -5
  358. package/src/types/BorderTokenValue.d.ts +0 -10
  359. package/src/types/ColorHex.d.ts +0 -4
  360. package/src/types/PlatformInitializer.d.ts +0 -11
  361. package/src/types/Shadow.d.ts +0 -5
  362. package/src/types/ShadowTokenValue.d.ts +0 -14
  363. package/src/types/SizeEm.d.ts +0 -4
  364. package/src/types/SizePx.d.ts +0 -4
  365. package/src/types/SizeRem.d.ts +0 -4
  366. package/src/types/StyleDictionaryConfigGenerator.d.ts +0 -15
  367. package/src/types/TokenBuildInput.d.ts +0 -8
  368. package/src/types/TypographyTokenValue.d.ts +0 -12
  369. package/src/types/w3cTransformedToken.d.ts +0 -8
  370. package/src/utilities/copyFromDir.ts +0 -21
  371. package/src/utilities/index.ts +0 -3
  372. package/src/utilities/joinFriendly.ts +0 -2
  373. package/src/utilities/schemaErrorMessage.ts +0 -2
  374. package/src/utilities/toCamelCase.ts +0 -29
  375. package/src/utilities/treeWalker.ts +0 -27
@@ -1,1774 +0,0 @@
1
- {
2
- base: {
3
- display: {
4
- color: {
5
- gray: {
6
- '0': {
7
- $value: '#e8ecf2',
8
- $type: 'color',
9
- $extensions: {
10
- 'org.primer.figma': {
11
- collection: 'base/color/light',
12
- },
13
- },
14
- },
15
- '1': {
16
- $value: '#d2dae4',
17
- $type: 'color',
18
- $extensions: {
19
- 'org.primer.figma': {
20
- collection: 'base/color/light',
21
- },
22
- },
23
- },
24
- '2': {
25
- $value: '#b4c0cf',
26
- $type: 'color',
27
- $extensions: {
28
- 'org.primer.figma': {
29
- collection: 'base/color/light',
30
- },
31
- },
32
- },
33
- '3': {
34
- $value: '#9ba9bb',
35
- $type: 'color',
36
- $extensions: {
37
- 'org.primer.figma': {
38
- collection: 'base/color/light',
39
- },
40
- },
41
- },
42
- '4': {
43
- $value: '#808fa3',
44
- $type: 'color',
45
- $extensions: {
46
- 'org.primer.figma': {
47
- collection: 'base/color/light',
48
- },
49
- },
50
- },
51
- '5': {
52
- $value: '#647182',
53
- $type: 'color',
54
- $extensions: {
55
- 'org.primer.figma': {
56
- collection: 'base/color/light',
57
- },
58
- },
59
- },
60
- '6': {
61
- $value: '#5c6570',
62
- $type: 'color',
63
- $extensions: {
64
- 'org.primer.figma': {
65
- collection: 'base/color/light',
66
- },
67
- },
68
- },
69
- '7': {
70
- $value: '#4e535a',
71
- $type: 'color',
72
- $extensions: {
73
- 'org.primer.figma': {
74
- collection: 'base/color/light',
75
- },
76
- },
77
- },
78
- '8': {
79
- $value: '#424448',
80
- $type: 'color',
81
- $extensions: {
82
- 'org.primer.figma': {
83
- collection: 'base/color/light',
84
- },
85
- },
86
- },
87
- '9': {
88
- $value: '#303031',
89
- $type: 'color',
90
- $extensions: {
91
- 'org.primer.figma': {
92
- collection: 'base/color/light',
93
- },
94
- },
95
- },
96
- },
97
- auburn: {
98
- '0': {
99
- $value: '#f2e9e9',
100
- $type: 'color',
101
- $extensions: {
102
- 'org.primer.figma': {
103
- collection: 'base/color/light',
104
- },
105
- },
106
- },
107
- '1': {
108
- $value: '#e6d6d5',
109
- $type: 'color',
110
- $extensions: {
111
- 'org.primer.figma': {
112
- collection: 'base/color/light',
113
- },
114
- },
115
- },
116
- '2': {
117
- $value: '#d4b7b5',
118
- $type: 'color',
119
- $extensions: {
120
- 'org.primer.figma': {
121
- collection: 'base/color/light',
122
- },
123
- },
124
- },
125
- '3': {
126
- $value: '#c59e9b',
127
- $type: 'color',
128
- $extensions: {
129
- 'org.primer.figma': {
130
- collection: 'base/color/light',
131
- },
132
- },
133
- },
134
- '4': {
135
- $value: '#b4827e',
136
- $type: 'color',
137
- $extensions: {
138
- 'org.primer.figma': {
139
- collection: 'base/color/light',
140
- },
141
- },
142
- },
143
- '5': {
144
- $value: '#9d615c',
145
- $type: 'color',
146
- $extensions: {
147
- 'org.primer.figma': {
148
- collection: 'base/color/light',
149
- },
150
- },
151
- },
152
- '6': {
153
- $value: '#8a5551',
154
- $type: 'color',
155
- $extensions: {
156
- 'org.primer.figma': {
157
- collection: 'base/color/light',
158
- },
159
- },
160
- },
161
- '7': {
162
- $value: '#744744',
163
- $type: 'color',
164
- $extensions: {
165
- 'org.primer.figma': {
166
- collection: 'base/color/light',
167
- },
168
- },
169
- },
170
- '8': {
171
- $value: '#5d3937',
172
- $type: 'color',
173
- $extensions: {
174
- 'org.primer.figma': {
175
- collection: 'base/color/light',
176
- },
177
- },
178
- },
179
- '9': {
180
- $value: '#432928',
181
- $type: 'color',
182
- $extensions: {
183
- 'org.primer.figma': {
184
- collection: 'base/color/light',
185
- },
186
- },
187
- },
188
- },
189
- brown: {
190
- '0': {
191
- $value: '#eeeae2',
192
- $type: 'color',
193
- $extensions: {
194
- 'org.primer.figma': {
195
- collection: 'base/color/light',
196
- },
197
- },
198
- },
199
- '1': {
200
- $value: '#dfd7c8',
201
- $type: 'color',
202
- $extensions: {
203
- 'org.primer.figma': {
204
- collection: 'base/color/light',
205
- },
206
- },
207
- },
208
- '2': {
209
- $value: '#cbbda4',
210
- $type: 'color',
211
- $extensions: {
212
- 'org.primer.figma': {
213
- collection: 'base/color/light',
214
- },
215
- },
216
- },
217
- '3': {
218
- $value: '#b8a484',
219
- $type: 'color',
220
- $extensions: {
221
- 'org.primer.figma': {
222
- collection: 'base/color/light',
223
- },
224
- },
225
- },
226
- '4': {
227
- $value: '#a68b64',
228
- $type: 'color',
229
- $extensions: {
230
- 'org.primer.figma': {
231
- collection: 'base/color/light',
232
- },
233
- },
234
- },
235
- '5': {
236
- $value: '#856d4c',
237
- $type: 'color',
238
- $extensions: {
239
- 'org.primer.figma': {
240
- collection: 'base/color/light',
241
- },
242
- },
243
- },
244
- '6': {
245
- $value: '#755f43',
246
- $type: 'color',
247
- $extensions: {
248
- 'org.primer.figma': {
249
- collection: 'base/color/light',
250
- },
251
- },
252
- },
253
- '7': {
254
- $value: '#64513a',
255
- $type: 'color',
256
- $extensions: {
257
- 'org.primer.figma': {
258
- collection: 'base/color/light',
259
- },
260
- },
261
- },
262
- '8': {
263
- $value: '#51412f',
264
- $type: 'color',
265
- $extensions: {
266
- 'org.primer.figma': {
267
- collection: 'base/color/light',
268
- },
269
- },
270
- },
271
- '9': {
272
- $value: '#3a2e22',
273
- $type: 'color',
274
- $extensions: {
275
- 'org.primer.figma': {
276
- collection: 'base/color/light',
277
- },
278
- },
279
- },
280
- },
281
- orange: {
282
- '0': {
283
- $value: '#ffe7d1',
284
- $type: 'color',
285
- $extensions: {
286
- 'org.primer.figma': {
287
- collection: 'base/color/light',
288
- },
289
- },
290
- },
291
- '1': {
292
- $value: '#fecfaa',
293
- $type: 'color',
294
- $extensions: {
295
- 'org.primer.figma': {
296
- collection: 'base/color/light',
297
- },
298
- },
299
- },
300
- '2': {
301
- $value: '#fbaf74',
302
- $type: 'color',
303
- $extensions: {
304
- 'org.primer.figma': {
305
- collection: 'base/color/light',
306
- },
307
- },
308
- },
309
- '3': {
310
- $value: '#f68c41',
311
- $type: 'color',
312
- $extensions: {
313
- 'org.primer.figma': {
314
- collection: 'base/color/light',
315
- },
316
- },
317
- },
318
- '4': {
319
- $value: '#eb670f',
320
- $type: 'color',
321
- $extensions: {
322
- 'org.primer.figma': {
323
- collection: 'base/color/light',
324
- },
325
- },
326
- },
327
- '5': {
328
- $value: '#b8500f',
329
- $type: 'color',
330
- $extensions: {
331
- 'org.primer.figma': {
332
- collection: 'base/color/light',
333
- },
334
- },
335
- },
336
- '6': {
337
- $value: '#a24610',
338
- $type: 'color',
339
- $extensions: {
340
- 'org.primer.figma': {
341
- collection: 'base/color/light',
342
- },
343
- },
344
- },
345
- '7': {
346
- $value: '#8d3c11',
347
- $type: 'color',
348
- $extensions: {
349
- 'org.primer.figma': {
350
- collection: 'base/color/light',
351
- },
352
- },
353
- },
354
- '8': {
355
- $value: '#70300f',
356
- $type: 'color',
357
- $extensions: {
358
- 'org.primer.figma': {
359
- collection: 'base/color/light',
360
- },
361
- },
362
- },
363
- '9': {
364
- $value: '#54230d',
365
- $type: 'color',
366
- $extensions: {
367
- 'org.primer.figma': {
368
- collection: 'base/color/light',
369
- },
370
- },
371
- },
372
- },
373
- yellow: {
374
- '0': {
375
- $value: '#ffec9e',
376
- $type: 'color',
377
- $extensions: {
378
- 'org.primer.figma': {
379
- collection: 'base/color/light',
380
- },
381
- },
382
- },
383
- '1': {
384
- $value: '#ffd642',
385
- $type: 'color',
386
- $extensions: {
387
- 'org.primer.figma': {
388
- collection: 'base/color/light',
389
- },
390
- },
391
- },
392
- '2': {
393
- $value: '#ebb400',
394
- $type: 'color',
395
- $extensions: {
396
- 'org.primer.figma': {
397
- collection: 'base/color/light',
398
- },
399
- },
400
- },
401
- '3': {
402
- $value: '#d19d00',
403
- $type: 'color',
404
- $extensions: {
405
- 'org.primer.figma': {
406
- collection: 'base/color/light',
407
- },
408
- },
409
- },
410
- '4': {
411
- $value: '#b88700',
412
- $type: 'color',
413
- $extensions: {
414
- 'org.primer.figma': {
415
- collection: 'base/color/light',
416
- },
417
- },
418
- },
419
- '5': {
420
- $value: '#946a00',
421
- $type: 'color',
422
- $extensions: {
423
- 'org.primer.figma': {
424
- collection: 'base/color/light',
425
- },
426
- },
427
- },
428
- '6': {
429
- $value: '#805900',
430
- $type: 'color',
431
- $extensions: {
432
- 'org.primer.figma': {
433
- collection: 'base/color/light',
434
- },
435
- },
436
- },
437
- '7': {
438
- $value: '#704d00',
439
- $type: 'color',
440
- $extensions: {
441
- 'org.primer.figma': {
442
- collection: 'base/color/light',
443
- },
444
- },
445
- },
446
- '8': {
447
- $value: '#5c3d00',
448
- $type: 'color',
449
- $extensions: {
450
- 'org.primer.figma': {
451
- collection: 'base/color/light',
452
- },
453
- },
454
- },
455
- '9': {
456
- $value: '#422b00',
457
- $type: 'color',
458
- $extensions: {
459
- 'org.primer.figma': {
460
- collection: 'base/color/light',
461
- },
462
- },
463
- },
464
- },
465
- lemon: {
466
- '0': {
467
- $value: '#f7eea1',
468
- $type: 'color',
469
- $extensions: {
470
- 'org.primer.figma': {
471
- collection: 'base/color/light',
472
- },
473
- },
474
- },
475
- '1': {
476
- $value: '#f0db3d',
477
- $type: 'color',
478
- $extensions: {
479
- 'org.primer.figma': {
480
- collection: 'base/color/light',
481
- },
482
- },
483
- },
484
- '2': {
485
- $value: '#d8bd0e',
486
- $type: 'color',
487
- $extensions: {
488
- 'org.primer.figma': {
489
- collection: 'base/color/light',
490
- },
491
- },
492
- },
493
- '3': {
494
- $value: '#c2a60a',
495
- $type: 'color',
496
- $extensions: {
497
- 'org.primer.figma': {
498
- collection: 'base/color/light',
499
- },
500
- },
501
- },
502
- '4': {
503
- $value: '#a68c07',
504
- $type: 'color',
505
- $extensions: {
506
- 'org.primer.figma': {
507
- collection: 'base/color/light',
508
- },
509
- },
510
- },
511
- '5': {
512
- $value: '#866e04',
513
- $type: 'color',
514
- $extensions: {
515
- 'org.primer.figma': {
516
- collection: 'base/color/light',
517
- },
518
- },
519
- },
520
- '6': {
521
- $value: '#786002',
522
- $type: 'color',
523
- $extensions: {
524
- 'org.primer.figma': {
525
- collection: 'base/color/light',
526
- },
527
- },
528
- },
529
- '7': {
530
- $value: '#654f01',
531
- $type: 'color',
532
- $extensions: {
533
- 'org.primer.figma': {
534
- collection: 'base/color/light',
535
- },
536
- },
537
- },
538
- '8': {
539
- $value: '#523f00',
540
- $type: 'color',
541
- $extensions: {
542
- 'org.primer.figma': {
543
- collection: 'base/color/light',
544
- },
545
- },
546
- },
547
- '9': {
548
- $value: '#3d2e00',
549
- $type: 'color',
550
- $extensions: {
551
- 'org.primer.figma': {
552
- collection: 'base/color/light',
553
- },
554
- },
555
- },
556
- },
557
- olive: {
558
- '0': {
559
- $value: '#f0f0ad',
560
- $type: 'color',
561
- $extensions: {
562
- 'org.primer.figma': {
563
- collection: 'base/color/light',
564
- },
565
- },
566
- },
567
- '1': {
568
- $value: '#dbe170',
569
- $type: 'color',
570
- $extensions: {
571
- 'org.primer.figma': {
572
- collection: 'base/color/light',
573
- },
574
- },
575
- },
576
- '2': {
577
- $value: '#b9c832',
578
- $type: 'color',
579
- $extensions: {
580
- 'org.primer.figma': {
581
- collection: 'base/color/light',
582
- },
583
- },
584
- },
585
- '3': {
586
- $value: '#9bae32',
587
- $type: 'color',
588
- $extensions: {
589
- 'org.primer.figma': {
590
- collection: 'base/color/light',
591
- },
592
- },
593
- },
594
- '4': {
595
- $value: '#819532',
596
- $type: 'color',
597
- $extensions: {
598
- 'org.primer.figma': {
599
- collection: 'base/color/light',
600
- },
601
- },
602
- },
603
- '5': {
604
- $value: '#64762d',
605
- $type: 'color',
606
- $extensions: {
607
- 'org.primer.figma': {
608
- collection: 'base/color/light',
609
- },
610
- },
611
- },
612
- '6': {
613
- $value: '#56682c',
614
- $type: 'color',
615
- $extensions: {
616
- 'org.primer.figma': {
617
- collection: 'base/color/light',
618
- },
619
- },
620
- },
621
- '7': {
622
- $value: '#495a2b',
623
- $type: 'color',
624
- $extensions: {
625
- 'org.primer.figma': {
626
- collection: 'base/color/light',
627
- },
628
- },
629
- },
630
- '8': {
631
- $value: '#3b4927',
632
- $type: 'color',
633
- $extensions: {
634
- 'org.primer.figma': {
635
- collection: 'base/color/light',
636
- },
637
- },
638
- },
639
- '9': {
640
- $value: '#2a331f',
641
- $type: 'color',
642
- $extensions: {
643
- 'org.primer.figma': {
644
- collection: 'base/color/light',
645
- },
646
- },
647
- },
648
- },
649
- lime: {
650
- '0': {
651
- $value: '#e3f2b5',
652
- $type: 'color',
653
- $extensions: {
654
- 'org.primer.figma': {
655
- collection: 'base/color/light',
656
- },
657
- },
658
- },
659
- '1': {
660
- $value: '#c7e580',
661
- $type: 'color',
662
- $extensions: {
663
- 'org.primer.figma': {
664
- collection: 'base/color/light',
665
- },
666
- },
667
- },
668
- '2': {
669
- $value: '#9bd039',
670
- $type: 'color',
671
- $extensions: {
672
- 'org.primer.figma': {
673
- collection: 'base/color/light',
674
- },
675
- },
676
- },
677
- '3': {
678
- $value: '#80b530',
679
- $type: 'color',
680
- $extensions: {
681
- 'org.primer.figma': {
682
- collection: 'base/color/light',
683
- },
684
- },
685
- },
686
- '4': {
687
- $value: '#6c9d2f',
688
- $type: 'color',
689
- $extensions: {
690
- 'org.primer.figma': {
691
- collection: 'base/color/light',
692
- },
693
- },
694
- },
695
- '5': {
696
- $value: '#527a29',
697
- $type: 'color',
698
- $extensions: {
699
- 'org.primer.figma': {
700
- collection: 'base/color/light',
701
- },
702
- },
703
- },
704
- '6': {
705
- $value: '#476c28',
706
- $type: 'color',
707
- $extensions: {
708
- 'org.primer.figma': {
709
- collection: 'base/color/light',
710
- },
711
- },
712
- },
713
- '7': {
714
- $value: '#3a5b25',
715
- $type: 'color',
716
- $extensions: {
717
- 'org.primer.figma': {
718
- collection: 'base/color/light',
719
- },
720
- },
721
- },
722
- '8': {
723
- $value: '#2f4a21',
724
- $type: 'color',
725
- $extensions: {
726
- 'org.primer.figma': {
727
- collection: 'base/color/light',
728
- },
729
- },
730
- },
731
- '9': {
732
- $value: '#213319',
733
- $type: 'color',
734
- $extensions: {
735
- 'org.primer.figma': {
736
- collection: 'base/color/light',
737
- },
738
- },
739
- },
740
- },
741
- green: {
742
- '0': {
743
- $value: '#caf7ca',
744
- $type: 'color',
745
- $extensions: {
746
- 'org.primer.figma': {
747
- collection: 'base/color/light',
748
- },
749
- },
750
- },
751
- '1': {
752
- $value: '#9ceda0',
753
- $type: 'color',
754
- $extensions: {
755
- 'org.primer.figma': {
756
- collection: 'base/color/light',
757
- },
758
- },
759
- },
760
- '2': {
761
- $value: '#54d961',
762
- $type: 'color',
763
- $extensions: {
764
- 'org.primer.figma': {
765
- collection: 'base/color/light',
766
- },
767
- },
768
- },
769
- '3': {
770
- $value: '#31bf46',
771
- $type: 'color',
772
- $extensions: {
773
- 'org.primer.figma': {
774
- collection: 'base/color/light',
775
- },
776
- },
777
- },
778
- '4': {
779
- $value: '#30a147',
780
- $type: 'color',
781
- $extensions: {
782
- 'org.primer.figma': {
783
- collection: 'base/color/light',
784
- },
785
- },
786
- },
787
- '5': {
788
- $value: '#2c8141',
789
- $type: 'color',
790
- $extensions: {
791
- 'org.primer.figma': {
792
- collection: 'base/color/light',
793
- },
794
- },
795
- },
796
- '6': {
797
- $value: '#2b6e3f',
798
- $type: 'color',
799
- $extensions: {
800
- 'org.primer.figma': {
801
- collection: 'base/color/light',
802
- },
803
- },
804
- },
805
- '7': {
806
- $value: '#285c3b',
807
- $type: 'color',
808
- $extensions: {
809
- 'org.primer.figma': {
810
- collection: 'base/color/light',
811
- },
812
- },
813
- },
814
- '8': {
815
- $value: '#254b34',
816
- $type: 'color',
817
- $extensions: {
818
- 'org.primer.figma': {
819
- collection: 'base/color/light',
820
- },
821
- },
822
- },
823
- '9': {
824
- $value: '#1d3528',
825
- $type: 'color',
826
- $extensions: {
827
- 'org.primer.figma': {
828
- collection: 'base/color/light',
829
- },
830
- },
831
- },
832
- },
833
- pine: {
834
- '0': {
835
- $value: '#bff8db',
836
- $type: 'color',
837
- $extensions: {
838
- 'org.primer.figma': {
839
- collection: 'base/color/light',
840
- },
841
- },
842
- },
843
- '1': {
844
- $value: '#80efb9',
845
- $type: 'color',
846
- $extensions: {
847
- 'org.primer.figma': {
848
- collection: 'base/color/light',
849
- },
850
- },
851
- },
852
- '2': {
853
- $value: '#1dd781',
854
- $type: 'color',
855
- $extensions: {
856
- 'org.primer.figma': {
857
- collection: 'base/color/light',
858
- },
859
- },
860
- },
861
- '3': {
862
- $value: '#1dbf76',
863
- $type: 'color',
864
- $extensions: {
865
- 'org.primer.figma': {
866
- collection: 'base/color/light',
867
- },
868
- },
869
- },
870
- '4': {
871
- $value: '#1aa267',
872
- $type: 'color',
873
- $extensions: {
874
- 'org.primer.figma': {
875
- collection: 'base/color/light',
876
- },
877
- },
878
- },
879
- '5': {
880
- $value: '#167e53',
881
- $type: 'color',
882
- $extensions: {
883
- 'org.primer.figma': {
884
- collection: 'base/color/light',
885
- },
886
- },
887
- },
888
- '6': {
889
- $value: '#156f4b',
890
- $type: 'color',
891
- $extensions: {
892
- 'org.primer.figma': {
893
- collection: 'base/color/light',
894
- },
895
- },
896
- },
897
- '7': {
898
- $value: '#135d41',
899
- $type: 'color',
900
- $extensions: {
901
- 'org.primer.figma': {
902
- collection: 'base/color/light',
903
- },
904
- },
905
- },
906
- '8': {
907
- $value: '#114b36',
908
- $type: 'color',
909
- $extensions: {
910
- 'org.primer.figma': {
911
- collection: 'base/color/light',
912
- },
913
- },
914
- },
915
- '9': {
916
- $value: '#0d3627',
917
- $type: 'color',
918
- $extensions: {
919
- 'org.primer.figma': {
920
- collection: 'base/color/light',
921
- },
922
- },
923
- },
924
- },
925
- teal: {
926
- '0': {
927
- $value: '#c7f5ef',
928
- $type: 'color',
929
- $extensions: {
930
- 'org.primer.figma': {
931
- collection: 'base/color/light',
932
- },
933
- },
934
- },
935
- '1': {
936
- $value: '#89ebe1',
937
- $type: 'color',
938
- $extensions: {
939
- 'org.primer.figma': {
940
- collection: 'base/color/light',
941
- },
942
- },
943
- },
944
- '2': {
945
- $value: '#22d3c7',
946
- $type: 'color',
947
- $extensions: {
948
- 'org.primer.figma': {
949
- collection: 'base/color/light',
950
- },
951
- },
952
- },
953
- '3': {
954
- $value: '#1db9b4',
955
- $type: 'color',
956
- $extensions: {
957
- 'org.primer.figma': {
958
- collection: 'base/color/light',
959
- },
960
- },
961
- },
962
- '4': {
963
- $value: '#179b9b',
964
- $type: 'color',
965
- $extensions: {
966
- 'org.primer.figma': {
967
- collection: 'base/color/light',
968
- },
969
- },
970
- },
971
- '5': {
972
- $value: '#127e81',
973
- $type: 'color',
974
- $extensions: {
975
- 'org.primer.figma': {
976
- collection: 'base/color/light',
977
- },
978
- },
979
- },
980
- '6': {
981
- $value: '#106e75',
982
- $type: 'color',
983
- $extensions: {
984
- 'org.primer.figma': {
985
- collection: 'base/color/light',
986
- },
987
- },
988
- },
989
- '7': {
990
- $value: '#0d5b63',
991
- $type: 'color',
992
- $extensions: {
993
- 'org.primer.figma': {
994
- collection: 'base/color/light',
995
- },
996
- },
997
- },
998
- '8': {
999
- $value: '#0a4852',
1000
- $type: 'color',
1001
- $extensions: {
1002
- 'org.primer.figma': {
1003
- collection: 'base/color/light',
1004
- },
1005
- },
1006
- },
1007
- '9': {
1008
- $value: '#073740',
1009
- $type: 'color',
1010
- $extensions: {
1011
- 'org.primer.figma': {
1012
- collection: 'base/color/light',
1013
- },
1014
- },
1015
- },
1016
- },
1017
- cyan: {
1018
- '0': {
1019
- $value: '#bdf4ff',
1020
- $type: 'color',
1021
- $extensions: {
1022
- 'org.primer.figma': {
1023
- collection: 'base/color/light',
1024
- },
1025
- },
1026
- },
1027
- '1': {
1028
- $value: '#7ae9ff',
1029
- $type: 'color',
1030
- $extensions: {
1031
- 'org.primer.figma': {
1032
- collection: 'base/color/light',
1033
- },
1034
- },
1035
- },
1036
- '2': {
1037
- $value: '#00d0fa',
1038
- $type: 'color',
1039
- $extensions: {
1040
- 'org.primer.figma': {
1041
- collection: 'base/color/light',
1042
- },
1043
- },
1044
- },
1045
- '3': {
1046
- $value: '#00b7db',
1047
- $type: 'color',
1048
- $extensions: {
1049
- 'org.primer.figma': {
1050
- collection: 'base/color/light',
1051
- },
1052
- },
1053
- },
1054
- '4': {
1055
- $value: '#0099b8',
1056
- $type: 'color',
1057
- $extensions: {
1058
- 'org.primer.figma': {
1059
- collection: 'base/color/light',
1060
- },
1061
- },
1062
- },
1063
- '5': {
1064
- $value: '#007b94',
1065
- $type: 'color',
1066
- $extensions: {
1067
- 'org.primer.figma': {
1068
- collection: 'base/color/light',
1069
- },
1070
- },
1071
- },
1072
- '6': {
1073
- $value: '#006a80',
1074
- $type: 'color',
1075
- $extensions: {
1076
- 'org.primer.figma': {
1077
- collection: 'base/color/light',
1078
- },
1079
- },
1080
- },
1081
- '7': {
1082
- $value: '#00596b',
1083
- $type: 'color',
1084
- $extensions: {
1085
- 'org.primer.figma': {
1086
- collection: 'base/color/light',
1087
- },
1088
- },
1089
- },
1090
- '8': {
1091
- $value: '#004857',
1092
- $type: 'color',
1093
- $extensions: {
1094
- 'org.primer.figma': {
1095
- collection: 'base/color/light',
1096
- },
1097
- },
1098
- },
1099
- '9': {
1100
- $value: '#003742',
1101
- $type: 'color',
1102
- $extensions: {
1103
- 'org.primer.figma': {
1104
- collection: 'base/color/light',
1105
- },
1106
- },
1107
- },
1108
- },
1109
- blue: {
1110
- '0': {
1111
- $value: '#d1f0ff',
1112
- $type: 'color',
1113
- $extensions: {
1114
- 'org.primer.figma': {
1115
- collection: 'base/color/light',
1116
- },
1117
- },
1118
- },
1119
- '1': {
1120
- $value: '#ade1ff',
1121
- $type: 'color',
1122
- $extensions: {
1123
- 'org.primer.figma': {
1124
- collection: 'base/color/light',
1125
- },
1126
- },
1127
- },
1128
- '2': {
1129
- $value: '#75c8ff',
1130
- $type: 'color',
1131
- $extensions: {
1132
- 'org.primer.figma': {
1133
- collection: 'base/color/light',
1134
- },
1135
- },
1136
- },
1137
- '3': {
1138
- $value: '#47afff',
1139
- $type: 'color',
1140
- $extensions: {
1141
- 'org.primer.figma': {
1142
- collection: 'base/color/light',
1143
- },
1144
- },
1145
- },
1146
- '4': {
1147
- $value: '#0f8fff',
1148
- $type: 'color',
1149
- $extensions: {
1150
- 'org.primer.figma': {
1151
- collection: 'base/color/light',
1152
- },
1153
- },
1154
- },
1155
- '5': {
1156
- $value: '#006edb',
1157
- $type: 'color',
1158
- $extensions: {
1159
- 'org.primer.figma': {
1160
- collection: 'base/color/light',
1161
- },
1162
- },
1163
- },
1164
- '6': {
1165
- $value: '#005fcc',
1166
- $type: 'color',
1167
- $extensions: {
1168
- 'org.primer.figma': {
1169
- collection: 'base/color/light',
1170
- },
1171
- },
1172
- },
1173
- '7': {
1174
- $value: '#004db3',
1175
- $type: 'color',
1176
- $extensions: {
1177
- 'org.primer.figma': {
1178
- collection: 'base/color/light',
1179
- },
1180
- },
1181
- },
1182
- '8': {
1183
- $value: '#003d99',
1184
- $type: 'color',
1185
- $extensions: {
1186
- 'org.primer.figma': {
1187
- collection: 'base/color/light',
1188
- },
1189
- },
1190
- },
1191
- '9': {
1192
- $value: '#002b75',
1193
- $type: 'color',
1194
- $extensions: {
1195
- 'org.primer.figma': {
1196
- collection: 'base/color/light',
1197
- },
1198
- },
1199
- },
1200
- },
1201
- indigo: {
1202
- '0': {
1203
- $value: '#e5e9ff',
1204
- $type: 'color',
1205
- $extensions: {
1206
- 'org.primer.figma': {
1207
- collection: 'base/color/light',
1208
- },
1209
- },
1210
- },
1211
- '1': {
1212
- $value: '#d2d7fe',
1213
- $type: 'color',
1214
- $extensions: {
1215
- 'org.primer.figma': {
1216
- collection: 'base/color/light',
1217
- },
1218
- },
1219
- },
1220
- '2': {
1221
- $value: '#b1b9fb',
1222
- $type: 'color',
1223
- $extensions: {
1224
- 'org.primer.figma': {
1225
- collection: 'base/color/light',
1226
- },
1227
- },
1228
- },
1229
- '3': {
1230
- $value: '#979ff7',
1231
- $type: 'color',
1232
- $extensions: {
1233
- 'org.primer.figma': {
1234
- collection: 'base/color/light',
1235
- },
1236
- },
1237
- },
1238
- '4': {
1239
- $value: '#7a82f0',
1240
- $type: 'color',
1241
- $extensions: {
1242
- 'org.primer.figma': {
1243
- collection: 'base/color/light',
1244
- },
1245
- },
1246
- },
1247
- '5': {
1248
- $value: '#5a61e7',
1249
- $type: 'color',
1250
- $extensions: {
1251
- 'org.primer.figma': {
1252
- collection: 'base/color/light',
1253
- },
1254
- },
1255
- },
1256
- '6': {
1257
- $value: '#494edf',
1258
- $type: 'color',
1259
- $extensions: {
1260
- 'org.primer.figma': {
1261
- collection: 'base/color/light',
1262
- },
1263
- },
1264
- },
1265
- '7': {
1266
- $value: '#393cd5',
1267
- $type: 'color',
1268
- $extensions: {
1269
- 'org.primer.figma': {
1270
- collection: 'base/color/light',
1271
- },
1272
- },
1273
- },
1274
- '8': {
1275
- $value: '#2d2db4',
1276
- $type: 'color',
1277
- $extensions: {
1278
- 'org.primer.figma': {
1279
- collection: 'base/color/light',
1280
- },
1281
- },
1282
- },
1283
- '9': {
1284
- $value: '#25247b',
1285
- $type: 'color',
1286
- $extensions: {
1287
- 'org.primer.figma': {
1288
- collection: 'base/color/light',
1289
- },
1290
- },
1291
- },
1292
- },
1293
- purple: {
1294
- '0': {
1295
- $value: '#f1e5ff',
1296
- $type: 'color',
1297
- $extensions: {
1298
- 'org.primer.figma': {
1299
- collection: 'base/color/light',
1300
- },
1301
- },
1302
- },
1303
- '1': {
1304
- $value: '#e6d2fe',
1305
- $type: 'color',
1306
- $extensions: {
1307
- 'org.primer.figma': {
1308
- collection: 'base/color/light',
1309
- },
1310
- },
1311
- },
1312
- '2': {
1313
- $value: '#d1b1fc',
1314
- $type: 'color',
1315
- $extensions: {
1316
- 'org.primer.figma': {
1317
- collection: 'base/color/light',
1318
- },
1319
- },
1320
- },
1321
- '3': {
1322
- $value: '#bc91f8',
1323
- $type: 'color',
1324
- $extensions: {
1325
- 'org.primer.figma': {
1326
- collection: 'base/color/light',
1327
- },
1328
- },
1329
- },
1330
- '4': {
1331
- $value: '#a672f3',
1332
- $type: 'color',
1333
- $extensions: {
1334
- 'org.primer.figma': {
1335
- collection: 'base/color/light',
1336
- },
1337
- },
1338
- },
1339
- '5': {
1340
- $value: '#894ceb',
1341
- $type: 'color',
1342
- $extensions: {
1343
- 'org.primer.figma': {
1344
- collection: 'base/color/light',
1345
- },
1346
- },
1347
- },
1348
- '6': {
1349
- $value: '#783ae4',
1350
- $type: 'color',
1351
- $extensions: {
1352
- 'org.primer.figma': {
1353
- collection: 'base/color/light',
1354
- },
1355
- },
1356
- },
1357
- '7': {
1358
- $value: '#6223d7',
1359
- $type: 'color',
1360
- $extensions: {
1361
- 'org.primer.figma': {
1362
- collection: 'base/color/light',
1363
- },
1364
- },
1365
- },
1366
- '8': {
1367
- $value: '#4f21ab',
1368
- $type: 'color',
1369
- $extensions: {
1370
- 'org.primer.figma': {
1371
- collection: 'base/color/light',
1372
- },
1373
- },
1374
- },
1375
- '9': {
1376
- $value: '#391b79',
1377
- $type: 'color',
1378
- $extensions: {
1379
- 'org.primer.figma': {
1380
- collection: 'base/color/light',
1381
- },
1382
- },
1383
- },
1384
- },
1385
- plum: {
1386
- '0': {
1387
- $value: '#f8e5ff',
1388
- $type: 'color',
1389
- $extensions: {
1390
- 'org.primer.figma': {
1391
- collection: 'base/color/light',
1392
- },
1393
- },
1394
- },
1395
- '1': {
1396
- $value: '#f0cdfe',
1397
- $type: 'color',
1398
- $extensions: {
1399
- 'org.primer.figma': {
1400
- collection: 'base/color/light',
1401
- },
1402
- },
1403
- },
1404
- '2': {
1405
- $value: '#e2a7fb',
1406
- $type: 'color',
1407
- $extensions: {
1408
- 'org.primer.figma': {
1409
- collection: 'base/color/light',
1410
- },
1411
- },
1412
- },
1413
- '3': {
1414
- $value: '#d487f7',
1415
- $type: 'color',
1416
- $extensions: {
1417
- 'org.primer.figma': {
1418
- collection: 'base/color/light',
1419
- },
1420
- },
1421
- },
1422
- '4': {
1423
- $value: '#c264f2',
1424
- $type: 'color',
1425
- $extensions: {
1426
- 'org.primer.figma': {
1427
- collection: 'base/color/light',
1428
- },
1429
- },
1430
- },
1431
- '5': {
1432
- $value: '#a830e8',
1433
- $type: 'color',
1434
- $extensions: {
1435
- 'org.primer.figma': {
1436
- collection: 'base/color/light',
1437
- },
1438
- },
1439
- },
1440
- '6': {
1441
- $value: '#961edc',
1442
- $type: 'color',
1443
- $extensions: {
1444
- 'org.primer.figma': {
1445
- collection: 'base/color/light',
1446
- },
1447
- },
1448
- },
1449
- '7': {
1450
- $value: '#7d1eb8',
1451
- $type: 'color',
1452
- $extensions: {
1453
- 'org.primer.figma': {
1454
- collection: 'base/color/light',
1455
- },
1456
- },
1457
- },
1458
- '8': {
1459
- $value: '#651d96',
1460
- $type: 'color',
1461
- $extensions: {
1462
- 'org.primer.figma': {
1463
- collection: 'base/color/light',
1464
- },
1465
- },
1466
- },
1467
- '9': {
1468
- $value: '#471769',
1469
- $type: 'color',
1470
- $extensions: {
1471
- 'org.primer.figma': {
1472
- collection: 'base/color/light',
1473
- },
1474
- },
1475
- },
1476
- },
1477
- pink: {
1478
- '0': {
1479
- $value: '#ffe5f1',
1480
- $type: 'color',
1481
- $extensions: {
1482
- 'org.primer.figma': {
1483
- collection: 'base/color/light',
1484
- },
1485
- },
1486
- },
1487
- '1': {
1488
- $value: '#fdc9e2',
1489
- $type: 'color',
1490
- $extensions: {
1491
- 'org.primer.figma': {
1492
- collection: 'base/color/light',
1493
- },
1494
- },
1495
- },
1496
- '2': {
1497
- $value: '#f8a5cf',
1498
- $type: 'color',
1499
- $extensions: {
1500
- 'org.primer.figma': {
1501
- collection: 'base/color/light',
1502
- },
1503
- },
1504
- },
1505
- '3': {
1506
- $value: '#f184bc',
1507
- $type: 'color',
1508
- $extensions: {
1509
- 'org.primer.figma': {
1510
- collection: 'base/color/light',
1511
- },
1512
- },
1513
- },
1514
- '4': {
1515
- $value: '#e55da5',
1516
- $type: 'color',
1517
- $extensions: {
1518
- 'org.primer.figma': {
1519
- collection: 'base/color/light',
1520
- },
1521
- },
1522
- },
1523
- '5': {
1524
- $value: '#ce2c85',
1525
- $type: 'color',
1526
- $extensions: {
1527
- 'org.primer.figma': {
1528
- collection: 'base/color/light',
1529
- },
1530
- },
1531
- },
1532
- '6': {
1533
- $value: '#b12f79',
1534
- $type: 'color',
1535
- $extensions: {
1536
- 'org.primer.figma': {
1537
- collection: 'base/color/light',
1538
- },
1539
- },
1540
- },
1541
- '7': {
1542
- $value: '#8e2e66',
1543
- $type: 'color',
1544
- $extensions: {
1545
- 'org.primer.figma': {
1546
- collection: 'base/color/light',
1547
- },
1548
- },
1549
- },
1550
- '8': {
1551
- $value: '#6e2b53',
1552
- $type: 'color',
1553
- $extensions: {
1554
- 'org.primer.figma': {
1555
- collection: 'base/color/light',
1556
- },
1557
- },
1558
- },
1559
- '9': {
1560
- $value: '#4d233d',
1561
- $type: 'color',
1562
- $extensions: {
1563
- 'org.primer.figma': {
1564
- collection: 'base/color/light',
1565
- },
1566
- },
1567
- },
1568
- },
1569
- red: {
1570
- '0': {
1571
- $value: '#ffe2e0',
1572
- $type: 'color',
1573
- $extensions: {
1574
- 'org.primer.figma': {
1575
- collection: 'base/color/light',
1576
- },
1577
- },
1578
- },
1579
- '1': {
1580
- $value: '#fecdcd',
1581
- $type: 'color',
1582
- $extensions: {
1583
- 'org.primer.figma': {
1584
- collection: 'base/color/light',
1585
- },
1586
- },
1587
- },
1588
- '2': {
1589
- $value: '#fda5a7',
1590
- $type: 'color',
1591
- $extensions: {
1592
- 'org.primer.figma': {
1593
- collection: 'base/color/light',
1594
- },
1595
- },
1596
- },
1597
- '3': {
1598
- $value: '#fb8389',
1599
- $type: 'color',
1600
- $extensions: {
1601
- 'org.primer.figma': {
1602
- collection: 'base/color/light',
1603
- },
1604
- },
1605
- },
1606
- '4': {
1607
- $value: '#f85461',
1608
- $type: 'color',
1609
- $extensions: {
1610
- 'org.primer.figma': {
1611
- collection: 'base/color/light',
1612
- },
1613
- },
1614
- },
1615
- '5': {
1616
- $value: '#df0c24',
1617
- $type: 'color',
1618
- $extensions: {
1619
- 'org.primer.figma': {
1620
- collection: 'base/color/light',
1621
- },
1622
- },
1623
- },
1624
- '6': {
1625
- $value: '#c50d28',
1626
- $type: 'color',
1627
- $extensions: {
1628
- 'org.primer.figma': {
1629
- collection: 'base/color/light',
1630
- },
1631
- },
1632
- },
1633
- '7': {
1634
- $value: '#a60c29',
1635
- $type: 'color',
1636
- $extensions: {
1637
- 'org.primer.figma': {
1638
- collection: 'base/color/light',
1639
- },
1640
- },
1641
- },
1642
- '8': {
1643
- $value: '#880c27',
1644
- $type: 'color',
1645
- $extensions: {
1646
- 'org.primer.figma': {
1647
- collection: 'base/color/light',
1648
- },
1649
- },
1650
- },
1651
- '9': {
1652
- $value: '#610a20',
1653
- $type: 'color',
1654
- $extensions: {
1655
- 'org.primer.figma': {
1656
- collection: 'base/color/light',
1657
- },
1658
- },
1659
- },
1660
- },
1661
- coral: {
1662
- '0': {
1663
- $value: '#ffe5db',
1664
- $type: 'color',
1665
- $extensions: {
1666
- 'org.primer.figma': {
1667
- collection: 'base/color/light',
1668
- },
1669
- },
1670
- },
1671
- '1': {
1672
- $value: '#fecebe',
1673
- $type: 'color',
1674
- $extensions: {
1675
- 'org.primer.figma': {
1676
- collection: 'base/color/light',
1677
- },
1678
- },
1679
- },
1680
- '2': {
1681
- $value: '#fcab92',
1682
- $type: 'color',
1683
- $extensions: {
1684
- 'org.primer.figma': {
1685
- collection: 'base/color/light',
1686
- },
1687
- },
1688
- },
1689
- '3': {
1690
- $value: '#f88768',
1691
- $type: 'color',
1692
- $extensions: {
1693
- 'org.primer.figma': {
1694
- collection: 'base/color/light',
1695
- },
1696
- },
1697
- },
1698
- '4': {
1699
- $value: '#f25f3a',
1700
- $type: 'color',
1701
- $extensions: {
1702
- 'org.primer.figma': {
1703
- collection: 'base/color/light',
1704
- },
1705
- },
1706
- },
1707
- '5': {
1708
- $value: '#d43511',
1709
- $type: 'color',
1710
- $extensions: {
1711
- 'org.primer.figma': {
1712
- collection: 'base/color/light',
1713
- },
1714
- },
1715
- },
1716
- '6': {
1717
- $value: '#ba2e12',
1718
- $type: 'color',
1719
- $extensions: {
1720
- 'org.primer.figma': {
1721
- collection: 'base/color/light',
1722
- },
1723
- },
1724
- },
1725
- '7': {
1726
- $value: '#9b2712',
1727
- $type: 'color',
1728
- $extensions: {
1729
- 'org.primer.figma': {
1730
- collection: 'base/color/light',
1731
- },
1732
- },
1733
- },
1734
- '8': {
1735
- $value: '#7e2011',
1736
- $type: 'color',
1737
- $extensions: {
1738
- 'org.primer.figma': {
1739
- collection: 'base/color/light',
1740
- },
1741
- },
1742
- },
1743
- '9': {
1744
- $value: '#5d180e',
1745
- $type: 'color',
1746
- $extensions: {
1747
- 'org.primer.figma': {
1748
- collection: 'base/color/light',
1749
- },
1750
- },
1751
- },
1752
- },
1753
- black: {
1754
- $value: '#0d1117',
1755
- $type: 'color',
1756
- $extensions: {
1757
- 'org.primer.figma': {
1758
- collection: 'base/color/light',
1759
- },
1760
- },
1761
- },
1762
- white: {
1763
- $value: '#ffffff',
1764
- $type: 'color',
1765
- $extensions: {
1766
- 'org.primer.figma': {
1767
- collection: 'base/color/light',
1768
- },
1769
- },
1770
- },
1771
- },
1772
- },
1773
- },
1774
- }