@central-design-system/components 2.30.0 → 3.0.0-alpha.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 (283) hide show
  1. package/dist/cds.css +1 -111
  2. package/dist/cds.d.ts +31 -0
  3. package/dist/cds.es.js +2159 -0
  4. package/dist/cds.umd.js +1 -0
  5. package/dist/components/CdsBadge/CdsBadge.vue.d.ts +32 -0
  6. package/dist/components/CdsButton/CdsButton.vue.d.ts +140 -0
  7. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +179 -0
  8. package/dist/components/CdsGrid/CdsCol.vue.d.ts +73 -0
  9. package/dist/components/CdsGrid/CdsGrid.vue.d.ts +55 -0
  10. package/dist/components/CdsGrid/CdsRow.vue.d.ts +37 -0
  11. package/dist/components/CdsGrid/composable/column.d.ts +84 -0
  12. package/dist/components/CdsGrid/composable/grid.d.ts +24 -0
  13. package/dist/components/CdsGrid/composable/index.d.ts +4 -0
  14. package/dist/components/CdsGrid/composable/subgrid.d.ts +20 -0
  15. package/dist/components/CdsGrid/composable/wide.d.ts +12 -0
  16. package/dist/components/CdsGrid/mode/CSSGrid.d.ts +5 -0
  17. package/dist/components/CdsGrid/mode/FlexGrid.d.ts +5 -0
  18. package/dist/components/CdsGrid/types.d.ts +27 -0
  19. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +44 -0
  20. package/dist/components/CdsIcon/index.d.ts +1 -0
  21. package/dist/components/CdsLink/CdsLink.vue.d.ts +50 -0
  22. package/dist/components/CdsList/CdsList.vue.d.ts +170 -0
  23. package/dist/components/CdsList/CdsListGroup.vue.d.ts +125 -0
  24. package/dist/components/CdsList/CdsListItem.vue.d.ts +172 -0
  25. package/dist/components/CdsList/composable/depth.d.ts +3 -0
  26. package/dist/components/CdsList/composable/index.d.ts +2 -0
  27. package/dist/components/CdsList/composable/list.d.ts +19 -0
  28. package/dist/components/CdsList/index.d.ts +3 -0
  29. package/dist/components/CdsLoader/CdsLoader.vue.d.ts +62 -0
  30. package/dist/components/CdsLoader/index.d.ts +1 -0
  31. package/dist/components/CdsStatus/CdsStatus.vue.d.ts +46 -0
  32. package/dist/components/CdsTag/CdsTag.vue.d.ts +96 -0
  33. package/dist/components/index.d.ts +18 -0
  34. package/dist/composable/appearance.d.ts +24 -0
  35. package/dist/composable/color.d.ts +21 -0
  36. package/dist/composable/dark.d.ts +19 -0
  37. package/dist/composable/disabled.d.ts +19 -0
  38. package/dist/composable/focus.d.ts +12 -0
  39. package/dist/composable/icon.d.ts +32 -0
  40. package/dist/composable/index.d.ts +17 -0
  41. package/dist/composable/items.d.ts +78 -0
  42. package/dist/composable/link.d.ts +36 -0
  43. package/dist/composable/loading.d.ts +19 -0
  44. package/dist/composable/nested/nested.d.ts +85 -0
  45. package/dist/composable/nested/openStrategies.d.ts +25 -0
  46. package/dist/composable/nested/selectStrategies.d.ts +21 -0
  47. package/dist/composable/proxyModel.d.ts +8 -0
  48. package/dist/composable/render.d.ts +2 -0
  49. package/dist/composable/size.d.ts +24 -0
  50. package/dist/composable/status.d.ts +21 -0
  51. package/dist/composable/tag.d.ts +16 -0
  52. package/dist/composable/text.d.ts +17 -0
  53. package/dist/composable/toggleScope.d.ts +2 -0
  54. package/dist/directives/index.d.ts +2 -0
  55. package/dist/plugins/index.d.ts +2 -0
  56. package/dist/shims-vue.d.ts +24 -0
  57. package/dist/transitions/createTransition.d.ts +9 -0
  58. package/dist/transitions/expandTransition.d.ts +19 -0
  59. package/dist/transitions/index.d.ts +14 -0
  60. package/dist/types/CdsOptions.d.ts +3 -0
  61. package/dist/utils/changeCase/lowerCase.d.ts +8 -0
  62. package/dist/utils/changeCase/noCase.d.ts +10 -0
  63. package/dist/utils/changeCase/paramCase.d.ts +3 -0
  64. package/dist/utils/changeCase/pascalCase.d.ts +5 -0
  65. package/dist/utils/getCurrentInstance.d.ts +13 -0
  66. package/dist/utils/helpers.d.ts +49 -0
  67. package/dist/utils/index.d.ts +7 -0
  68. package/dist/utils/propsFactory.d.ts +52 -0
  69. package/nuxt.js +13 -0
  70. package/package.json +37 -80
  71. package/src/scss/index.scss +10 -0
  72. package/{dist/mixins/scss → src/scss/mixins}/layout/_convert.scss +4 -2
  73. package/{dist/mixins/scss → src/scss/mixins}/layout/_layout.scss +0 -0
  74. package/{dist/mixins/scss → src/scss/mixins}/layout/_mini-unit.scss +0 -0
  75. package/{dist/mixins/scss → src/scss/mixins}/layout/_spacing.scss +0 -0
  76. package/src/scss/mixins/layout/exports/_mini-unit.module.scss +5 -0
  77. package/src/scss/mixins/layout/exports/_spacing-all.module.scss +3 -0
  78. package/src/scss/mixins/layout/exports/_spacing-fluid.module.scss +8 -0
  79. package/src/scss/mixins/layout/exports/_spacing-layout.module.scss +11 -0
  80. package/src/scss/mixins/layout/exports/_spacing.module.scss +16 -0
  81. package/{dist/mixins/scss → src/scss/mixins}/layout/index.scss +0 -2
  82. package/{dist/mixins/scss → src/scss/mixins}/motion.scss +0 -0
  83. package/{dist/mixins/scss → src/scss/mixins}/typo.scss +0 -67
  84. package/src/scss/modules/_reset.scss +113 -0
  85. package/src/scss/modules/_transition.scss +26 -0
  86. package/src/scss/modules/_typography.scss +36 -0
  87. package/src/scss/modules/_variables.scss +9 -0
  88. package/src/scss/modules/grid/_aspect-ratio.scss +62 -0
  89. package/src/scss/modules/grid/_breakpoint.scss +195 -0
  90. package/src/scss/modules/grid/_config.scss +88 -0
  91. package/src/scss/modules/grid/_css-grid.scss +445 -0
  92. package/src/scss/modules/grid/_flex-grid.scss +39 -0
  93. package/src/scss/modules/grid/_mixins.scss +307 -0
  94. package/src/scss/modules/grid/exports/_config.module.scss +9 -0
  95. package/src/scss/modules/grid/index.scss +5 -0
  96. package/src/scss/themes/b2b/tokens-map.scss +139 -0
  97. package/src/scss/themes/b2b/tokens.json +2190 -0
  98. package/{dist/tokens → src/scss/themes}/b2b/variables.css +0 -0
  99. package/src/scss/themes/cds/tokens-map.scss +138 -0
  100. package/src/scss/themes/cds/tokens.json +2184 -0
  101. package/{dist/tokens → src/scss/themes}/cds/variables.css +0 -1
  102. package/src/scss/themes/index.ts +43 -0
  103. package/src/scss/utility/display.scss +13 -0
  104. package/src/scss/utility/flexbox.scss +37 -0
  105. package/src/scss/utility/generatedFiles/generatedStyles.json +1 -0
  106. package/src/scss/utility/generatedFiles/generatedStyles.scss +300 -0
  107. package/src/scss/utility/index.scss +7 -0
  108. package/src/scss/utility/layout.scss +11 -0
  109. package/src/scss/utility/lists.scss +76 -0
  110. package/src/scss/utility/spacing.scss +89 -0
  111. package/src/scss/utility/typography.scss +16 -0
  112. package/src/scss/utility/variables.scss +116 -0
  113. package/README.md +0 -87
  114. package/build/utils/postInstall.js +0 -20
  115. package/build/utils/print.js +0 -38
  116. package/dist/CdsAccordion/index.js +0 -8
  117. package/dist/CdsAccordion/styles.css +0 -11
  118. package/dist/CdsBadge/index.js +0 -8
  119. package/dist/CdsBadge/styles.css +0 -9
  120. package/dist/CdsBreadcrumbs/index.js +0 -8
  121. package/dist/CdsBreadcrumbs/styles.css +0 -11
  122. package/dist/CdsButton/index.js +0 -8
  123. package/dist/CdsButton/styles.css +0 -11
  124. package/dist/CdsCheckbox/index.js +0 -8
  125. package/dist/CdsCheckbox/styles.css +0 -15
  126. package/dist/CdsCombobox/index.js +0 -8
  127. package/dist/CdsCombobox/styles.css +0 -15
  128. package/dist/CdsContainer/index.js +0 -8
  129. package/dist/CdsContainer/styles.css +0 -11
  130. package/dist/CdsContentSwitcher/index.js +0 -8
  131. package/dist/CdsContentSwitcher/styles.css +0 -15
  132. package/dist/CdsDataTable/index.js +0 -8
  133. package/dist/CdsDataTable/styles.css +0 -21
  134. package/dist/CdsDatePicker/index.js +0 -24
  135. package/dist/CdsDatePicker/styles.css +0 -15
  136. package/dist/CdsDrawer/index.js +0 -8
  137. package/dist/CdsDrawer/styles.css +0 -17
  138. package/dist/CdsDropdown/index.js +0 -8
  139. package/dist/CdsDropdown/styles.css +0 -15
  140. package/dist/CdsEmptyState/index.js +0 -8
  141. package/dist/CdsEmptyState/styles.css +0 -9
  142. package/dist/CdsFooter/index.js +0 -8
  143. package/dist/CdsFooter/styles.css +0 -17
  144. package/dist/CdsForm/index.js +0 -8
  145. package/dist/CdsForm/styles.css +0 -15
  146. package/dist/CdsGrid/index.js +0 -8
  147. package/dist/CdsGrid/styles.css +0 -9
  148. package/dist/CdsHeader/index.js +0 -8
  149. package/dist/CdsHeader/styles.css +0 -11
  150. package/dist/CdsIcon/index.js +0 -8
  151. package/dist/CdsIcon/styles.css +0 -9
  152. package/dist/CdsImage/index.js +0 -8
  153. package/dist/CdsImage/styles.css +0 -9
  154. package/dist/CdsInput/index.js +0 -8
  155. package/dist/CdsInput/styles.css +0 -13
  156. package/dist/CdsLink/index.js +0 -8
  157. package/dist/CdsLink/styles.css +0 -9
  158. package/dist/CdsList/index.js +0 -8
  159. package/dist/CdsList/styles.css +0 -9
  160. package/dist/CdsLoading/index.js +0 -8
  161. package/dist/CdsLoading/styles.css +0 -9
  162. package/dist/CdsModal/index.js +0 -8
  163. package/dist/CdsModal/styles.css +0 -15
  164. package/dist/CdsMultiselect/index.js +0 -8
  165. package/dist/CdsMultiselect/styles.css +0 -17
  166. package/dist/CdsNotification/index.js +0 -8
  167. package/dist/CdsNotification/styles.css +0 -21
  168. package/dist/CdsOverflowMenu/index.js +0 -8
  169. package/dist/CdsOverflowMenu/styles.css +0 -21
  170. package/dist/CdsPagination/index.js +0 -8
  171. package/dist/CdsPagination/styles.css +0 -13
  172. package/dist/CdsRadioButton/index.js +0 -8
  173. package/dist/CdsRadioButton/styles.css +0 -15
  174. package/dist/CdsSearch/index.js +0 -8
  175. package/dist/CdsSearch/styles.css +0 -19
  176. package/dist/CdsSelect/index.js +0 -8
  177. package/dist/CdsSelect/styles.css +0 -15
  178. package/dist/CdsSidebar/index.js +0 -8
  179. package/dist/CdsSidebar/styles.css +0 -15
  180. package/dist/CdsSkeleton/index.js +0 -8
  181. package/dist/CdsSkeleton/styles.css +0 -9
  182. package/dist/CdsStages/index.js +0 -8
  183. package/dist/CdsStages/styles.css +0 -9
  184. package/dist/CdsStatus/index.js +0 -8
  185. package/dist/CdsStatus/styles.css +0 -15
  186. package/dist/CdsSteps/index.js +0 -8
  187. package/dist/CdsSteps/styles.css +0 -19
  188. package/dist/CdsTable/index.js +0 -16
  189. package/dist/CdsTable/styles.css +0 -21
  190. package/dist/CdsTabs/index.js +0 -8
  191. package/dist/CdsTabs/styles.css +0 -9
  192. package/dist/CdsTag/index.js +0 -8
  193. package/dist/CdsTag/styles.css +0 -11
  194. package/dist/CdsTextArea/index.js +0 -8
  195. package/dist/CdsTextArea/styles.css +0 -17
  196. package/dist/CdsTextInput/index.js +0 -8
  197. package/dist/CdsTextInput/styles.css +0 -15
  198. package/dist/CdsToggle/index.js +0 -8
  199. package/dist/CdsToggle/styles.css +0 -9
  200. package/dist/CdsTooltip/index.js +0 -8
  201. package/dist/CdsTooltip/styles.css +0 -13
  202. package/dist/CdsUploader/index.js +0 -14
  203. package/dist/CdsUploader/styles.css +0 -25
  204. package/dist/cds.js +0 -38
  205. package/dist/cds.min.css +0 -7
  206. package/dist/cds.min.js +0 -38
  207. package/dist/index.html +0 -60
  208. package/dist/mixins/scss/layout/_breakpoint.scss +0 -237
  209. package/dist/mixins/scss/layout/_key-height.scss +0 -90
  210. package/dist/mixins/scss/layout/_spacing-export.scss +0 -34
  211. package/dist/mixins/scss/layout/_utilities.scss +0 -33
  212. package/dist/types/CdsAccordion.ts +0 -4
  213. package/dist/types/CdsAccordionItem.ts +0 -10
  214. package/dist/types/CdsBreadcrumbs.ts +0 -11
  215. package/dist/types/CdsBreadcrumbsItem.ts +0 -12
  216. package/dist/types/CdsButton.ts +0 -30
  217. package/dist/types/CdsCheckbox.ts +0 -20
  218. package/dist/types/CdsCheckboxGroup.ts +0 -14
  219. package/dist/types/CdsCol.ts +0 -38
  220. package/dist/types/CdsCombobox.ts +0 -42
  221. package/dist/types/CdsContainer.ts +0 -32
  222. package/dist/types/CdsContentSwitcher.ts +0 -4
  223. package/dist/types/CdsContentSwitcherButton.ts +0 -21
  224. package/dist/types/CdsDataTable.ts +0 -48
  225. package/dist/types/CdsDatePicker.ts +0 -40
  226. package/dist/types/CdsDrawer.ts +0 -25
  227. package/dist/types/CdsDrawerGroup.ts +0 -8
  228. package/dist/types/CdsDrawerItem.ts +0 -12
  229. package/dist/types/CdsDrawerLabel.ts +0 -4
  230. package/dist/types/CdsDropdown.ts +0 -14
  231. package/dist/types/CdsEmptyState.ts +0 -10
  232. package/dist/types/CdsFooter.ts +0 -17
  233. package/dist/types/CdsFooterService.ts +0 -16
  234. package/dist/types/CdsForm.ts +0 -4
  235. package/dist/types/CdsFormGroup.ts +0 -8
  236. package/dist/types/CdsFormItem.ts +0 -4
  237. package/dist/types/CdsGrid.ts +0 -16
  238. package/dist/types/CdsHeader.ts +0 -27
  239. package/dist/types/CdsHeaderService.ts +0 -4
  240. package/dist/types/CdsIcon.ts +0 -6
  241. package/dist/types/CdsLink.ts +0 -22
  242. package/dist/types/CdsList.ts +0 -6
  243. package/dist/types/CdsLoading.ts +0 -14
  244. package/dist/types/CdsModal.ts +0 -17
  245. package/dist/types/CdsMultiselect.ts +0 -33
  246. package/dist/types/CdsNotification.ts +0 -22
  247. package/dist/types/CdsOverflowMenu.ts +0 -16
  248. package/dist/types/CdsPagination.ts +0 -12
  249. package/dist/types/CdsRadioButton.ts +0 -29
  250. package/dist/types/CdsRow.ts +0 -18
  251. package/dist/types/CdsSearch.ts +0 -24
  252. package/dist/types/CdsSelect.ts +0 -37
  253. package/dist/types/CdsSkeleton.ts +0 -14
  254. package/dist/types/CdsStages.ts +0 -10
  255. package/dist/types/CdsStatus.ts +0 -22
  256. package/dist/types/CdsSteps.ts +0 -22
  257. package/dist/types/CdsStepsItem.ts +0 -12
  258. package/dist/types/CdsTable.ts +0 -46
  259. package/dist/types/CdsTabs.ts +0 -19
  260. package/dist/types/CdsTabsItem.ts +0 -18
  261. package/dist/types/CdsTag.ts +0 -20
  262. package/dist/types/CdsTextArea.ts +0 -26
  263. package/dist/types/CdsTextInput.ts +0 -32
  264. package/dist/types/CdsToggle.ts +0 -18
  265. package/dist/types/CdsTooltip.ts +0 -18
  266. package/dist/types/CdsTooltipDefinition.ts +0 -16
  267. package/dist/types/CdsTooltipInteractive.ts +0 -11
  268. package/dist/types/CdsUploader.ts +0 -44
  269. package/dist/types/Sidebar.ts +0 -17
  270. package/dist/types/types.ts +0 -2
  271. package/dist/utils/convertRemToPx.js +0 -9
  272. package/dist/utils/deepFind.js +0 -14
  273. package/dist/utils/expiringStorage.js +0 -28
  274. package/dist/utils/helpers.js +0 -33
  275. package/dist/utils/index.js +0 -1
  276. package/dist/utils/isCorrectTag.js +0 -5
  277. package/dist/utils/isRightProps.js +0 -5
  278. package/dist/utils/memoize.js +0 -8
  279. package/dist/utils/suffixPropName.js +0 -12
  280. package/dist/utils/test/deepFind.test.js +0 -18
  281. package/dist/utils/test/isCorrectTag.test.js +0 -9
  282. package/dist/utils/test/isCorrectTagDataSet.js +0 -51
  283. package/dist/utils/validationProps.js +0 -7
@@ -0,0 +1,2190 @@
1
+ [
2
+ {
3
+ "value": "1px solid",
4
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/border/index.json",
5
+ "isSource": true,
6
+ "original": {
7
+ "value": "1px solid"
8
+ },
9
+ "name": "cds-border-element-01",
10
+ "attributes": {
11
+ "category": "border",
12
+ "type": "element",
13
+ "item": "01"
14
+ },
15
+ "path": [
16
+ "border",
17
+ "element",
18
+ "01"
19
+ ]
20
+ },
21
+ {
22
+ "value": "2px solid",
23
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/border/index.json",
24
+ "isSource": true,
25
+ "original": {
26
+ "value": "2px solid"
27
+ },
28
+ "name": "cds-border-element-02",
29
+ "attributes": {
30
+ "category": "border",
31
+ "type": "element",
32
+ "item": "02"
33
+ },
34
+ "path": [
35
+ "border",
36
+ "element",
37
+ "02"
38
+ ]
39
+ },
40
+ {
41
+ "value": "3px",
42
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/border/index.json",
43
+ "isSource": true,
44
+ "original": {
45
+ "value": "3px"
46
+ },
47
+ "name": "cds-border-radius-s",
48
+ "attributes": {
49
+ "category": "border",
50
+ "type": "radius",
51
+ "item": "s"
52
+ },
53
+ "path": [
54
+ "border",
55
+ "radius",
56
+ "s"
57
+ ]
58
+ },
59
+ {
60
+ "value": "6px",
61
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/border/index.json",
62
+ "isSource": true,
63
+ "original": {
64
+ "value": "6px"
65
+ },
66
+ "name": "cds-border-radius-m",
67
+ "attributes": {
68
+ "category": "border",
69
+ "type": "radius",
70
+ "item": "m"
71
+ },
72
+ "path": [
73
+ "border",
74
+ "radius",
75
+ "m"
76
+ ]
77
+ },
78
+ {
79
+ "value": "9px",
80
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/border/index.json",
81
+ "isSource": true,
82
+ "original": {
83
+ "value": "9px"
84
+ },
85
+ "name": "cds-border-radius-l",
86
+ "attributes": {
87
+ "category": "border",
88
+ "type": "radius",
89
+ "item": "l"
90
+ },
91
+ "path": [
92
+ "border",
93
+ "radius",
94
+ "l"
95
+ ]
96
+ },
97
+ {
98
+ "value": "#ffffff",
99
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/background.json",
100
+ "isSource": true,
101
+ "original": {
102
+ "value": "#FFFFFF"
103
+ },
104
+ "name": "cds-color-background-page-primary",
105
+ "attributes": {
106
+ "category": "color",
107
+ "type": "background",
108
+ "item": "page",
109
+ "subitem": "primary"
110
+ },
111
+ "path": [
112
+ "color",
113
+ "background",
114
+ "page",
115
+ "primary"
116
+ ]
117
+ },
118
+ {
119
+ "value": "#f5f5f5",
120
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/background.json",
121
+ "isSource": true,
122
+ "original": {
123
+ "value": "#F5F5F5"
124
+ },
125
+ "name": "cds-color-background-page-secondary",
126
+ "attributes": {
127
+ "category": "color",
128
+ "type": "background",
129
+ "item": "page",
130
+ "subitem": "secondary"
131
+ },
132
+ "path": [
133
+ "color",
134
+ "background",
135
+ "page",
136
+ "secondary"
137
+ ]
138
+ },
139
+ {
140
+ "value": "#f5f5f5",
141
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/background.json",
142
+ "isSource": true,
143
+ "original": {
144
+ "value": "#F5F5F5"
145
+ },
146
+ "name": "cds-color-background-container-primary",
147
+ "attributes": {
148
+ "category": "color",
149
+ "type": "background",
150
+ "item": "container",
151
+ "subitem": "primary"
152
+ },
153
+ "path": [
154
+ "color",
155
+ "background",
156
+ "container",
157
+ "primary"
158
+ ]
159
+ },
160
+ {
161
+ "value": "#ffffff",
162
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/background.json",
163
+ "isSource": true,
164
+ "original": {
165
+ "value": "#FFFFFF"
166
+ },
167
+ "name": "cds-color-background-container-secondary",
168
+ "attributes": {
169
+ "category": "color",
170
+ "type": "background",
171
+ "item": "container",
172
+ "subitem": "secondary"
173
+ },
174
+ "path": [
175
+ "color",
176
+ "background",
177
+ "container",
178
+ "secondary"
179
+ ]
180
+ },
181
+ {
182
+ "value": "#ffffff",
183
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/background.json",
184
+ "isSource": true,
185
+ "original": {
186
+ "value": "#FFFFFF"
187
+ },
188
+ "name": "cds-color-background-field-primary",
189
+ "attributes": {
190
+ "category": "color",
191
+ "type": "background",
192
+ "item": "field",
193
+ "subitem": "primary"
194
+ },
195
+ "path": [
196
+ "color",
197
+ "background",
198
+ "field",
199
+ "primary"
200
+ ]
201
+ },
202
+ {
203
+ "value": "#f5f5f5",
204
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/background.json",
205
+ "isSource": true,
206
+ "original": {
207
+ "value": "#F5F5F5"
208
+ },
209
+ "name": "cds-color-background-field-secondary",
210
+ "attributes": {
211
+ "category": "color",
212
+ "type": "background",
213
+ "item": "field",
214
+ "subitem": "secondary"
215
+ },
216
+ "path": [
217
+ "color",
218
+ "background",
219
+ "field",
220
+ "secondary"
221
+ ]
222
+ },
223
+ {
224
+ "value": "#000000",
225
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/background.json",
226
+ "isSource": true,
227
+ "original": {
228
+ "value": "#000000"
229
+ },
230
+ "name": "cds-color-background-element-primary",
231
+ "attributes": {
232
+ "category": "color",
233
+ "type": "background",
234
+ "item": "element",
235
+ "subitem": "primary"
236
+ },
237
+ "path": [
238
+ "color",
239
+ "background",
240
+ "element",
241
+ "primary"
242
+ ]
243
+ },
244
+ {
245
+ "value": "#000000",
246
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/background.json",
247
+ "isSource": true,
248
+ "original": {
249
+ "value": "#000000"
250
+ },
251
+ "name": "cds-color-background-inverse",
252
+ "attributes": {
253
+ "category": "color",
254
+ "type": "background",
255
+ "item": "inverse"
256
+ },
257
+ "path": [
258
+ "color",
259
+ "background",
260
+ "inverse"
261
+ ]
262
+ },
263
+ {
264
+ "value": "#bebebe",
265
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/border.json",
266
+ "isSource": true,
267
+ "original": {
268
+ "value": "#BEBEBE"
269
+ },
270
+ "name": "cds-color-border-element-primary",
271
+ "attributes": {
272
+ "category": "color",
273
+ "type": "border",
274
+ "item": "element",
275
+ "subitem": "primary"
276
+ },
277
+ "path": [
278
+ "color",
279
+ "border",
280
+ "element",
281
+ "primary"
282
+ ]
283
+ },
284
+ {
285
+ "value": "#ebebeb",
286
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/border.json",
287
+ "isSource": true,
288
+ "original": {
289
+ "value": "#EBEBEB"
290
+ },
291
+ "name": "cds-color-border-element-secondary",
292
+ "attributes": {
293
+ "category": "color",
294
+ "type": "border",
295
+ "item": "element",
296
+ "subitem": "secondary"
297
+ },
298
+ "path": [
299
+ "color",
300
+ "border",
301
+ "element",
302
+ "secondary"
303
+ ]
304
+ },
305
+ {
306
+ "value": "#ebebeb",
307
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/disabled.json",
308
+ "isSource": true,
309
+ "original": {
310
+ "value": "#EBEBEB"
311
+ },
312
+ "name": "cds-color-disabled-01",
313
+ "attributes": {
314
+ "category": "color",
315
+ "type": "disabled",
316
+ "item": "01"
317
+ },
318
+ "path": [
319
+ "color",
320
+ "disabled",
321
+ "01"
322
+ ]
323
+ },
324
+ {
325
+ "value": "#bebebe",
326
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/disabled.json",
327
+ "isSource": true,
328
+ "original": {
329
+ "value": "#BEBEBE"
330
+ },
331
+ "name": "cds-color-disabled-02",
332
+ "attributes": {
333
+ "category": "color",
334
+ "type": "disabled",
335
+ "item": "02"
336
+ },
337
+ "path": [
338
+ "color",
339
+ "disabled",
340
+ "02"
341
+ ]
342
+ },
343
+ {
344
+ "value": "#ffefef",
345
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
346
+ "isSource": true,
347
+ "original": {
348
+ "value": "#FFEFEF"
349
+ },
350
+ "name": "cds-color-feedback-error-10",
351
+ "attributes": {
352
+ "category": "color",
353
+ "type": "feedback",
354
+ "item": "error",
355
+ "subitem": "10"
356
+ },
357
+ "path": [
358
+ "color",
359
+ "feedback",
360
+ "error",
361
+ "10"
362
+ ]
363
+ },
364
+ {
365
+ "value": "#ffe0e0",
366
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
367
+ "isSource": true,
368
+ "original": {
369
+ "value": "#FFE0E0"
370
+ },
371
+ "name": "cds-color-feedback-error-20",
372
+ "attributes": {
373
+ "category": "color",
374
+ "type": "feedback",
375
+ "item": "error",
376
+ "subitem": "20"
377
+ },
378
+ "path": [
379
+ "color",
380
+ "feedback",
381
+ "error",
382
+ "20"
383
+ ]
384
+ },
385
+ {
386
+ "value": "#ff6666",
387
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
388
+ "isSource": true,
389
+ "original": {
390
+ "value": "#FF6666"
391
+ },
392
+ "name": "cds-color-feedback-error-100",
393
+ "attributes": {
394
+ "category": "color",
395
+ "type": "feedback",
396
+ "item": "error",
397
+ "subitem": "100"
398
+ },
399
+ "path": [
400
+ "color",
401
+ "feedback",
402
+ "error",
403
+ "100"
404
+ ]
405
+ },
406
+ {
407
+ "value": "#fff8e5",
408
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
409
+ "isSource": true,
410
+ "original": {
411
+ "value": "#FFF8E5"
412
+ },
413
+ "name": "cds-color-feedback-warning-10",
414
+ "attributes": {
415
+ "category": "color",
416
+ "type": "feedback",
417
+ "item": "warning",
418
+ "subitem": "10"
419
+ },
420
+ "path": [
421
+ "color",
422
+ "feedback",
423
+ "warning",
424
+ "10"
425
+ ]
426
+ },
427
+ {
428
+ "value": "#fff2cc",
429
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
430
+ "isSource": true,
431
+ "original": {
432
+ "value": "#FFF2CC"
433
+ },
434
+ "name": "cds-color-feedback-warning-20",
435
+ "attributes": {
436
+ "category": "color",
437
+ "type": "feedback",
438
+ "item": "warning",
439
+ "subitem": "20"
440
+ },
441
+ "path": [
442
+ "color",
443
+ "feedback",
444
+ "warning",
445
+ "20"
446
+ ]
447
+ },
448
+ {
449
+ "value": "#ffc000",
450
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
451
+ "isSource": true,
452
+ "original": {
453
+ "value": "#FFC000"
454
+ },
455
+ "name": "cds-color-feedback-warning-100",
456
+ "attributes": {
457
+ "category": "color",
458
+ "type": "feedback",
459
+ "item": "warning",
460
+ "subitem": "100"
461
+ },
462
+ "path": [
463
+ "color",
464
+ "feedback",
465
+ "warning",
466
+ "100"
467
+ ]
468
+ },
469
+ {
470
+ "value": "#effaec",
471
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
472
+ "isSource": true,
473
+ "original": {
474
+ "value": "#EFFAEC"
475
+ },
476
+ "name": "cds-color-feedback-success-10",
477
+ "attributes": {
478
+ "category": "color",
479
+ "type": "feedback",
480
+ "item": "success",
481
+ "subitem": "10"
482
+ },
483
+ "path": [
484
+ "color",
485
+ "feedback",
486
+ "success",
487
+ "10"
488
+ ]
489
+ },
490
+ {
491
+ "value": "#e0f5da",
492
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
493
+ "isSource": true,
494
+ "original": {
495
+ "value": "#E0F5DA"
496
+ },
497
+ "name": "cds-color-feedback-success-20",
498
+ "attributes": {
499
+ "category": "color",
500
+ "type": "feedback",
501
+ "item": "success",
502
+ "subitem": "20"
503
+ },
504
+ "path": [
505
+ "color",
506
+ "feedback",
507
+ "success",
508
+ "20"
509
+ ]
510
+ },
511
+ {
512
+ "value": "#66cd46",
513
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
514
+ "isSource": true,
515
+ "original": {
516
+ "value": "#66CD46"
517
+ },
518
+ "name": "cds-color-feedback-success-100",
519
+ "attributes": {
520
+ "category": "color",
521
+ "type": "feedback",
522
+ "item": "success",
523
+ "subitem": "100"
524
+ },
525
+ "path": [
526
+ "color",
527
+ "feedback",
528
+ "success",
529
+ "100"
530
+ ]
531
+ },
532
+ {
533
+ "value": "#f2f2f2",
534
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
535
+ "isSource": true,
536
+ "original": {
537
+ "value": "#f2f2f2"
538
+ },
539
+ "name": "cds-color-feedback-info-10",
540
+ "attributes": {
541
+ "category": "color",
542
+ "type": "feedback",
543
+ "item": "info",
544
+ "subitem": "10"
545
+ },
546
+ "path": [
547
+ "color",
548
+ "feedback",
549
+ "info",
550
+ "10"
551
+ ]
552
+ },
553
+ {
554
+ "value": "#e7e7e7",
555
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
556
+ "isSource": true,
557
+ "original": {
558
+ "value": "#E7E7E7"
559
+ },
560
+ "name": "cds-color-feedback-info-20",
561
+ "attributes": {
562
+ "category": "color",
563
+ "type": "feedback",
564
+ "item": "info",
565
+ "subitem": "20"
566
+ },
567
+ "path": [
568
+ "color",
569
+ "feedback",
570
+ "info",
571
+ "20"
572
+ ]
573
+ },
574
+ {
575
+ "value": "#858585",
576
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
577
+ "isSource": true,
578
+ "original": {
579
+ "value": "#858585"
580
+ },
581
+ "name": "cds-color-feedback-info-100",
582
+ "attributes": {
583
+ "category": "color",
584
+ "type": "feedback",
585
+ "item": "info",
586
+ "subitem": "100"
587
+ },
588
+ "path": [
589
+ "color",
590
+ "feedback",
591
+ "info",
592
+ "100"
593
+ ]
594
+ },
595
+ {
596
+ "value": "#e5f3f9",
597
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
598
+ "isSource": true,
599
+ "original": {
600
+ "value": "#E5F3F9"
601
+ },
602
+ "name": "cds-color-feedback-progress-10",
603
+ "attributes": {
604
+ "category": "color",
605
+ "type": "feedback",
606
+ "item": "progress",
607
+ "subitem": "10"
608
+ },
609
+ "path": [
610
+ "color",
611
+ "feedback",
612
+ "progress",
613
+ "10"
614
+ ]
615
+ },
616
+ {
617
+ "value": "#cce7f3",
618
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
619
+ "isSource": true,
620
+ "original": {
621
+ "value": "#CCE7F3"
622
+ },
623
+ "name": "cds-color-feedback-progress-20",
624
+ "attributes": {
625
+ "category": "color",
626
+ "type": "feedback",
627
+ "item": "progress",
628
+ "subitem": "20"
629
+ },
630
+ "path": [
631
+ "color",
632
+ "feedback",
633
+ "progress",
634
+ "20"
635
+ ]
636
+ },
637
+ {
638
+ "value": "#0087c4",
639
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/feedback.json",
640
+ "isSource": true,
641
+ "original": {
642
+ "value": "#0087C4"
643
+ },
644
+ "name": "cds-color-feedback-progress-100",
645
+ "attributes": {
646
+ "category": "color",
647
+ "type": "feedback",
648
+ "item": "progress",
649
+ "subitem": "100"
650
+ },
651
+ "path": [
652
+ "color",
653
+ "feedback",
654
+ "progress",
655
+ "100"
656
+ ]
657
+ },
658
+ {
659
+ "value": "#000000",
660
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/icon.json",
661
+ "isSource": true,
662
+ "original": {
663
+ "value": "#000000"
664
+ },
665
+ "name": "cds-color-icon-default",
666
+ "attributes": {
667
+ "category": "color",
668
+ "type": "icon",
669
+ "item": "default"
670
+ },
671
+ "path": [
672
+ "color",
673
+ "icon",
674
+ "default"
675
+ ]
676
+ },
677
+ {
678
+ "value": "#ffffff",
679
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/icon.json",
680
+ "isSource": true,
681
+ "original": {
682
+ "value": "#FFFFFF"
683
+ },
684
+ "name": "cds-color-icon-inverse",
685
+ "attributes": {
686
+ "category": "color",
687
+ "type": "icon",
688
+ "item": "inverse"
689
+ },
690
+ "path": [
691
+ "color",
692
+ "icon",
693
+ "inverse"
694
+ ]
695
+ },
696
+ {
697
+ "value": "#7acaff",
698
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
699
+ "isSource": true,
700
+ "original": {
701
+ "value": "#7ACAFF"
702
+ },
703
+ "name": "cds-color-interactive-01-default",
704
+ "attributes": {
705
+ "category": "color",
706
+ "type": "interactive",
707
+ "item": "01",
708
+ "subitem": "default"
709
+ },
710
+ "path": [
711
+ "color",
712
+ "interactive",
713
+ "01",
714
+ "default"
715
+ ]
716
+ },
717
+ {
718
+ "value": "#48a6e4",
719
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
720
+ "isSource": true,
721
+ "original": {
722
+ "value": "#48A6E4"
723
+ },
724
+ "name": "cds-color-interactive-01-hover",
725
+ "attributes": {
726
+ "category": "color",
727
+ "type": "interactive",
728
+ "item": "01",
729
+ "subitem": "hover"
730
+ },
731
+ "path": [
732
+ "color",
733
+ "interactive",
734
+ "01",
735
+ "hover"
736
+ ]
737
+ },
738
+ {
739
+ "value": "#7acaff",
740
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
741
+ "isSource": true,
742
+ "original": {
743
+ "value": "#7ACAFF"
744
+ },
745
+ "name": "cds-color-interactive-01-focus",
746
+ "attributes": {
747
+ "category": "color",
748
+ "type": "interactive",
749
+ "item": "01",
750
+ "subitem": "focus"
751
+ },
752
+ "path": [
753
+ "color",
754
+ "interactive",
755
+ "01",
756
+ "focus"
757
+ ]
758
+ },
759
+ {
760
+ "value": "#2e8cca",
761
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
762
+ "isSource": true,
763
+ "original": {
764
+ "value": "#2E8CCA"
765
+ },
766
+ "name": "cds-color-interactive-01-active",
767
+ "attributes": {
768
+ "category": "color",
769
+ "type": "interactive",
770
+ "item": "01",
771
+ "subitem": "active"
772
+ },
773
+ "path": [
774
+ "color",
775
+ "interactive",
776
+ "01",
777
+ "active"
778
+ ]
779
+ },
780
+ {
781
+ "value": "#000000",
782
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
783
+ "isSource": true,
784
+ "original": {
785
+ "value": "#000000"
786
+ },
787
+ "name": "cds-color-interactive-01-above",
788
+ "attributes": {
789
+ "category": "color",
790
+ "type": "interactive",
791
+ "item": "01",
792
+ "subitem": "above"
793
+ },
794
+ "path": [
795
+ "color",
796
+ "interactive",
797
+ "01",
798
+ "above"
799
+ ]
800
+ },
801
+ {
802
+ "value": "#f5f5f5",
803
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
804
+ "isSource": true,
805
+ "original": {
806
+ "value": "#F5F5F5"
807
+ },
808
+ "name": "cds-color-interactive-02-default",
809
+ "attributes": {
810
+ "category": "color",
811
+ "type": "interactive",
812
+ "item": "02",
813
+ "subitem": "default"
814
+ },
815
+ "path": [
816
+ "color",
817
+ "interactive",
818
+ "02",
819
+ "default"
820
+ ]
821
+ },
822
+ {
823
+ "value": "#e8f6ff",
824
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
825
+ "isSource": true,
826
+ "original": {
827
+ "value": "#E8F6FF"
828
+ },
829
+ "name": "cds-color-interactive-02-hover",
830
+ "attributes": {
831
+ "category": "color",
832
+ "type": "interactive",
833
+ "item": "02",
834
+ "subitem": "hover"
835
+ },
836
+ "path": [
837
+ "color",
838
+ "interactive",
839
+ "02",
840
+ "hover"
841
+ ]
842
+ },
843
+ {
844
+ "value": "#7acaff",
845
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
846
+ "isSource": true,
847
+ "original": {
848
+ "value": "#7ACAFF"
849
+ },
850
+ "name": "cds-color-interactive-02-focus",
851
+ "attributes": {
852
+ "category": "color",
853
+ "type": "interactive",
854
+ "item": "02",
855
+ "subitem": "focus"
856
+ },
857
+ "path": [
858
+ "color",
859
+ "interactive",
860
+ "02",
861
+ "focus"
862
+ ]
863
+ },
864
+ {
865
+ "value": "#e5e5e5",
866
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
867
+ "isSource": true,
868
+ "original": {
869
+ "value": "#E5E5E5"
870
+ },
871
+ "name": "cds-color-interactive-02-active",
872
+ "attributes": {
873
+ "category": "color",
874
+ "type": "interactive",
875
+ "item": "02",
876
+ "subitem": "active"
877
+ },
878
+ "path": [
879
+ "color",
880
+ "interactive",
881
+ "02",
882
+ "active"
883
+ ]
884
+ },
885
+ {
886
+ "value": "#000000",
887
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/interactive.json",
888
+ "isSource": true,
889
+ "original": {
890
+ "value": "#000000"
891
+ },
892
+ "name": "cds-color-interactive-02-above",
893
+ "attributes": {
894
+ "category": "color",
895
+ "type": "interactive",
896
+ "item": "02",
897
+ "subitem": "above"
898
+ },
899
+ "path": [
900
+ "color",
901
+ "interactive",
902
+ "02",
903
+ "above"
904
+ ]
905
+ },
906
+ {
907
+ "value": "#096aaa",
908
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/link.json",
909
+ "isSource": true,
910
+ "original": {
911
+ "value": "#096AAA"
912
+ },
913
+ "name": "cds-color-link-default",
914
+ "attributes": {
915
+ "category": "color",
916
+ "type": "link",
917
+ "item": "default"
918
+ },
919
+ "path": [
920
+ "color",
921
+ "link",
922
+ "default"
923
+ ]
924
+ },
925
+ {
926
+ "value": "#280099",
927
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/link.json",
928
+ "isSource": true,
929
+ "original": {
930
+ "value": "#280099"
931
+ },
932
+ "name": "cds-color-link-visited",
933
+ "attributes": {
934
+ "category": "color",
935
+ "type": "link",
936
+ "item": "visited"
937
+ },
938
+ "path": [
939
+ "color",
940
+ "link",
941
+ "visited"
942
+ ]
943
+ },
944
+ {
945
+ "value": "#ffffff",
946
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
947
+ "isSource": true,
948
+ "original": {
949
+ "value": "#ffffff"
950
+ },
951
+ "name": "cds-color-neutral-0",
952
+ "attributes": {
953
+ "category": "color",
954
+ "type": "neutral",
955
+ "item": "0"
956
+ },
957
+ "path": [
958
+ "color",
959
+ "neutral",
960
+ "0"
961
+ ]
962
+ },
963
+ {
964
+ "value": "#f5f5f5",
965
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
966
+ "isSource": true,
967
+ "original": {
968
+ "value": "#f5f5f5"
969
+ },
970
+ "name": "cds-color-neutral-4",
971
+ "attributes": {
972
+ "category": "color",
973
+ "type": "neutral",
974
+ "item": "4"
975
+ },
976
+ "path": [
977
+ "color",
978
+ "neutral",
979
+ "4"
980
+ ]
981
+ },
982
+ {
983
+ "value": "#ebebeb",
984
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
985
+ "isSource": true,
986
+ "original": {
987
+ "value": "#ebebeb"
988
+ },
989
+ "name": "cds-color-neutral-8",
990
+ "attributes": {
991
+ "category": "color",
992
+ "type": "neutral",
993
+ "item": "8"
994
+ },
995
+ "path": [
996
+ "color",
997
+ "neutral",
998
+ "8"
999
+ ]
1000
+ },
1001
+ {
1002
+ "value": "#e5e5e5",
1003
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
1004
+ "isSource": true,
1005
+ "original": {
1006
+ "value": "#e5e5e5"
1007
+ },
1008
+ "name": "cds-color-neutral-10",
1009
+ "attributes": {
1010
+ "category": "color",
1011
+ "type": "neutral",
1012
+ "item": "10"
1013
+ },
1014
+ "path": [
1015
+ "color",
1016
+ "neutral",
1017
+ "10"
1018
+ ]
1019
+ },
1020
+ {
1021
+ "value": "#dadada",
1022
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
1023
+ "isSource": true,
1024
+ "original": {
1025
+ "value": "#dadada"
1026
+ },
1027
+ "name": "cds-color-neutral-15",
1028
+ "attributes": {
1029
+ "category": "color",
1030
+ "type": "neutral",
1031
+ "item": "15"
1032
+ },
1033
+ "path": [
1034
+ "color",
1035
+ "neutral",
1036
+ "15"
1037
+ ]
1038
+ },
1039
+ {
1040
+ "value": "#bebebe",
1041
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
1042
+ "isSource": true,
1043
+ "original": {
1044
+ "value": "#bebebe"
1045
+ },
1046
+ "name": "cds-color-neutral-25",
1047
+ "attributes": {
1048
+ "category": "color",
1049
+ "type": "neutral",
1050
+ "item": "25"
1051
+ },
1052
+ "path": [
1053
+ "color",
1054
+ "neutral",
1055
+ "25"
1056
+ ]
1057
+ },
1058
+ {
1059
+ "value": "#999999",
1060
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
1061
+ "isSource": true,
1062
+ "original": {
1063
+ "value": "#999999"
1064
+ },
1065
+ "name": "cds-color-neutral-40",
1066
+ "attributes": {
1067
+ "category": "color",
1068
+ "type": "neutral",
1069
+ "item": "40"
1070
+ },
1071
+ "path": [
1072
+ "color",
1073
+ "neutral",
1074
+ "40"
1075
+ ]
1076
+ },
1077
+ {
1078
+ "value": "#858585",
1079
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
1080
+ "isSource": true,
1081
+ "original": {
1082
+ "value": "#858585"
1083
+ },
1084
+ "name": "cds-color-neutral-48",
1085
+ "attributes": {
1086
+ "category": "color",
1087
+ "type": "neutral",
1088
+ "item": "48"
1089
+ },
1090
+ "path": [
1091
+ "color",
1092
+ "neutral",
1093
+ "48"
1094
+ ]
1095
+ },
1096
+ {
1097
+ "value": "#555555",
1098
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
1099
+ "isSource": true,
1100
+ "original": {
1101
+ "value": "#555555"
1102
+ },
1103
+ "name": "cds-color-neutral-66",
1104
+ "attributes": {
1105
+ "category": "color",
1106
+ "type": "neutral",
1107
+ "item": "66"
1108
+ },
1109
+ "path": [
1110
+ "color",
1111
+ "neutral",
1112
+ "66"
1113
+ ]
1114
+ },
1115
+ {
1116
+ "value": "#000000",
1117
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/neutral.json",
1118
+ "isSource": true,
1119
+ "original": {
1120
+ "value": "#000000"
1121
+ },
1122
+ "name": "cds-color-neutral-100",
1123
+ "attributes": {
1124
+ "category": "color",
1125
+ "type": "neutral",
1126
+ "item": "100"
1127
+ },
1128
+ "path": [
1129
+ "color",
1130
+ "neutral",
1131
+ "100"
1132
+ ]
1133
+ },
1134
+ {
1135
+ "value": "rgba(85, 85, 85, 0.65)",
1136
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/overlay.json",
1137
+ "isSource": true,
1138
+ "original": {
1139
+ "value": "rgba(85, 85, 85, 0.65)"
1140
+ },
1141
+ "name": "cds-color-overlay-01",
1142
+ "attributes": {
1143
+ "category": "color",
1144
+ "type": "overlay",
1145
+ "item": "01"
1146
+ },
1147
+ "path": [
1148
+ "color",
1149
+ "overlay",
1150
+ "01"
1151
+ ]
1152
+ },
1153
+ {
1154
+ "value": "rgba(245, 245, 245, 0.65)",
1155
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/overlay.json",
1156
+ "isSource": true,
1157
+ "original": {
1158
+ "value": "rgba(245, 245, 245, 0.65)"
1159
+ },
1160
+ "name": "cds-color-overlay-02",
1161
+ "attributes": {
1162
+ "category": "color",
1163
+ "type": "overlay",
1164
+ "item": "02"
1165
+ },
1166
+ "path": [
1167
+ "color",
1168
+ "overlay",
1169
+ "02"
1170
+ ]
1171
+ },
1172
+ {
1173
+ "value": "#000000",
1174
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/text.json",
1175
+ "isSource": true,
1176
+ "original": {
1177
+ "value": "#000000"
1178
+ },
1179
+ "name": "cds-color-text-primary",
1180
+ "attributes": {
1181
+ "category": "color",
1182
+ "type": "text",
1183
+ "item": "primary"
1184
+ },
1185
+ "path": [
1186
+ "color",
1187
+ "text",
1188
+ "primary"
1189
+ ]
1190
+ },
1191
+ {
1192
+ "value": "#bebebe",
1193
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/text.json",
1194
+ "isSource": true,
1195
+ "original": {
1196
+ "value": "#bebebe"
1197
+ },
1198
+ "name": "cds-color-text-secondary",
1199
+ "attributes": {
1200
+ "category": "color",
1201
+ "type": "text",
1202
+ "item": "secondary"
1203
+ },
1204
+ "path": [
1205
+ "color",
1206
+ "text",
1207
+ "secondary"
1208
+ ]
1209
+ },
1210
+ {
1211
+ "value": "#000000",
1212
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/text.json",
1213
+ "isSource": true,
1214
+ "original": {
1215
+ "value": "#000000"
1216
+ },
1217
+ "name": "cds-color-text-label",
1218
+ "attributes": {
1219
+ "category": "color",
1220
+ "type": "text",
1221
+ "item": "label"
1222
+ },
1223
+ "path": [
1224
+ "color",
1225
+ "text",
1226
+ "label"
1227
+ ]
1228
+ },
1229
+ {
1230
+ "value": "#555555",
1231
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/text.json",
1232
+ "isSource": true,
1233
+ "original": {
1234
+ "value": "#555555"
1235
+ },
1236
+ "name": "cds-color-text-description",
1237
+ "attributes": {
1238
+ "category": "color",
1239
+ "type": "text",
1240
+ "item": "description"
1241
+ },
1242
+ "path": [
1243
+ "color",
1244
+ "text",
1245
+ "description"
1246
+ ]
1247
+ },
1248
+ {
1249
+ "value": "#bebebe",
1250
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/text.json",
1251
+ "isSource": true,
1252
+ "original": {
1253
+ "value": "#bebebe"
1254
+ },
1255
+ "name": "cds-color-text-placeholder",
1256
+ "attributes": {
1257
+ "category": "color",
1258
+ "type": "text",
1259
+ "item": "placeholder"
1260
+ },
1261
+ "path": [
1262
+ "color",
1263
+ "text",
1264
+ "placeholder"
1265
+ ]
1266
+ },
1267
+ {
1268
+ "value": "#ffffff",
1269
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/color/text.json",
1270
+ "isSource": true,
1271
+ "original": {
1272
+ "value": "#ffffff"
1273
+ },
1274
+ "name": "cds-color-text-inverse",
1275
+ "attributes": {
1276
+ "category": "color",
1277
+ "type": "text",
1278
+ "item": "inverse"
1279
+ },
1280
+ "path": [
1281
+ "color",
1282
+ "text",
1283
+ "inverse"
1284
+ ]
1285
+ },
1286
+ {
1287
+ "value": "16px",
1288
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1289
+ "isSource": true,
1290
+ "original": {
1291
+ "value": "16px"
1292
+ },
1293
+ "name": "cds-font-base",
1294
+ "attributes": {
1295
+ "category": "font",
1296
+ "type": "base"
1297
+ },
1298
+ "path": [
1299
+ "font",
1300
+ "base"
1301
+ ]
1302
+ },
1303
+ {
1304
+ "value": "Arial",
1305
+ "comment": "Font family",
1306
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1307
+ "isSource": true,
1308
+ "original": {
1309
+ "value": "Arial",
1310
+ "comment": "Font family"
1311
+ },
1312
+ "name": "cds-font-family-sans",
1313
+ "attributes": {
1314
+ "category": "font",
1315
+ "type": "family",
1316
+ "item": "sans"
1317
+ },
1318
+ "path": [
1319
+ "font",
1320
+ "family",
1321
+ "sans"
1322
+ ]
1323
+ },
1324
+ {
1325
+ "value": "0.875rem",
1326
+ "description": "Base font size = 16px",
1327
+ "comment": "Font size",
1328
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1329
+ "isSource": true,
1330
+ "original": {
1331
+ "value": "0.875rem",
1332
+ "description": "Base font size = 16px",
1333
+ "comment": "Font size"
1334
+ },
1335
+ "name": "cds-font-family-size",
1336
+ "attributes": {
1337
+ "category": "font",
1338
+ "type": "family",
1339
+ "item": "size"
1340
+ },
1341
+ "path": [
1342
+ "font",
1343
+ "family",
1344
+ "size"
1345
+ ]
1346
+ },
1347
+ {
1348
+ "value": "0.75rem",
1349
+ "description": "12px",
1350
+ "comment": "Font size",
1351
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1352
+ "isSource": true,
1353
+ "original": {
1354
+ "value": "0.75rem",
1355
+ "description": "12px",
1356
+ "comment": "Font size"
1357
+ },
1358
+ "name": "cds-font-body-size-xs",
1359
+ "attributes": {
1360
+ "category": "font",
1361
+ "type": "body",
1362
+ "item": "size",
1363
+ "subitem": "xs"
1364
+ },
1365
+ "path": [
1366
+ "font",
1367
+ "body",
1368
+ "size",
1369
+ "xs"
1370
+ ]
1371
+ },
1372
+ {
1373
+ "value": "0.875rem",
1374
+ "description": "14px",
1375
+ "comment": "Font size",
1376
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1377
+ "isSource": true,
1378
+ "original": {
1379
+ "value": "0.875rem",
1380
+ "description": "14px",
1381
+ "comment": "Font size"
1382
+ },
1383
+ "name": "cds-font-body-size-s",
1384
+ "attributes": {
1385
+ "category": "font",
1386
+ "type": "body",
1387
+ "item": "size",
1388
+ "subitem": "s"
1389
+ },
1390
+ "path": [
1391
+ "font",
1392
+ "body",
1393
+ "size",
1394
+ "s"
1395
+ ]
1396
+ },
1397
+ {
1398
+ "value": "1rem",
1399
+ "description": "16px",
1400
+ "comment": "Font size",
1401
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1402
+ "isSource": true,
1403
+ "original": {
1404
+ "value": "1rem",
1405
+ "description": "16px",
1406
+ "comment": "Font size"
1407
+ },
1408
+ "name": "cds-font-body-size-m",
1409
+ "attributes": {
1410
+ "category": "font",
1411
+ "type": "body",
1412
+ "item": "size",
1413
+ "subitem": "m"
1414
+ },
1415
+ "path": [
1416
+ "font",
1417
+ "body",
1418
+ "size",
1419
+ "m"
1420
+ ]
1421
+ },
1422
+ {
1423
+ "value": "1.5rem",
1424
+ "description": "18px",
1425
+ "comment": "Font size",
1426
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1427
+ "isSource": true,
1428
+ "original": {
1429
+ "value": "1.5rem",
1430
+ "description": "18px",
1431
+ "comment": "Font size"
1432
+ },
1433
+ "name": "cds-font-body-size-l",
1434
+ "attributes": {
1435
+ "category": "font",
1436
+ "type": "body",
1437
+ "item": "size",
1438
+ "subitem": "l"
1439
+ },
1440
+ "path": [
1441
+ "font",
1442
+ "body",
1443
+ "size",
1444
+ "l"
1445
+ ]
1446
+ },
1447
+ {
1448
+ "value": "2rem",
1449
+ "description": "32px",
1450
+ "comment": "Font size",
1451
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1452
+ "isSource": true,
1453
+ "original": {
1454
+ "value": "2rem",
1455
+ "description": "32px",
1456
+ "comment": "Font size"
1457
+ },
1458
+ "name": "cds-font-heading-1",
1459
+ "attributes": {
1460
+ "category": "font",
1461
+ "type": "heading",
1462
+ "item": "1"
1463
+ },
1464
+ "path": [
1465
+ "font",
1466
+ "heading",
1467
+ "1"
1468
+ ]
1469
+ },
1470
+ {
1471
+ "value": "1.75rem",
1472
+ "description": "28px",
1473
+ "comment": "Font size",
1474
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1475
+ "isSource": true,
1476
+ "original": {
1477
+ "value": "1.75rem",
1478
+ "description": "28px",
1479
+ "comment": "Font size"
1480
+ },
1481
+ "name": "cds-font-heading-2",
1482
+ "attributes": {
1483
+ "category": "font",
1484
+ "type": "heading",
1485
+ "item": "2"
1486
+ },
1487
+ "path": [
1488
+ "font",
1489
+ "heading",
1490
+ "2"
1491
+ ]
1492
+ },
1493
+ {
1494
+ "value": "1.5rem",
1495
+ "description": "24px",
1496
+ "comment": "Font size",
1497
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1498
+ "isSource": true,
1499
+ "original": {
1500
+ "value": "1.5rem",
1501
+ "description": "24px",
1502
+ "comment": "Font size"
1503
+ },
1504
+ "name": "cds-font-heading-3",
1505
+ "attributes": {
1506
+ "category": "font",
1507
+ "type": "heading",
1508
+ "item": "3"
1509
+ },
1510
+ "path": [
1511
+ "font",
1512
+ "heading",
1513
+ "3"
1514
+ ]
1515
+ },
1516
+ {
1517
+ "value": "1.125rem",
1518
+ "description": "18px",
1519
+ "comment": "Font size",
1520
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1521
+ "isSource": true,
1522
+ "original": {
1523
+ "value": "1.125rem",
1524
+ "description": "18px",
1525
+ "comment": "Font size"
1526
+ },
1527
+ "name": "cds-font-heading-4",
1528
+ "attributes": {
1529
+ "category": "font",
1530
+ "type": "heading",
1531
+ "item": "4"
1532
+ },
1533
+ "path": [
1534
+ "font",
1535
+ "heading",
1536
+ "4"
1537
+ ]
1538
+ },
1539
+ {
1540
+ "value": "0.875rem",
1541
+ "description": "14px",
1542
+ "comment": "Font size",
1543
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1544
+ "isSource": true,
1545
+ "original": {
1546
+ "value": "0.875rem",
1547
+ "description": "14px",
1548
+ "comment": "Font size"
1549
+ },
1550
+ "name": "cds-font-heading-5",
1551
+ "attributes": {
1552
+ "category": "font",
1553
+ "type": "heading",
1554
+ "item": "5"
1555
+ },
1556
+ "path": [
1557
+ "font",
1558
+ "heading",
1559
+ "5"
1560
+ ]
1561
+ },
1562
+ {
1563
+ "value": "0.75rem",
1564
+ "description": "12px",
1565
+ "comment": "Font size",
1566
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1567
+ "isSource": true,
1568
+ "original": {
1569
+ "value": "0.75rem",
1570
+ "description": "12px",
1571
+ "comment": "Font size"
1572
+ },
1573
+ "name": "cds-font-heading-6",
1574
+ "attributes": {
1575
+ "category": "font",
1576
+ "type": "heading",
1577
+ "item": "6"
1578
+ },
1579
+ "path": [
1580
+ "font",
1581
+ "heading",
1582
+ "6"
1583
+ ]
1584
+ },
1585
+ {
1586
+ "value": "0.625rem",
1587
+ "description": "10px",
1588
+ "comment": "Font size",
1589
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1590
+ "isSource": true,
1591
+ "original": {
1592
+ "value": "0.625rem",
1593
+ "description": "10px",
1594
+ "comment": "Font size"
1595
+ },
1596
+ "name": "cds-font-heading-eyebrow",
1597
+ "attributes": {
1598
+ "category": "font",
1599
+ "type": "heading",
1600
+ "item": "eyebrow"
1601
+ },
1602
+ "path": [
1603
+ "font",
1604
+ "heading",
1605
+ "eyebrow"
1606
+ ]
1607
+ },
1608
+ {
1609
+ "value": "4.375rem",
1610
+ "description": "70px",
1611
+ "comment": "Font size",
1612
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1613
+ "isSource": true,
1614
+ "original": {
1615
+ "value": "4.375rem",
1616
+ "description": "70px",
1617
+ "comment": "Font size"
1618
+ },
1619
+ "name": "cds-font-display-1",
1620
+ "attributes": {
1621
+ "category": "font",
1622
+ "type": "display",
1623
+ "item": "1"
1624
+ },
1625
+ "path": [
1626
+ "font",
1627
+ "display",
1628
+ "1"
1629
+ ]
1630
+ },
1631
+ {
1632
+ "value": "3.375rem",
1633
+ "description": "54px",
1634
+ "comment": "Font size",
1635
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1636
+ "isSource": true,
1637
+ "original": {
1638
+ "value": "3.375rem",
1639
+ "description": "54px",
1640
+ "comment": "Font size"
1641
+ },
1642
+ "name": "cds-font-display-2",
1643
+ "attributes": {
1644
+ "category": "font",
1645
+ "type": "display",
1646
+ "item": "2"
1647
+ },
1648
+ "path": [
1649
+ "font",
1650
+ "display",
1651
+ "2"
1652
+ ]
1653
+ },
1654
+ {
1655
+ "value": "700",
1656
+ "description": "Font Bold",
1657
+ "comment": "Font Weight",
1658
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1659
+ "isSource": true,
1660
+ "original": {
1661
+ "value": "700",
1662
+ "description": "Font Bold",
1663
+ "comment": "Font Weight"
1664
+ },
1665
+ "name": "cds-font-weight-bold",
1666
+ "attributes": {
1667
+ "category": "font",
1668
+ "type": "weight",
1669
+ "item": "bold"
1670
+ },
1671
+ "path": [
1672
+ "font",
1673
+ "weight",
1674
+ "bold"
1675
+ ]
1676
+ },
1677
+ {
1678
+ "value": "600",
1679
+ "description": "Font Semi Bold",
1680
+ "comment": "Font Weight",
1681
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1682
+ "isSource": true,
1683
+ "original": {
1684
+ "value": "600",
1685
+ "description": "Font Semi Bold",
1686
+ "comment": "Font Weight"
1687
+ },
1688
+ "name": "cds-font-weight-semi-bold",
1689
+ "attributes": {
1690
+ "category": "font",
1691
+ "type": "weight",
1692
+ "item": "semi_bold"
1693
+ },
1694
+ "path": [
1695
+ "font",
1696
+ "weight",
1697
+ "semi_bold"
1698
+ ]
1699
+ },
1700
+ {
1701
+ "value": "400",
1702
+ "description": "Font Normal",
1703
+ "comment": "Font Weight",
1704
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1705
+ "isSource": true,
1706
+ "original": {
1707
+ "value": "400",
1708
+ "description": "Font Normal",
1709
+ "comment": "Font Weight"
1710
+ },
1711
+ "name": "cds-font-weight-normal",
1712
+ "attributes": {
1713
+ "category": "font",
1714
+ "type": "weight",
1715
+ "item": "normal"
1716
+ },
1717
+ "path": [
1718
+ "font",
1719
+ "weight",
1720
+ "normal"
1721
+ ]
1722
+ },
1723
+ {
1724
+ "value": "300",
1725
+ "description": "Font Light",
1726
+ "comment": "Font Weight",
1727
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1728
+ "isSource": true,
1729
+ "original": {
1730
+ "value": "300",
1731
+ "description": "Font Light",
1732
+ "comment": "Font Weight"
1733
+ },
1734
+ "name": "cds-font-weight-light",
1735
+ "attributes": {
1736
+ "category": "font",
1737
+ "type": "weight",
1738
+ "item": "light"
1739
+ },
1740
+ "path": [
1741
+ "font",
1742
+ "weight",
1743
+ "light"
1744
+ ]
1745
+ },
1746
+ {
1747
+ "value": "130%",
1748
+ "description": "Line height",
1749
+ "comment": "Line height",
1750
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1751
+ "isSource": true,
1752
+ "original": {
1753
+ "value": "130%",
1754
+ "description": "Line height",
1755
+ "comment": "Line height"
1756
+ },
1757
+ "name": "cds-font-height-body",
1758
+ "attributes": {
1759
+ "category": "font",
1760
+ "type": "height",
1761
+ "item": "body"
1762
+ },
1763
+ "path": [
1764
+ "font",
1765
+ "height",
1766
+ "body"
1767
+ ]
1768
+ },
1769
+ {
1770
+ "value": "120%",
1771
+ "description": "Line height",
1772
+ "comment": "Line height",
1773
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1774
+ "isSource": true,
1775
+ "original": {
1776
+ "value": "120%",
1777
+ "description": "Line height",
1778
+ "comment": "Line height"
1779
+ },
1780
+ "name": "cds-font-height-heading",
1781
+ "attributes": {
1782
+ "category": "font",
1783
+ "type": "height",
1784
+ "item": "heading"
1785
+ },
1786
+ "path": [
1787
+ "font",
1788
+ "height",
1789
+ "heading"
1790
+ ]
1791
+ },
1792
+ {
1793
+ "value": "120%",
1794
+ "comment": "Line height",
1795
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1796
+ "isSource": true,
1797
+ "original": {
1798
+ "value": "120%",
1799
+ "comment": "Line height"
1800
+ },
1801
+ "name": "cds-font-height-display",
1802
+ "attributes": {
1803
+ "category": "font",
1804
+ "type": "height",
1805
+ "item": "display"
1806
+ },
1807
+ "path": [
1808
+ "font",
1809
+ "height",
1810
+ "display"
1811
+ ]
1812
+ },
1813
+ {
1814
+ "value": "130%",
1815
+ "comment": "Line height",
1816
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1817
+ "isSource": true,
1818
+ "original": {
1819
+ "value": "130%",
1820
+ "comment": "Line height"
1821
+ },
1822
+ "name": "cds-font-height-helper",
1823
+ "attributes": {
1824
+ "category": "font",
1825
+ "type": "height",
1826
+ "item": "helper"
1827
+ },
1828
+ "path": [
1829
+ "font",
1830
+ "height",
1831
+ "helper"
1832
+ ]
1833
+ },
1834
+ {
1835
+ "value": "0 0 1.5rem",
1836
+ "description": "0 0 24px",
1837
+ "comment": "Font margin",
1838
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1839
+ "isSource": true,
1840
+ "original": {
1841
+ "value": "0 0 1.5rem",
1842
+ "description": "0 0 24px",
1843
+ "comment": "Font margin"
1844
+ },
1845
+ "name": "cds-font-margin-heading-1",
1846
+ "attributes": {
1847
+ "category": "font",
1848
+ "type": "margin",
1849
+ "item": "heading",
1850
+ "subitem": "1"
1851
+ },
1852
+ "path": [
1853
+ "font",
1854
+ "margin",
1855
+ "heading",
1856
+ "1"
1857
+ ]
1858
+ },
1859
+ {
1860
+ "value": "3rem 0 1rem",
1861
+ "description": "48px 0 16px",
1862
+ "comment": "Font margin",
1863
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1864
+ "isSource": true,
1865
+ "original": {
1866
+ "value": "3rem 0 1rem",
1867
+ "description": "48px 0 16px",
1868
+ "comment": "Font margin"
1869
+ },
1870
+ "name": "cds-font-margin-heading-2",
1871
+ "attributes": {
1872
+ "category": "font",
1873
+ "type": "margin",
1874
+ "item": "heading",
1875
+ "subitem": "2"
1876
+ },
1877
+ "path": [
1878
+ "font",
1879
+ "margin",
1880
+ "heading",
1881
+ "2"
1882
+ ]
1883
+ },
1884
+ {
1885
+ "value": "2rem 0 1rem",
1886
+ "description": "32px 0 16px",
1887
+ "comment": "Font margin",
1888
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1889
+ "isSource": true,
1890
+ "original": {
1891
+ "value": "2rem 0 1rem",
1892
+ "description": "32px 0 16px",
1893
+ "comment": "Font margin"
1894
+ },
1895
+ "name": "cds-font-margin-heading-3",
1896
+ "attributes": {
1897
+ "category": "font",
1898
+ "type": "margin",
1899
+ "item": "heading",
1900
+ "subitem": "3"
1901
+ },
1902
+ "path": [
1903
+ "font",
1904
+ "margin",
1905
+ "heading",
1906
+ "3"
1907
+ ]
1908
+ },
1909
+ {
1910
+ "value": "1.5rem 0 .75rem",
1911
+ "description": "24px 0 12px",
1912
+ "comment": "Font margin",
1913
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1914
+ "isSource": true,
1915
+ "original": {
1916
+ "value": "1.5rem 0 .75rem",
1917
+ "description": "24px 0 12px",
1918
+ "comment": "Font margin"
1919
+ },
1920
+ "name": "cds-font-margin-heading-4",
1921
+ "attributes": {
1922
+ "category": "font",
1923
+ "type": "margin",
1924
+ "item": "heading",
1925
+ "subitem": "4"
1926
+ },
1927
+ "path": [
1928
+ "font",
1929
+ "margin",
1930
+ "heading",
1931
+ "4"
1932
+ ]
1933
+ },
1934
+ {
1935
+ "value": "1rem 0 .5rem",
1936
+ "description": "16px 0 8px",
1937
+ "comment": "Font margin",
1938
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1939
+ "isSource": true,
1940
+ "original": {
1941
+ "value": "1rem 0 .5rem",
1942
+ "description": "16px 0 8px",
1943
+ "comment": "Font margin"
1944
+ },
1945
+ "name": "cds-font-margin-heading-5",
1946
+ "attributes": {
1947
+ "category": "font",
1948
+ "type": "margin",
1949
+ "item": "heading",
1950
+ "subitem": "5"
1951
+ },
1952
+ "path": [
1953
+ "font",
1954
+ "margin",
1955
+ "heading",
1956
+ "5"
1957
+ ]
1958
+ },
1959
+ {
1960
+ "value": "1rem 0 .5rem",
1961
+ "description": "16px 0 8px",
1962
+ "comment": "Font margin",
1963
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1964
+ "isSource": true,
1965
+ "original": {
1966
+ "value": "1rem 0 .5rem",
1967
+ "description": "16px 0 8px",
1968
+ "comment": "Font margin"
1969
+ },
1970
+ "name": "cds-font-margin-heading-6",
1971
+ "attributes": {
1972
+ "category": "font",
1973
+ "type": "margin",
1974
+ "item": "heading",
1975
+ "subitem": "6"
1976
+ },
1977
+ "path": [
1978
+ "font",
1979
+ "margin",
1980
+ "heading",
1981
+ "6"
1982
+ ]
1983
+ },
1984
+ {
1985
+ "value": "0 0 1.5rem",
1986
+ "description": "0 0 24px",
1987
+ "comment": "Font margin",
1988
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
1989
+ "isSource": true,
1990
+ "original": {
1991
+ "value": "0 0 1.5rem",
1992
+ "description": "0 0 24px",
1993
+ "comment": "Font margin"
1994
+ },
1995
+ "name": "cds-font-margin-display-1",
1996
+ "attributes": {
1997
+ "category": "font",
1998
+ "type": "margin",
1999
+ "item": "display",
2000
+ "subitem": "1"
2001
+ },
2002
+ "path": [
2003
+ "font",
2004
+ "margin",
2005
+ "display",
2006
+ "1"
2007
+ ]
2008
+ },
2009
+ {
2010
+ "value": "0 0 1rem",
2011
+ "description": "0 0 16px",
2012
+ "comment": "Font margin",
2013
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
2014
+ "isSource": true,
2015
+ "original": {
2016
+ "value": "0 0 1rem",
2017
+ "description": "0 0 16px",
2018
+ "comment": "Font margin"
2019
+ },
2020
+ "name": "cds-font-margin-display-2",
2021
+ "attributes": {
2022
+ "category": "font",
2023
+ "type": "margin",
2024
+ "item": "display",
2025
+ "subitem": "2"
2026
+ },
2027
+ "path": [
2028
+ "font",
2029
+ "margin",
2030
+ "display",
2031
+ "2"
2032
+ ]
2033
+ },
2034
+ {
2035
+ "value": "0 0 1rem",
2036
+ "description": "0 0 16px",
2037
+ "comment": "Font margin",
2038
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/font/index.json",
2039
+ "isSource": true,
2040
+ "original": {
2041
+ "value": "0 0 1rem",
2042
+ "description": "0 0 16px",
2043
+ "comment": "Font margin"
2044
+ },
2045
+ "name": "cds-font-margin-s",
2046
+ "attributes": {
2047
+ "category": "font",
2048
+ "type": "margin",
2049
+ "item": "s"
2050
+ },
2051
+ "path": [
2052
+ "font",
2053
+ "margin",
2054
+ "s"
2055
+ ]
2056
+ },
2057
+ {
2058
+ "value": "0px 1px 4px rgba(0, 0, 0, 0.2)",
2059
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/layer/shadow.json",
2060
+ "isSource": true,
2061
+ "original": {
2062
+ "value": "0px 1px 4px rgba(0, 0, 0, 0.2)"
2063
+ },
2064
+ "name": "cds-box-shadow-header",
2065
+ "attributes": {
2066
+ "category": "box",
2067
+ "type": "shadow",
2068
+ "item": "header"
2069
+ },
2070
+ "path": [
2071
+ "box",
2072
+ "shadow",
2073
+ "header"
2074
+ ]
2075
+ },
2076
+ {
2077
+ "value": "0px -1px 4px rgba(0, 0, 0, 0.2)",
2078
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/layer/shadow.json",
2079
+ "isSource": true,
2080
+ "original": {
2081
+ "value": "0px -1px 4px rgba(0, 0, 0, 0.2)"
2082
+ },
2083
+ "name": "cds-box-shadow-footer",
2084
+ "attributes": {
2085
+ "category": "box",
2086
+ "type": "shadow",
2087
+ "item": "footer"
2088
+ },
2089
+ "path": [
2090
+ "box",
2091
+ "shadow",
2092
+ "footer"
2093
+ ]
2094
+ },
2095
+ {
2096
+ "value": "1px 0px 4px rgba(0, 0, 0, 0.2)",
2097
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/layer/shadow.json",
2098
+ "isSource": true,
2099
+ "original": {
2100
+ "value": "1px 0px 4px rgba(0, 0, 0, 0.2)"
2101
+ },
2102
+ "name": "cds-box-shadow-sidebar-left",
2103
+ "attributes": {
2104
+ "category": "box",
2105
+ "type": "shadow",
2106
+ "item": "sidebar-left"
2107
+ },
2108
+ "path": [
2109
+ "box",
2110
+ "shadow",
2111
+ "sidebar-left"
2112
+ ]
2113
+ },
2114
+ {
2115
+ "value": "-1px 0px 4px rgba(0, 0, 0, 0.2)",
2116
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/layer/shadow.json",
2117
+ "isSource": true,
2118
+ "original": {
2119
+ "value": "-1px 0px 4px rgba(0, 0, 0, 0.2)"
2120
+ },
2121
+ "name": "cds-box-shadow-sidebar-right",
2122
+ "attributes": {
2123
+ "category": "box",
2124
+ "type": "shadow",
2125
+ "item": "sidebar-right"
2126
+ },
2127
+ "path": [
2128
+ "box",
2129
+ "shadow",
2130
+ "sidebar-right"
2131
+ ]
2132
+ },
2133
+ {
2134
+ "value": "0px 2px 6px rgba(0, 0, 0, 0.2)",
2135
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/layer/shadow.json",
2136
+ "isSource": true,
2137
+ "original": {
2138
+ "value": "0px 2px 6px rgba(0, 0, 0, 0.2)"
2139
+ },
2140
+ "name": "cds-box-shadow-menu",
2141
+ "attributes": {
2142
+ "category": "box",
2143
+ "type": "shadow",
2144
+ "item": "menu"
2145
+ },
2146
+ "path": [
2147
+ "box",
2148
+ "shadow",
2149
+ "menu"
2150
+ ]
2151
+ },
2152
+ {
2153
+ "value": "0px 2px 6px rgba(0, 0, 0, 0.2)",
2154
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/layer/shadow.json",
2155
+ "isSource": true,
2156
+ "original": {
2157
+ "value": "0px 2px 6px rgba(0, 0, 0, 0.2)"
2158
+ },
2159
+ "name": "cds-box-shadow-modal",
2160
+ "attributes": {
2161
+ "category": "box",
2162
+ "type": "shadow",
2163
+ "item": "modal"
2164
+ },
2165
+ "path": [
2166
+ "box",
2167
+ "shadow",
2168
+ "modal"
2169
+ ]
2170
+ },
2171
+ {
2172
+ "value": "0px 2px 6px rgba(0, 0, 0, 0.2)",
2173
+ "filePath": "/Users/magersoft/projects/central-design-system/src/tokens/themes/b2b/layer/shadow.json",
2174
+ "isSource": true,
2175
+ "original": {
2176
+ "value": "0px 2px 6px rgba(0, 0, 0, 0.2)"
2177
+ },
2178
+ "name": "cds-box-shadow-notification",
2179
+ "attributes": {
2180
+ "category": "box",
2181
+ "type": "shadow",
2182
+ "item": "notification"
2183
+ },
2184
+ "path": [
2185
+ "box",
2186
+ "shadow",
2187
+ "notification"
2188
+ ]
2189
+ }
2190
+ ]