@openedx/paragon 23.0.0-alpha.2 → 23.0.0-alpha.4

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 (274) hide show
  1. package/bin/paragon-scripts.js +10 -0
  2. package/dist/Annotation/index.scss +16 -0
  3. package/dist/Button/index.d.ts +35 -0
  4. package/dist/Button/index.js +37 -15
  5. package/dist/Button/index.js.map +1 -1
  6. package/dist/Card/CardDeck.js +0 -2
  7. package/dist/Card/CardDeck.js.map +1 -1
  8. package/dist/Card/index.scss +6 -6
  9. package/dist/Carousel/index.scss +24 -1
  10. package/dist/Chip/ChipIcon.d.ts +13 -8
  11. package/dist/Chip/ChipIcon.js +0 -2
  12. package/dist/Chip/ChipIcon.js.map +1 -1
  13. package/dist/Chip/constants.d.ts +4 -0
  14. package/dist/Chip/constants.js +3 -2
  15. package/dist/Chip/constants.js.map +1 -0
  16. package/dist/Chip/index.d.ts +4 -3
  17. package/dist/Chip/index.js +2 -4
  18. package/dist/Chip/index.js.map +1 -1
  19. package/dist/ChipCarousel/index.js +0 -2
  20. package/dist/ChipCarousel/index.js.map +1 -1
  21. package/dist/CloseButton/index.scss +8 -0
  22. package/dist/ColorPicker/index.scss +1 -1
  23. package/dist/DataTable/index.scss +12 -0
  24. package/dist/Dropdown/dropdown-bootstrap.scss +6 -0
  25. package/dist/Dropzone/index.scss +34 -0
  26. package/dist/Form/_FormText.scss +1 -1
  27. package/dist/Form/_bootstrap-custom-forms.scss +40 -0
  28. package/dist/Form/_index.scss +9 -0
  29. package/dist/Form/_mixins.scss +22 -0
  30. package/dist/Hyperlink/index.d.ts +24 -0
  31. package/dist/Hyperlink/index.js +20 -32
  32. package/dist/Hyperlink/index.js.map +1 -1
  33. package/dist/Icon/index.d.ts +4 -2
  34. package/dist/Icon/index.js +1 -1
  35. package/dist/Icon/index.js.map +1 -1
  36. package/dist/IconButton/index.d.ts +342 -0
  37. package/dist/IconButton/index.js +18 -26
  38. package/dist/IconButton/index.js.map +1 -1
  39. package/dist/IconButton/index.scss +146 -0
  40. package/dist/Menu/index.scss +8 -0
  41. package/dist/Modal/ModalDialog.js +8 -4
  42. package/dist/Modal/ModalDialog.js.map +1 -1
  43. package/dist/Modal/ModalPopup.js +7 -1
  44. package/dist/Modal/ModalPopup.js.map +1 -1
  45. package/dist/Modal/_ModalDialog.scss +26 -2
  46. package/dist/Nav/index.scss +8 -0
  47. package/dist/Overlay/index.d.ts +128 -0
  48. package/dist/Overlay/index.js +8 -2
  49. package/dist/Overlay/index.js.map +1 -1
  50. package/dist/PageBanner/index.scss +2 -2
  51. package/dist/Pagination/pagination-bootstrap.scss +9 -0
  52. package/dist/Popover/index.scss +1 -1
  53. package/dist/ProductTour/Checkpoint.scss +1 -1
  54. package/dist/ProgressBar/bootstrap-progress.scss +20 -5
  55. package/dist/ProgressBar/index.scss +3 -3
  56. package/dist/Stepper/index.scss +1 -1
  57. package/dist/Sticky/index.scss +12 -0
  58. package/dist/Toast/index.scss +13 -1
  59. package/dist/Tooltip/index.d.ts +7 -0
  60. package/dist/Tooltip/index.js.map +1 -1
  61. package/dist/Tooltip/index.scss +16 -0
  62. package/dist/core.css +914 -470
  63. package/dist/core.css.map +1 -1
  64. package/dist/core.min.css +1 -1
  65. package/dist/index.d.ts +5 -5
  66. package/dist/index.js +7 -7
  67. package/dist/light.css +2035 -1315
  68. package/dist/light.css.map +1 -1
  69. package/dist/light.min.css +1 -1
  70. package/dist/setupTest.d.ts +2 -0
  71. package/dist/setupTest.js.map +1 -0
  72. package/dist/utils/types/bootstrap.d.ts +39 -0
  73. package/dist/utils/types/bootstrap.js +2 -0
  74. package/dist/utils/types/bootstrap.js.map +1 -0
  75. package/lib/build-tokens.js +67 -31
  76. package/package.json +11 -8
  77. package/src/Annotation/index.scss +16 -0
  78. package/src/Button/{Button.test.jsx → Button.test.tsx} +14 -2
  79. package/src/Button/__snapshots__/{Button.test.jsx.snap → Button.test.tsx.snap} +19 -2
  80. package/src/Button/{index.jsx → index.tsx} +58 -16
  81. package/src/Card/CardDeck.jsx +0 -3
  82. package/src/Card/README.md +0 -31
  83. package/src/Card/index.scss +6 -6
  84. package/src/Carousel/index.scss +24 -1
  85. package/src/Chip/{Chip.test.jsx → Chip.test.tsx} +5 -7
  86. package/src/Chip/ChipIcon.tsx +8 -8
  87. package/src/Chip/{constants.js → constants.ts} +1 -1
  88. package/src/Chip/index.tsx +6 -8
  89. package/src/ChipCarousel/index.tsx +0 -2
  90. package/src/CloseButton/index.scss +8 -0
  91. package/src/ColorPicker/index.scss +1 -1
  92. package/src/DataTable/index.scss +12 -0
  93. package/src/Dropdown/dropdown-bootstrap.scss +6 -0
  94. package/src/Dropzone/index.scss +34 -0
  95. package/src/Form/_FormText.scss +1 -1
  96. package/src/Form/_bootstrap-custom-forms.scss +40 -0
  97. package/src/Form/_index.scss +9 -0
  98. package/src/Form/_mixins.scss +22 -0
  99. package/src/Hyperlink/{Hyperlink.test.jsx → Hyperlink.test.tsx} +21 -10
  100. package/src/Hyperlink/{index.jsx → index.tsx} +41 -37
  101. package/src/Icon/index.d.ts +4 -2
  102. package/src/Icon/index.jsx +1 -1
  103. package/src/IconButton/{IconButton.test.jsx → IconButton.test.tsx} +24 -3
  104. package/src/IconButton/__snapshots__/IconButton.test.tsx.snap +90 -0
  105. package/src/IconButton/index.scss +146 -0
  106. package/src/IconButton/{index.jsx → index.tsx} +66 -26
  107. package/src/Menu/index.scss +8 -0
  108. package/src/Modal/ModalDialog.jsx +7 -3
  109. package/src/Modal/ModalPopup.jsx +9 -1
  110. package/src/Modal/_ModalDialog.scss +26 -2
  111. package/src/Modal/modal-dialog.mdx +95 -6
  112. package/src/Modal/tests/ModalDialog.test.jsx +2 -0
  113. package/src/Modal/tests/ModalPopupNoMock.test.jsx +29 -0
  114. package/src/Nav/index.scss +8 -0
  115. package/src/Overlay/{index.jsx → index.tsx} +13 -8
  116. package/src/PageBanner/index.scss +2 -2
  117. package/src/Pagination/pagination-bootstrap.scss +9 -0
  118. package/src/Popover/index.scss +1 -1
  119. package/src/ProductTour/Checkpoint.scss +1 -1
  120. package/src/ProgressBar/bootstrap-progress.scss +20 -5
  121. package/src/ProgressBar/index.scss +3 -3
  122. package/src/Stepper/index.scss +1 -1
  123. package/src/Sticky/index.scss +12 -0
  124. package/src/Toast/index.scss +13 -1
  125. package/src/Tooltip/index.scss +16 -0
  126. package/src/Tooltip/{index.jsx → index.tsx} +9 -3
  127. package/src/index.d.ts +5 -5
  128. package/src/index.js +7 -7
  129. package/src/{setupTest.js → setupTest.ts} +1 -0
  130. package/src/utils/types/bootstrap.test.tsx +86 -0
  131. package/src/utils/types/bootstrap.ts +43 -0
  132. package/styles/css/core/abstraction-variables.css +44 -0
  133. package/styles/css/core/custom-media-breakpoints.css +3 -4
  134. package/styles/css/core/index.css +2 -1
  135. package/styles/css/core/variables.css +494 -430
  136. package/styles/css/themes/light/abstraction-variables.css +304 -0
  137. package/styles/css/themes/light/index.css +1 -0
  138. package/styles/css/themes/light/utility-classes.css +2 -3
  139. package/styles/css/themes/light/variables.css +1753 -1334
  140. package/styles/scss/core/_typography.scss +16 -4
  141. package/styles/scss/core/_utilities.scss +7 -3
  142. package/styles/scss/core/_variables.scss +43 -30
  143. package/styles/scss/core/core.scss +1 -0
  144. package/tokens/src/core/alias/size.json +6 -5
  145. package/tokens/src/core/components/ActionRow.json +3 -2
  146. package/tokens/src/core/components/Alert.json +12 -10
  147. package/tokens/src/core/components/Annotation.json +9 -7
  148. package/tokens/src/core/components/Avatar.json +9 -9
  149. package/tokens/src/core/components/AvatarButton.json +4 -3
  150. package/tokens/src/core/components/Badge.json +12 -9
  151. package/tokens/src/core/components/Breadcrumb.json +7 -5
  152. package/tokens/src/core/components/Bubble.json +4 -3
  153. package/tokens/src/core/components/Button/core.json +35 -59
  154. package/tokens/src/core/components/Card.json +33 -44
  155. package/tokens/src/core/components/Carousel.json +39 -13
  156. package/tokens/src/core/components/Chip.json +13 -21
  157. package/tokens/src/core/components/ChipCarousel.json +4 -5
  158. package/tokens/src/core/components/CloseButton.json +2 -6
  159. package/tokens/src/core/components/Code.json +9 -8
  160. package/tokens/src/core/components/Collapsible.json +10 -13
  161. package/tokens/src/core/components/ColorPicker.json +3 -2
  162. package/tokens/src/core/components/Container.json +6 -5
  163. package/tokens/src/core/components/DataTable.json +17 -9
  164. package/tokens/src/core/components/Dropdown.json +24 -29
  165. package/tokens/src/core/components/Dropzone.json +5 -7
  166. package/tokens/src/core/components/Form/other.json +5 -4
  167. package/tokens/src/core/components/Form/size.json +72 -119
  168. package/tokens/src/core/components/Form/spacing.json +39 -83
  169. package/tokens/src/core/components/Form/transition.json +43 -7
  170. package/tokens/src/core/components/Form/typography.json +24 -88
  171. package/tokens/src/core/components/Icon.json +6 -5
  172. package/tokens/src/core/components/IconButton.json +4 -7
  173. package/tokens/src/core/components/Image.json +7 -6
  174. package/tokens/src/core/components/Menu.json +14 -12
  175. package/tokens/src/core/components/Modal.json +26 -21
  176. package/tokens/src/core/components/Nav.json +14 -16
  177. package/tokens/src/core/components/Navbar.json +15 -30
  178. package/tokens/src/core/components/Pagination.json +23 -24
  179. package/tokens/src/core/components/Popover.json +18 -14
  180. package/tokens/src/core/components/ProductTour.json +8 -14
  181. package/tokens/src/core/components/ProgressBar.json +29 -14
  182. package/tokens/src/core/components/SearchField.json +7 -9
  183. package/tokens/src/core/components/SelectableBox.json +4 -3
  184. package/tokens/src/core/components/Sheet.json +3 -2
  185. package/tokens/src/core/components/Spinner.json +9 -7
  186. package/tokens/src/core/components/Stack.json +2 -1
  187. package/tokens/src/core/components/Stepper.json +12 -14
  188. package/tokens/src/core/components/Sticky.json +2 -1
  189. package/tokens/src/core/components/Tab.json +8 -7
  190. package/tokens/src/core/components/Tabs.json +5 -5
  191. package/tokens/src/core/components/Toast.json +11 -8
  192. package/tokens/src/core/components/Tooltip.json +13 -11
  193. package/tokens/src/core/components/general/caret.json +5 -3
  194. package/tokens/src/core/components/general/headings.json +5 -4
  195. package/tokens/src/core/components/general/hr.json +3 -2
  196. package/tokens/src/core/components/general/input.json +19 -19
  197. package/tokens/src/core/components/general/link.json +13 -12
  198. package/tokens/src/core/components/general/list.json +9 -6
  199. package/tokens/src/core/components/general/text.json +6 -12
  200. package/tokens/src/core/global/breakpoints.json +25 -6
  201. package/tokens/src/core/global/elevation.json +55 -13
  202. package/tokens/src/core/global/other.json +5 -1
  203. package/tokens/src/core/global/spacing.json +70 -17
  204. package/tokens/src/core/global/transition.json +41 -4
  205. package/tokens/src/core/global/typography.json +248 -53
  206. package/tokens/src/core/utilities/color.json +35 -4
  207. package/tokens/src/themes/light/alias/color.json +276 -75
  208. package/tokens/src/themes/light/components/Alert.json +15 -26
  209. package/tokens/src/themes/light/components/Annotation.json +27 -13
  210. package/tokens/src/themes/light/components/Avatar.json +2 -1
  211. package/tokens/src/themes/light/components/Badge.json +57 -122
  212. package/tokens/src/themes/light/components/Breadcrumb.json +6 -5
  213. package/tokens/src/themes/light/components/Bubble.json +9 -8
  214. package/tokens/src/themes/light/components/Button/brand.json +171 -119
  215. package/tokens/src/themes/light/components/Button/core.json +8 -9
  216. package/tokens/src/themes/light/components/Button/danger.json +171 -112
  217. package/tokens/src/themes/light/components/Button/dark.json +188 -106
  218. package/tokens/src/themes/light/components/Button/info.json +186 -112
  219. package/tokens/src/themes/light/components/Button/light.json +186 -110
  220. package/tokens/src/themes/light/components/Button/primary.json +178 -116
  221. package/tokens/src/themes/light/components/Button/secondary.json +166 -132
  222. package/tokens/src/themes/light/components/Button/success.json +176 -117
  223. package/tokens/src/themes/light/components/Button/tertiary.json +34 -60
  224. package/tokens/src/themes/light/components/Button/warning.json +164 -128
  225. package/tokens/src/themes/light/components/Card.json +10 -21
  226. package/tokens/src/themes/light/components/Carousel.json +12 -11
  227. package/tokens/src/themes/light/components/Chip.json +14 -26
  228. package/tokens/src/themes/light/components/CloseButton.json +12 -2
  229. package/tokens/src/themes/light/components/Code.json +7 -9
  230. package/tokens/src/themes/light/components/DataTable.json +7 -11
  231. package/tokens/src/themes/light/components/Dropdown.json +17 -20
  232. package/tokens/src/themes/light/components/Dropzone.json +49 -11
  233. package/tokens/src/themes/light/components/Form/color.json +101 -155
  234. package/tokens/src/themes/light/components/Form/elevation.json +38 -42
  235. package/tokens/src/themes/light/components/Form/other.json +44 -41
  236. package/tokens/src/themes/light/components/IconButton.json +408 -256
  237. package/tokens/src/themes/light/components/Image.json +7 -4
  238. package/tokens/src/themes/light/components/Menu.json +12 -10
  239. package/tokens/src/themes/light/components/Modal.json +22 -12
  240. package/tokens/src/themes/light/components/Nav.json +82 -94
  241. package/tokens/src/themes/light/components/Navbar.json +32 -76
  242. package/tokens/src/themes/light/components/OverflowScroll.json +3 -1
  243. package/tokens/src/themes/light/components/PageBanner.json +11 -10
  244. package/tokens/src/themes/light/components/Pagination.json +19 -23
  245. package/tokens/src/themes/light/components/Popover.json +22 -27
  246. package/tokens/src/themes/light/components/ProductTour.json +9 -20
  247. package/tokens/src/themes/light/components/ProgressBar.json +12 -10
  248. package/tokens/src/themes/light/components/Scrollable.json +3 -3
  249. package/tokens/src/themes/light/components/SearchField.json +9 -9
  250. package/tokens/src/themes/light/components/Sheet.json +6 -7
  251. package/tokens/src/themes/light/components/Stepper.json +12 -17
  252. package/tokens/src/themes/light/components/Sticky.json +31 -6
  253. package/tokens/src/themes/light/components/Tab.json +47 -24
  254. package/tokens/src/themes/light/components/Toast.json +26 -14
  255. package/tokens/src/themes/light/components/Tooltip.json +25 -10
  256. package/tokens/src/themes/light/components/general/body.json +3 -2
  257. package/tokens/src/themes/light/components/general/headings.json +2 -1
  258. package/tokens/src/themes/light/components/general/hr.json +3 -6
  259. package/tokens/src/themes/light/components/general/input.json +11 -4
  260. package/tokens/src/themes/light/components/general/link.json +34 -43
  261. package/tokens/src/themes/light/components/general/list.json +15 -19
  262. package/tokens/src/themes/light/components/general/text.json +5 -6
  263. package/tokens/src/themes/light/global/color.json +1592 -867
  264. package/tokens/src/themes/light/global/elevation.json +481 -93
  265. package/tokens/style-dictionary.js +342 -144
  266. package/tokens/utils.js +176 -6
  267. package/src/IconButton/__snapshots__/IconButton.test.jsx.snap +0 -20
  268. package/tokens/src/core/global/display.json +0 -22
  269. /package/src/Button/{ButtonGroup.test.jsx → ButtonGroup.test.tsx} +0 -0
  270. /package/src/Button/{ButtonToolbar.test.jsx → ButtonToolbar.test.tsx} +0 -0
  271. /package/src/Button/__snapshots__/{ButtonGroup.test.jsx.snap → ButtonGroup.test.tsx.snap} +0 -0
  272. /package/src/Button/__snapshots__/{ButtonToolbar.test.jsx.snap → ButtonToolbar.test.tsx.snap} +0 -0
  273. /package/src/Chip/__snapshots__/{Chip.test.jsx.snap → Chip.test.tsx.snap} +0 -0
  274. /package/src/Tooltip/{Tooltip.test.jsx → Tooltip.test.tsx} +0 -0
@@ -1,1658 +1,2383 @@
1
1
  {
2
2
  "color": {
3
- "white": { "value": "#FFFFFF", "type": "color", "source": "$white", "description": "White color." },
4
- "black": { "value": "#000000", "type": "color", "source": "$black", "description": "Black color." },
5
- "blue": { "value": "#23419F", "type": "color", "source": "$blue", "description": "Blue color." },
6
- "red": { "value": "#C32D3A", "type": "color", "source": "$red", "description": "Red color." },
7
- "green": { "value": "#178253", "type": "color", "source": "$green", "description": "Green color." },
8
- "yellow": { "value": "#FFD900", "type": "color", "source": "$yellow", "description": "Yellow color." },
9
- "teal": { "value": "#006DAA", "type": "color", "source": "$teal", "description": "Teal color." },
3
+ "$type": "color",
4
+ "white": {
5
+ "source": "$white",
6
+ "$value": "#FFFFFF",
7
+ "$description": "White color."
8
+ },
9
+ "black": {
10
+ "source": "$black",
11
+ "$value": "#000000",
12
+ "$description": "Black color."
13
+ },
14
+ "blue": {
15
+ "source": "$blue",
16
+ "$value": "#23419F",
17
+ "$description": "Blue color."
18
+ },
19
+ "red": {
20
+ "source": "$red",
21
+ "$value": "#C32D3A",
22
+ "$description": "Red color."
23
+ },
24
+ "green": {
25
+ "source": "$green",
26
+ "$value": "#178253",
27
+ "$description": "Green color."
28
+ },
29
+ "yellow": {
30
+ "source": "$yellow",
31
+ "$value": "#FFD900",
32
+ "$description": "Yellow color."
33
+ },
34
+ "teal": {
35
+ "source": "$teal",
36
+ "$value": "#006DAA",
37
+ "$description": "Teal color."
38
+ },
10
39
  "accent": {
11
40
  "a": {
12
- "value": "#00BBF9",
13
- "type": "color",
14
41
  "source": "$accent-a",
15
- "description": "Accent-A color.",
16
42
  "actions": {
17
43
  "default": "{color.action.default.accent.a}"
18
- }
44
+ },
45
+ "$value": "#00BBF9",
46
+ "$description": "Accent-A color."
19
47
  },
20
48
  "b": {
21
- "value": "#FFEE88",
22
- "type": "color",
23
49
  "source": "$accent-b",
24
- "description": "Accent-B color.",
25
50
  "actions": {
26
51
  "default": "{color.action.default.accent.b}"
27
- }
52
+ },
53
+ "$value": "#FFEE88",
54
+ "$description": "Accent-B color."
28
55
  }
29
56
  },
30
57
  "gray": {
31
- "base": {
32
- "value": "#707070",
33
- "type": "color",
34
- "source": "$gray",
35
- "description": "Basic gray color.",
36
- "actions": {
37
- "default": "{color.action.default.gray.base}"
38
- }
39
- },
40
58
  "100": {
41
- "value": "#EBEBEB",
42
- "type": "color",
43
59
  "source": "$gray-100",
44
- "description": "Gray color of level 100.",
45
60
  "actions": {
46
61
  "default": "{color.action.default.gray.100}"
47
- }
62
+ },
63
+ "$value": "#EBEBEB",
64
+ "$description": "Gray color of level 100."
48
65
  },
49
66
  "200": {
50
- "value": "#CCCCCC",
51
- "type": "color",
52
67
  "source": "$gray-200",
53
- "description": "Gray color of level 200.",
54
68
  "actions": {
55
69
  "default": "{color.action.default.gray.200}"
56
- }
70
+ },
71
+ "$value": "#CCCCCC",
72
+ "$description": "Gray color of level 200."
57
73
  },
58
74
  "300": {
59
- "value": "#ADADAD",
60
- "type": "color",
61
75
  "source": "$gray-300",
62
- "description": "Gray color of level 300.",
63
76
  "actions": {
64
77
  "default": "{color.action.default.gray.300}"
65
- }
78
+ },
79
+ "$value": "#ADADAD",
80
+ "$description": "Gray color of level 300."
66
81
  },
67
82
  "400": {
68
- "value": "#8F8F8F",
69
- "type": "color",
70
83
  "source": "$gray-400",
71
- "description": "Gray color of level 400.",
72
84
  "actions": {
73
85
  "default": "{color.action.default.gray.400}"
74
- }
86
+ },
87
+ "$value": "#8F8F8F",
88
+ "$description": "Gray color of level 400."
75
89
  },
76
90
  "500": {
77
- "value": "{color.gray.base}",
78
- "type": "color",
79
91
  "source": "$gray-500",
80
- "description": "Gray color of level 500.",
81
92
  "actions": {
82
93
  "default": "{color.action.default.gray.500}"
83
- }
84
- },
94
+ },
95
+ "$value": "{color.gray.base}",
96
+ "$description": "Gray color of level 500."
97
+ },
85
98
  "600": {
86
- "value": "#5C5C5C",
87
- "type": "color",
88
99
  "source": "$gray-600",
89
- "description": "Gray color of level 600.",
90
100
  "actions": {
91
101
  "default": "{color.action.default.gray.600}"
92
- }
102
+ },
103
+ "$value": "#5C5C5C",
104
+ "$description": "Gray color of level 600."
93
105
  },
94
106
  "700": {
95
- "value": "#454545",
96
- "type": "color",
97
107
  "source": "$gray-700",
98
- "description": "Gray color of level 700.",
99
108
  "actions": {
100
109
  "default": "{color.action.default.gray.700}"
101
- }
110
+ },
111
+ "$value": "#454545",
112
+ "$description": "Gray color of level 700."
102
113
  },
103
114
  "800": {
104
- "value": "#333333",
105
- "type": "color",
106
115
  "source": "$gray-800",
107
- "description": "Gray color of level 800.",
108
116
  "actions": {
109
117
  "default": "{color.action.default.gray.800}"
110
- }
118
+ },
119
+ "$value": "#333333",
120
+ "$description": "Gray color of level 800."
111
121
  },
112
122
  "900": {
113
- "value": "#212529",
114
- "type": "color",
115
123
  "source": "$gray-900",
116
- "description": "Gray color of level 900.",
117
124
  "actions": {
118
125
  "default": "{color.action.default.gray.900}"
119
- }
126
+ },
127
+ "$value": "#212529",
128
+ "$description": "Gray color of level 900."
129
+ },
130
+ "base": {
131
+ "source": "$gray",
132
+ "actions": {
133
+ "default": "{color.action.default.gray.base}"
134
+ },
135
+ "$value": "#707070",
136
+ "$description": "Basic gray color."
120
137
  }
121
138
  },
122
139
  "primary": {
123
- "base": {
124
- "value": "#0A3055",
125
- "type": "color",
126
- "source": "$primary",
127
- "description": "Basic primary color.",
128
- "actions": {
129
- "default": "{color.action.default.primary.base}"
130
- }
131
- },
132
140
  "100": {
133
- "value": "{color.primary.base}",
134
- "type": "color",
135
141
  "source": "$primary-100",
136
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
137
- "description": "Primary color of level 100.",
142
+ "modify": [
143
+ {
144
+ "type": "mix",
145
+ "otherColor": "white",
146
+ "amount": "0.94"
147
+ }
148
+ ],
138
149
  "actions": {
139
150
  "default": "{color.action.default.primary.100}"
140
- }
151
+ },
152
+ "$value": "{color.primary.base}",
153
+ "$description": "Primary color of level 100."
141
154
  },
142
155
  "200": {
143
- "value": "{color.primary.base}",
144
- "type": "color",
145
156
  "source": "$primary-200",
146
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
147
- "description": "Primary color of level 200.",
157
+ "modify": [
158
+ {
159
+ "type": "mix",
160
+ "otherColor": "white",
161
+ "amount": "0.75"
162
+ }
163
+ ],
148
164
  "actions": {
149
165
  "default": "{color.action.default.primary.200}"
150
- }
166
+ },
167
+ "$value": "{color.primary.base}",
168
+ "$description": "Primary color of level 200."
151
169
  },
152
170
  "300": {
153
- "value": "{color.primary.base}",
154
- "type": "color",
155
171
  "source": "$primary-300",
156
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
157
- "description": "Primary color of level 300.",
172
+ "modify": [
173
+ {
174
+ "type": "mix",
175
+ "otherColor": "white",
176
+ "amount": "0.50"
177
+ }
178
+ ],
158
179
  "actions": {
159
180
  "default": "{color.action.default.primary.300}"
160
- }
181
+ },
182
+ "$value": "{color.primary.base}",
183
+ "$description": "Primary color of level 300."
161
184
  },
162
185
  "400": {
163
- "value": "{color.primary.base}",
164
- "type": "color",
165
186
  "source": "$primary-400",
166
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
167
- "description": "Primary color of level 400.",
187
+ "modify": [
188
+ {
189
+ "type": "mix",
190
+ "otherColor": "white",
191
+ "amount": "0.25"
192
+ }
193
+ ],
168
194
  "actions": {
169
195
  "default": "{color.action.default.primary.400}"
170
- }
196
+ },
197
+ "$value": "{color.primary.base}",
198
+ "$description": "Primary color of level 400."
171
199
  },
172
200
  "500": {
173
- "value": "{color.primary.base}",
174
- "type": "color",
175
201
  "source": "$primary-500",
176
- "description": "Primary color of level 500.",
177
202
  "actions": {
178
203
  "default": "{color.action.default.primary.500}"
179
- }
204
+ },
205
+ "$value": "{color.primary.base}",
206
+ "$description": "Primary color of level 500."
180
207
  },
181
208
  "600": {
182
- "value": "{color.primary.base}",
183
- "type": "color",
184
209
  "source": "$primary-600",
185
210
  "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
186
- "description": "Primary color of level 600.",
187
211
  "actions": {
188
212
  "default": "{color.action.default.primary.600}"
189
- }
213
+ },
214
+ "$value": "{color.primary.base}",
215
+ "$description": "Primary color of level 600."
190
216
  },
191
217
  "700": {
192
- "value": "{color.primary.base}",
193
- "type": "color",
194
218
  "source": "$primary-700",
195
219
  "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
196
- "description": "Primary color of level 700.",
197
220
  "actions": {
198
221
  "default": "{color.action.default.primary.700}"
199
- }
222
+ },
223
+ "$value": "{color.primary.base}",
224
+ "$description": "Primary color of level 700."
200
225
  },
201
226
  "800": {
202
- "value": "{color.primary.base}",
203
- "type": "color",
204
227
  "source": "$primary-800",
205
228
  "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
206
- "description": "Primary color of level 800.",
207
229
  "actions": {
208
230
  "default": "{color.action.default.primary.800}"
209
- }
231
+ },
232
+ "$value": "{color.primary.base}",
233
+ "$description": "Primary color of level 800."
210
234
  },
211
235
  "900": {
212
- "value": "{color.primary.base}",
213
- "type": "color",
214
236
  "source": "$primary-900",
215
237
  "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
216
- "description": "Primary color of level 900.",
217
238
  "actions": {
218
239
  "default": "{color.action.default.primary.900}"
219
- }
240
+ },
241
+ "$value": "{color.primary.base}",
242
+ "$description": "Primary color of level 900."
243
+ },
244
+ "base": {
245
+ "source": "$primary",
246
+ "actions": {
247
+ "default": "{color.action.default.primary.base}"
248
+ },
249
+ "$value": "#0A3055",
250
+ "$description": "Basic primary color."
220
251
  }
221
252
  },
222
253
  "secondary": {
223
- "base": {
224
- "value": "{color.gray.700}",
225
- "type": "color",
226
- "source": "$secondary",
227
- "description": "Basic secondary color.",
228
- "actions": {
229
- "default": "{color.action.default.secondary.base}"
230
- }
231
- },
232
254
  "100": {
233
- "value": "{color.secondary.base}",
234
- "type": "color",
235
255
  "source": "$secondary-100",
236
256
  "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
237
- "description": "Secondary color of level 100.",
238
257
  "actions": {
239
258
  "default": "{color.action.default.secondary.100}"
240
- }
259
+ },
260
+ "$value": "{color.secondary.base}",
261
+ "$description": "Secondary color of level 100."
241
262
  },
242
263
  "200": {
243
- "value": "{color.secondary.base}",
244
- "type": "color",
245
264
  "source": "$secondary-200",
246
265
  "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
247
- "description": "Secondary color of level 200.",
248
266
  "actions": {
249
267
  "default": "{color.action.default.secondary.200}"
250
- }
268
+ },
269
+ "$value": "{color.secondary.base}",
270
+ "$description": "Secondary color of level 200."
251
271
  },
252
272
  "300": {
253
- "value": "{color.secondary.base}",
254
- "type": "color",
255
273
  "source": "$secondary-300",
256
274
  "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
257
- "description": "Secondary color of level 300.",
258
275
  "actions": {
259
276
  "default": "{color.action.default.secondary.300}"
260
- }
277
+ },
278
+ "$value": "{color.secondary.base}",
279
+ "$description": "Secondary color of level 300."
261
280
  },
262
281
  "400": {
263
- "value": "{color.secondary.base}",
264
- "type": "color",
265
282
  "source": "$secondary-400",
266
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
267
- "description": "Secondary color of level 400.",
283
+ "modify": [
284
+ {
285
+ "type": "mix",
286
+ "otherColor": "white",
287
+ "amount": "0.25"
288
+ }
289
+ ],
268
290
  "actions": {
269
291
  "default": "{color.action.default.secondary.400}"
270
- }
292
+ },
293
+ "$value": "{color.secondary.base}",
294
+ "$description": "Secondary color of level 400."
271
295
  },
272
296
  "500": {
273
- "value": "{color.secondary.base}",
274
- "type": "color",
275
297
  "source": "$secondary-500",
276
- "description": "Secondary color of level 500.",
277
298
  "actions": {
278
299
  "default": "{color.action.default.secondary.500}"
279
- }
300
+ },
301
+ "$value": "{color.secondary.base}",
302
+ "$description": "Secondary color of level 500."
280
303
  },
281
304
  "600": {
282
- "value": "{color.secondary.base}",
283
- "type": "color",
284
305
  "source": "$secondary-600",
285
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
286
- "description": "Secondary color of level 600.",
306
+ "modify": [
307
+ {
308
+ "type": "mix",
309
+ "otherColor": "black",
310
+ "amount": "0.10"
311
+ }
312
+ ],
287
313
  "actions": {
288
314
  "default": "{color.action.default.secondary.600}"
289
- }
315
+ },
316
+ "$value": "{color.secondary.base}",
317
+ "$description": "Secondary color of level 600."
290
318
  },
291
319
  "700": {
292
- "value": "{color.secondary.base}",
293
- "type": "color",
294
320
  "source": "$secondary-700",
295
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
296
- "description": "Secondary color of level 700.",
321
+ "modify": [
322
+ {
323
+ "type": "mix",
324
+ "otherColor": "black",
325
+ "amount": "0.20"
326
+ }
327
+ ],
297
328
  "actions": {
298
329
  "default": "{color.action.default.secondary.700}"
299
- }
330
+ },
331
+ "$value": "{color.secondary.base}",
332
+ "$description": "Secondary color of level 700."
300
333
  },
301
334
  "800": {
302
- "value": "{color.secondary.base}",
303
- "type": "color",
304
335
  "source": "$secondary-800",
305
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
306
- "description": "Secondary color of level 800.",
336
+ "modify": [
337
+ {
338
+ "type": "mix",
339
+ "otherColor": "black",
340
+ "amount": "0.25"
341
+ }
342
+ ],
307
343
  "actions": {
308
344
  "default": "{color.action.default.secondary.800}"
309
- }
345
+ },
346
+ "$value": "{color.secondary.base}",
347
+ "$description": "Secondary color of level 800."
310
348
  },
311
349
  "900": {
312
- "value": "{color.secondary.base}",
313
- "type": "color",
314
350
  "source": "$secondary-900",
315
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
316
- "description": "Secondary color of level 900.",
351
+ "modify": [
352
+ {
353
+ "type": "mix",
354
+ "otherColor": "black",
355
+ "amount": "0.30"
356
+ }
357
+ ],
317
358
  "actions": {
318
359
  "default": "{color.action.default.secondary.900}"
319
- }
360
+ },
361
+ "$value": "{color.secondary.base}",
362
+ "$description": "Secondary color of level 900."
363
+ },
364
+ "base": {
365
+ "source": "$secondary",
366
+ "actions": {
367
+ "default": "{color.action.default.secondary.base}"
368
+ },
369
+ "$value": "{color.gray.700}",
370
+ "$description": "Basic secondary color."
320
371
  }
321
372
  },
322
373
  "brand": {
323
- "base": {
324
- "value": "#9D0054",
325
- "type": "color",
326
- "source": "$brand",
327
- "description": "Basic brand color.",
328
- "actions": {
329
- "default": "{color.action.default.brand.base}"
330
- }
331
- },
332
374
  "100": {
333
- "value": "{color.brand.base}",
334
- "type": "color",
335
375
  "source": "$brand-100",
336
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
337
- "description": "Brand color of level 100.",
376
+ "modify": [
377
+ {
378
+ "type": "mix",
379
+ "otherColor": "white",
380
+ "amount": "0.94"
381
+ }
382
+ ],
338
383
  "actions": {
339
384
  "default": "{color.action.default.brand.100}"
340
- }
385
+ },
386
+ "$value": "{color.brand.base}",
387
+ "$description": "Brand color of level 100."
341
388
  },
342
389
  "200": {
343
- "value": "{color.brand.base}",
344
- "type": "color",
345
390
  "source": "$brand-200",
346
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
347
- "description": "Brand color of level 200.",
391
+ "modify": [
392
+ {
393
+ "type": "mix",
394
+ "otherColor": "white",
395
+ "amount": "0.75"
396
+ }
397
+ ],
348
398
  "actions": {
349
399
  "default": "{color.action.default.brand.200}"
350
- }
400
+ },
401
+ "$value": "{color.brand.base}",
402
+ "$description": "Brand color of level 200."
351
403
  },
352
404
  "300": {
353
- "value": "{color.brand.base}",
354
- "type": "color",
355
405
  "source": "$brand-300",
356
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
357
- "description": "Brand color of level 300.",
406
+ "modify": [
407
+ {
408
+ "type": "mix",
409
+ "otherColor": "white",
410
+ "amount": "0.50"
411
+ }
412
+ ],
358
413
  "actions": {
359
414
  "default": "{color.action.default.brand.300}"
360
- }
415
+ },
416
+ "$value": "{color.brand.base}",
417
+ "$description": "Brand color of level 300."
361
418
  },
362
419
  "400": {
363
- "value": "{color.brand.base}",
364
- "type": "color",
365
420
  "source": "$brand-400",
366
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
367
- "description": "Brand color of level 400.",
421
+ "modify": [
422
+ {
423
+ "type": "mix",
424
+ "otherColor": "white",
425
+ "amount": "0.25"
426
+ }
427
+ ],
368
428
  "actions": {
369
429
  "default": "{color.action.default.brand.400}"
370
- }
430
+ },
431
+ "$value": "{color.brand.base}",
432
+ "$description": "Brand color of level 400."
371
433
  },
372
434
  "500": {
373
- "value": "{color.brand.base}",
374
- "type": "color",
375
435
  "source": "$brand-500",
376
- "description": "Brand color of level 500.",
377
436
  "actions": {
378
437
  "default": "{color.action.default.brand.500}"
379
- }
438
+ },
439
+ "$value": "{color.brand.base}",
440
+ "$description": "Brand color of level 500."
380
441
  },
381
442
  "600": {
382
- "value": "{color.brand.base}",
383
- "type": "color",
384
443
  "source": "$brand-600",
385
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
386
- "description": "Brand color of level 600.",
444
+ "modify": [
445
+ {
446
+ "type": "mix",
447
+ "otherColor": "black",
448
+ "amount": "0.10"
449
+ }
450
+ ],
387
451
  "actions": {
388
452
  "default": "{color.action.default.brand.600}"
389
- }
453
+ },
454
+ "$value": "{color.brand.base}",
455
+ "$description": "Brand color of level 600."
390
456
  },
391
457
  "700": {
392
- "value": "{color.brand.base}",
393
- "type": "color",
394
458
  "source": "$brand-700",
395
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
396
- "description": "Brand color of level 700.",
459
+ "modify": [
460
+ {
461
+ "type": "mix",
462
+ "otherColor": "black",
463
+ "amount": "0.20"
464
+ }
465
+ ],
397
466
  "actions": {
398
467
  "default": "{color.action.default.brand.700}"
399
- }
468
+ },
469
+ "$value": "{color.brand.base}",
470
+ "$description": "Brand color of level 700."
400
471
  },
401
472
  "800": {
402
- "value": "{color.brand.base}",
403
- "type": "color",
404
473
  "source": "$brand-800",
405
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
406
- "description": "Brand color of level 800.",
474
+ "modify": [
475
+ {
476
+ "type": "mix",
477
+ "otherColor": "black",
478
+ "amount": "0.25"
479
+ }
480
+ ],
407
481
  "actions": {
408
482
  "default": "{color.action.default.brand.800}"
409
- }
483
+ },
484
+ "$value": "{color.brand.base}",
485
+ "$description": "Brand color of level 800."
410
486
  },
411
487
  "900": {
412
- "value": "{color.brand.base}",
413
- "type": "color",
414
488
  "source": "$brand-900",
415
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
416
- "description": "Brand color of level 900.",
489
+ "modify": [
490
+ {
491
+ "type": "mix",
492
+ "otherColor": "black",
493
+ "amount": "0.30"
494
+ }
495
+ ],
417
496
  "actions": {
418
497
  "default": "{color.action.default.brand.900}"
419
- }
498
+ },
499
+ "$value": "{color.brand.base}",
500
+ "$description": "Brand color of level 900."
501
+ },
502
+ "base": {
503
+ "source": "$brand",
504
+ "actions": {
505
+ "default": "{color.action.default.brand.base}"
506
+ },
507
+ "$value": "#9D0054",
508
+ "$description": "Basic brand color."
420
509
  }
421
510
  },
422
511
  "success": {
423
- "base": {
424
- "value": "{color.green}",
425
- "type": "color",
426
- "source": "$success",
427
- "description": "Basic success color.",
428
- "actions": {
429
- "default": "{color.action.default.success.base}"
430
- }
431
- },
432
512
  "100": {
433
- "value": "{color.success.base}",
434
- "type": "color",
435
513
  "source": "$success-100",
436
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
437
- "description": "Success color of level 100.",
514
+ "modify": [
515
+ {
516
+ "type": "mix",
517
+ "otherColor": "white",
518
+ "amount": "0.94"
519
+ }
520
+ ],
438
521
  "actions": {
439
522
  "default": "{color.action.default.success.100}"
440
- }
523
+ },
524
+ "$value": "{color.success.base}",
525
+ "$description": "Success color of level 100."
441
526
  },
442
527
  "200": {
443
- "value": "{color.success.base}",
444
- "type": "color",
445
528
  "source": "$success-200",
446
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
447
- "description": "Success color of level 200.",
529
+ "modify": [
530
+ {
531
+ "type": "mix",
532
+ "otherColor": "white",
533
+ "amount": "0.75"
534
+ }
535
+ ],
448
536
  "actions": {
449
537
  "default": "{color.action.default.success.200}"
450
- }
538
+ },
539
+ "$value": "{color.success.base}",
540
+ "$description": "Success color of level 200."
451
541
  },
452
542
  "300": {
453
- "value": "{color.success.base}",
454
- "type": "color",
455
543
  "source": "$success-300",
456
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
457
- "description": "Success color of level 300.",
544
+ "modify": [
545
+ {
546
+ "type": "mix",
547
+ "otherColor": "white",
548
+ "amount": "0.50"
549
+ }
550
+ ],
458
551
  "actions": {
459
552
  "default": "{color.action.default.success.300}"
460
- }
553
+ },
554
+ "$value": "{color.success.base}",
555
+ "$description": "Success color of level 300."
461
556
  },
462
557
  "400": {
463
- "value": "{color.success.base}",
464
- "type": "color",
465
558
  "source": "$success-400",
466
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
467
- "description": "Success color of level 400.",
559
+ "modify": [
560
+ {
561
+ "type": "mix",
562
+ "otherColor": "white",
563
+ "amount": "0.25"
564
+ }
565
+ ],
468
566
  "actions": {
469
567
  "default": "{color.action.default.success.400}"
470
- }
568
+ },
569
+ "$value": "{color.success.base}",
570
+ "$description": "Success color of level 400."
471
571
  },
472
572
  "500": {
473
- "value": "{color.success.base}",
474
- "type": "color",
475
573
  "source": "$success-500",
476
- "description": "Success color of level 500.",
477
574
  "actions": {
478
575
  "default": "{color.action.default.success.500}"
479
- }
576
+ },
577
+ "$value": "{color.success.base}",
578
+ "$description": "Success color of level 500."
480
579
  },
481
580
  "600": {
482
- "value": "{color.success.base}",
483
- "type": "color",
484
581
  "source": "$success-600",
485
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
486
- "description": "Success color of level 600.",
582
+ "modify": [
583
+ {
584
+ "type": "mix",
585
+ "otherColor": "black",
586
+ "amount": "0.10"
587
+ }
588
+ ],
487
589
  "actions": {
488
590
  "default": "{color.action.default.success.600}"
489
- }
591
+ },
592
+ "$value": "{color.success.base}",
593
+ "$description": "Success color of level 600."
490
594
  },
491
595
  "700": {
492
- "value": "{color.success.base}",
493
- "type": "color",
494
596
  "source": "$success-700",
495
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
496
- "description": "Success color of level 700.",
597
+ "modify": [
598
+ {
599
+ "type": "mix",
600
+ "otherColor": "black",
601
+ "amount": "0.20"
602
+ }
603
+ ],
497
604
  "actions": {
498
605
  "default": "{color.action.default.success.700}"
499
- }
606
+ },
607
+ "$value": "{color.success.base}",
608
+ "$description": "Success color of level 700."
500
609
  },
501
610
  "800": {
502
- "value": "{color.success.base}",
503
- "type": "color",
504
611
  "source": "$success-800",
505
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
506
- "description": "Success color of level 800.",
612
+ "modify": [
613
+ {
614
+ "type": "mix",
615
+ "otherColor": "black",
616
+ "amount": "0.25"
617
+ }
618
+ ],
507
619
  "actions": {
508
620
  "default": "{color.action.default.success.800}"
509
- }
621
+ },
622
+ "$value": "{color.success.base}",
623
+ "$description": "Success color of level 800."
510
624
  },
511
625
  "900": {
512
- "value": "{color.success.base}",
513
- "type": "color",
514
626
  "source": "$success-900",
515
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
516
- "description": "Success color of level 900.",
627
+ "modify": [
628
+ {
629
+ "type": "mix",
630
+ "otherColor": "black",
631
+ "amount": "0.30"
632
+ }
633
+ ],
517
634
  "actions": {
518
635
  "default": "{color.action.default.success.900}"
519
- }
636
+ },
637
+ "$value": "{color.success.base}",
638
+ "$description": "Success color of level 900."
639
+ },
640
+ "base": {
641
+ "source": "$success",
642
+ "actions": {
643
+ "default": "{color.action.default.success.base}"
644
+ },
645
+ "$value": "{color.green}",
646
+ "$description": "Basic success color."
520
647
  }
521
648
  },
522
649
  "info": {
523
- "base": {
524
- "value": "{color.teal}",
525
- "type": "color",
526
- "source": "$info",
527
- "description": "Basic info color.",
528
- "actions": {
529
- "default": "{color.action.default.info.base}"
530
- }
531
- },
532
650
  "100": {
533
- "value": "{color.info.base}",
534
- "type": "color",
535
651
  "source": "$info-100",
536
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
537
- "description": "Info color of level 100.",
652
+ "modify": [
653
+ {
654
+ "type": "mix",
655
+ "otherColor": "white",
656
+ "amount": "0.94"
657
+ }
658
+ ],
538
659
  "actions": {
539
660
  "default": "{color.action.default.info.100}"
540
- }
661
+ },
662
+ "$value": "{color.info.base}",
663
+ "$description": "Info color of level 100."
541
664
  },
542
665
  "200": {
543
- "value": "{color.info.base}",
544
- "type": "color",
545
666
  "source": "$info-200",
546
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
547
- "description": "Info color of level 200.",
667
+ "modify": [
668
+ {
669
+ "type": "mix",
670
+ "otherColor": "white",
671
+ "amount": "0.75"
672
+ }
673
+ ],
548
674
  "actions": {
549
675
  "default": "{color.action.default.info.200}"
550
- }
676
+ },
677
+ "$value": "{color.info.base}",
678
+ "$description": "Info color of level 200."
551
679
  },
552
680
  "300": {
553
- "value": "{color.info.base}",
554
- "type": "color",
555
681
  "source": "$info-300",
556
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
557
- "description": "Info color of level 300.",
682
+ "modify": [
683
+ {
684
+ "type": "mix",
685
+ "otherColor": "white",
686
+ "amount": "0.50"
687
+ }
688
+ ],
558
689
  "actions": {
559
690
  "default": "{color.action.default.info.300}"
560
- }
691
+ },
692
+ "$value": "{color.info.base}",
693
+ "$description": "Info color of level 300."
561
694
  },
562
695
  "400": {
563
- "value": "{color.info.base}",
564
- "type": "color",
565
696
  "source": "$info-400",
566
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
567
- "description": "Info color of level 400.",
697
+ "modify": [
698
+ {
699
+ "type": "mix",
700
+ "otherColor": "white",
701
+ "amount": "0.25"
702
+ }
703
+ ],
568
704
  "actions": {
569
705
  "default": "{color.action.default.info.400}"
570
- }
706
+ },
707
+ "$value": "{color.info.base}",
708
+ "$description": "Info color of level 400."
571
709
  },
572
710
  "500": {
573
- "value": "{color.info.base}",
574
- "type": "color",
575
711
  "source": "$info-500",
576
- "description": "Info color of level 500.",
577
712
  "actions": {
578
713
  "default": "{color.action.default.info.500}"
579
- }
714
+ },
715
+ "$value": "{color.info.base}",
716
+ "$description": "Info color of level 500."
580
717
  },
581
718
  "600": {
582
- "value": "{color.info.base}",
583
- "type": "color",
584
719
  "source": "$info-600",
585
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
586
- "description": "Info color of level 600.",
720
+ "modify": [
721
+ {
722
+ "type": "mix",
723
+ "otherColor": "black",
724
+ "amount": "0.10"
725
+ }
726
+ ],
587
727
  "actions": {
588
728
  "default": "{color.action.default.info.600}"
589
- }
729
+ },
730
+ "$value": "{color.info.base}",
731
+ "$description": "Info color of level 600."
590
732
  },
591
733
  "700": {
592
- "value": "{color.info.base}",
593
- "type": "color",
594
734
  "source": "$info-700",
595
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
596
- "description": "Info color of level 700.",
735
+ "modify": [
736
+ {
737
+ "type": "mix",
738
+ "otherColor": "black",
739
+ "amount": "0.20"
740
+ }
741
+ ],
597
742
  "actions": {
598
743
  "default": "{color.action.default.info.700}"
599
- }
744
+ },
745
+ "$value": "{color.info.base}",
746
+ "$description": "Info color of level 700."
600
747
  },
601
748
  "800": {
602
- "value": "{color.info.base}",
603
- "type": "color",
604
749
  "source": "$info-800",
605
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
606
- "description": "Info color of level 800.",
750
+ "modify": [
751
+ {
752
+ "type": "mix",
753
+ "otherColor": "black",
754
+ "amount": "0.25"
755
+ }
756
+ ],
607
757
  "actions": {
608
758
  "default": "{color.action.default.info.800}"
609
- }
759
+ },
760
+ "$value": "{color.info.base}",
761
+ "$description": "Info color of level 800."
610
762
  },
611
763
  "900": {
612
- "value": "{color.info.base}",
613
- "type": "color",
614
764
  "source": "$info-900",
615
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
616
- "description": "Info color of level 900.",
765
+ "modify": [
766
+ {
767
+ "type": "mix",
768
+ "otherColor": "black",
769
+ "amount": "0.30"
770
+ }
771
+ ],
617
772
  "actions": {
618
773
  "default": "{color.action.default.info.900}"
619
- }
774
+ },
775
+ "$value": "{color.info.base}",
776
+ "$description": "Info color of level 900."
777
+ },
778
+ "base": {
779
+ "source": "$info",
780
+ "actions": {
781
+ "default": "{color.action.default.info.base}"
782
+ },
783
+ "$value": "{color.teal}",
784
+ "$description": "Basic info color."
620
785
  }
621
786
  },
622
787
  "warning": {
623
- "base": {
624
- "value": "{color.yellow}",
625
- "type": "color",
626
- "source": "$warning",
627
- "description": "Basic warning color.",
628
- "actions": {
629
- "default": "{color.action.default.warning.base}"
630
- }
631
- },
632
788
  "100": {
633
- "value": "{color.warning.base}",
634
- "type": "color",
635
789
  "source": "$warning-100",
636
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
637
- "description": "Warning color of level 100.",
790
+ "modify": [
791
+ {
792
+ "type": "mix",
793
+ "otherColor": "white",
794
+ "amount": "0.94"
795
+ }
796
+ ],
638
797
  "actions": {
639
798
  "default": "{color.action.default.warning.100}"
640
- }
799
+ },
800
+ "$value": "{color.warning.base}",
801
+ "$description": "Warning color of level 100."
641
802
  },
642
803
  "200": {
643
- "value": "{color.warning.base}",
644
- "type": "color",
645
804
  "source": "$warning-200",
646
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
647
- "description": "Warning color of level 200.",
805
+ "modify": [
806
+ {
807
+ "type": "mix",
808
+ "otherColor": "white",
809
+ "amount": "0.75"
810
+ }
811
+ ],
648
812
  "actions": {
649
813
  "default": "{color.action.default.warning.200}"
650
- }
814
+ },
815
+ "$value": "{color.warning.base}",
816
+ "$description": "Warning color of level 200."
651
817
  },
652
818
  "300": {
653
- "value": "{color.warning.base}",
654
- "type": "color",
655
819
  "source": "$warning-300",
656
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
657
- "description": "Warning color of level 300.",
820
+ "modify": [
821
+ {
822
+ "type": "mix",
823
+ "otherColor": "white",
824
+ "amount": "0.50"
825
+ }
826
+ ],
658
827
  "actions": {
659
828
  "default": "{color.action.default.warning.300}"
660
- }
829
+ },
830
+ "$value": "{color.warning.base}",
831
+ "$description": "Warning color of level 300."
661
832
  },
662
833
  "400": {
663
- "value": "{color.warning.base}",
664
- "type": "color",
665
834
  "source": "$warning-400",
666
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
667
- "description": "Warning color of level 400.",
835
+ "modify": [
836
+ {
837
+ "type": "mix",
838
+ "otherColor": "white",
839
+ "amount": "0.25"
840
+ }
841
+ ],
668
842
  "actions": {
669
843
  "default": "{color.action.default.warning.400}"
670
- }
844
+ },
845
+ "$value": "{color.warning.base}",
846
+ "$description": "Warning color of level 400."
671
847
  },
672
848
  "500": {
673
- "value": "{color.warning.base}",
674
- "type": "color",
675
849
  "source": "$warning-500",
676
- "description": "Warning color of level 500.",
677
850
  "actions": {
678
851
  "default": "{color.action.default.warning.500}"
679
- }
852
+ },
853
+ "$value": "{color.warning.base}",
854
+ "$description": "Warning color of level 500."
680
855
  },
681
856
  "600": {
682
- "value": "{color.warning.base}",
683
- "type": "color",
684
857
  "source": "$warning-600",
685
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
686
- "description": "Warning color of level 600.",
858
+ "modify": [
859
+ {
860
+ "type": "mix",
861
+ "otherColor": "black",
862
+ "amount": "0.10"
863
+ }
864
+ ],
687
865
  "actions": {
688
866
  "default": "{color.action.default.warning.600}"
689
- }
867
+ },
868
+ "$value": "{color.warning.base}",
869
+ "$description": "Warning color of level 600."
690
870
  },
691
871
  "700": {
692
- "value": "{color.warning.base}",
693
- "type": "color",
694
872
  "source": "$warning-700",
695
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
696
- "description": "Warning color of level 700.",
873
+ "modify": [
874
+ {
875
+ "type": "mix",
876
+ "otherColor": "black",
877
+ "amount": "0.20"
878
+ }
879
+ ],
697
880
  "actions": {
698
881
  "default": "{color.action.default.warning.700}"
699
- }
882
+ },
883
+ "$value": "{color.warning.base}",
884
+ "$description": "Warning color of level 700."
700
885
  },
701
886
  "800": {
702
- "value": "{color.warning.base}",
703
- "type": "color",
704
887
  "source": "$warning-800",
705
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
706
- "description": "Warning color of level 800.",
888
+ "modify": [
889
+ {
890
+ "type": "mix",
891
+ "otherColor": "black",
892
+ "amount": "0.25"
893
+ }
894
+ ],
707
895
  "actions": {
708
896
  "default": "{color.action.default.warning.800}"
709
- }
897
+ },
898
+ "$value": "{color.warning.base}",
899
+ "$description": "Warning color of level 800."
710
900
  },
711
901
  "900": {
712
- "value": "{color.warning.base}",
713
- "type": "color",
714
902
  "source": "$warning-900",
715
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
716
- "description": "Warning color of level 900.",
903
+ "modify": [
904
+ {
905
+ "type": "mix",
906
+ "otherColor": "black",
907
+ "amount": "0.30"
908
+ }
909
+ ],
717
910
  "actions": {
718
911
  "default": "{color.action.default.warning.900}"
719
- }
912
+ },
913
+ "$value": "{color.warning.base}",
914
+ "$description": "Warning color of level 900."
915
+ },
916
+ "base": {
917
+ "source": "$warning",
918
+ "actions": {
919
+ "default": "{color.action.default.warning.base}"
920
+ },
921
+ "$value": "{color.yellow}",
922
+ "$description": "Basic warning color."
720
923
  }
721
924
  },
722
925
  "danger": {
723
- "base": {
724
- "value": "{color.red}",
725
- "type": "color",
726
- "source": "$danger",
727
- "description": "Basic danger color.",
728
- "actions": {
729
- "default": "{color.action.default.danger.base}"
730
- }
731
- },
732
926
  "100": {
733
- "value": "{color.danger.base}",
734
- "type": "color",
735
927
  "source": "$danger-100",
736
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
737
- "description": "Danger color of level 100.",
928
+ "modify": [
929
+ {
930
+ "type": "mix",
931
+ "otherColor": "white",
932
+ "amount": "0.94"
933
+ }
934
+ ],
738
935
  "actions": {
739
936
  "default": "{color.action.default.danger.100}"
740
- }
937
+ },
938
+ "$value": "{color.danger.base}",
939
+ "$description": "Danger color of level 100."
741
940
  },
742
941
  "200": {
743
- "value": "{color.danger.base}",
744
- "type": "color",
745
942
  "source": "$danger-200",
746
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
747
- "description": "Danger color of level 200.",
943
+ "modify": [
944
+ {
945
+ "type": "mix",
946
+ "otherColor": "white",
947
+ "amount": "0.75"
948
+ }
949
+ ],
748
950
  "actions": {
749
951
  "default": "{color.action.default.danger.200}"
750
- }
952
+ },
953
+ "$value": "{color.danger.base}",
954
+ "$description": "Danger color of level 200."
751
955
  },
752
956
  "300": {
753
- "value": "{color.danger.base}",
754
- "type": "color",
755
957
  "source": "$danger-300",
756
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
757
- "description": "Danger color of level 300.",
958
+ "modify": [
959
+ {
960
+ "type": "mix",
961
+ "otherColor": "white",
962
+ "amount": "0.50"
963
+ }
964
+ ],
758
965
  "actions": {
759
966
  "default": "{color.action.default.danger.300}"
760
- }
967
+ },
968
+ "$value": "{color.danger.base}",
969
+ "$description": "Danger color of level 300."
761
970
  },
762
971
  "400": {
763
- "value": "{color.danger.base}",
764
- "type": "color",
765
972
  "source": "$danger-400",
766
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
767
- "description": "Danger color of level 400.",
973
+ "modify": [
974
+ {
975
+ "type": "mix",
976
+ "otherColor": "white",
977
+ "amount": "0.25"
978
+ }
979
+ ],
768
980
  "actions": {
769
981
  "default": "{color.action.default.danger.400}"
770
- }
982
+ },
983
+ "$value": "{color.danger.base}",
984
+ "$description": "Danger color of level 400."
771
985
  },
772
986
  "500": {
773
- "value": "{color.danger.base}",
774
- "type": "color",
775
987
  "source": "$danger-500",
776
- "description": "Danger color of level 500.",
777
988
  "actions": {
778
989
  "default": "{color.action.default.danger.500}"
779
- }
990
+ },
991
+ "$value": "{color.danger.base}",
992
+ "$description": "Danger color of level 500."
780
993
  },
781
994
  "600": {
782
- "value": "{color.danger.base}",
783
- "type": "color",
784
995
  "source": "$danger-600",
785
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
786
- "description": "Danger color of level 600.",
996
+ "modify": [
997
+ {
998
+ "type": "mix",
999
+ "otherColor": "black",
1000
+ "amount": "0.10"
1001
+ }
1002
+ ],
787
1003
  "actions": {
788
1004
  "default": "{color.action.default.danger.600}"
789
- }
1005
+ },
1006
+ "$value": "{color.danger.base}",
1007
+ "$description": "Danger color of level 600."
790
1008
  },
791
1009
  "700": {
792
- "value": "{color.danger.base}",
793
- "type": "color",
794
1010
  "source": "$danger-700",
795
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
796
- "description": "Danger color of level 700.",
1011
+ "modify": [
1012
+ {
1013
+ "type": "mix",
1014
+ "otherColor": "black",
1015
+ "amount": "0.20"
1016
+ }
1017
+ ],
797
1018
  "actions": {
798
1019
  "default": "{color.action.default.danger.700}"
799
- }
1020
+ },
1021
+ "$value": "{color.danger.base}",
1022
+ "$description": "Danger color of level 700."
800
1023
  },
801
1024
  "800": {
802
- "value": "{color.danger.base}",
803
- "type": "color",
804
1025
  "source": "$danger-800",
805
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
806
- "description": "Danger color of level 800.",
1026
+ "modify": [
1027
+ {
1028
+ "type": "mix",
1029
+ "otherColor": "black",
1030
+ "amount": "0.25"
1031
+ }
1032
+ ],
807
1033
  "actions": {
808
1034
  "default": "{color.action.default.danger.800}"
809
- }
1035
+ },
1036
+ "$value": "{color.danger.base}",
1037
+ "$description": "Danger color of level 800."
810
1038
  },
811
1039
  "900": {
812
- "value": "{color.danger.base}",
813
- "type": "color",
814
1040
  "source": "$danger-900",
815
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
816
- "description": "Danger color of level 900.",
1041
+ "modify": [
1042
+ {
1043
+ "type": "mix",
1044
+ "otherColor": "black",
1045
+ "amount": "0.30"
1046
+ }
1047
+ ],
817
1048
  "actions": {
818
1049
  "default": "{color.action.default.danger.900}"
819
- }
1050
+ },
1051
+ "$value": "{color.danger.base}",
1052
+ "$description": "Danger color of level 900."
1053
+ },
1054
+ "base": {
1055
+ "source": "$danger",
1056
+ "actions": {
1057
+ "default": "{color.action.default.danger.base}"
1058
+ },
1059
+ "$value": "{color.red}",
1060
+ "$description": "Basic danger color."
820
1061
  }
821
1062
  },
822
1063
  "light": {
823
- "base": {
824
- "value": "#E1DDDB",
825
- "type": "color",
826
- "source": "$light",
827
- "description": "Basic light color.",
828
- "actions": {
829
- "default": "{color.action.default.light.base}"
830
- }
831
- },
832
1064
  "100": {
833
- "value": "{color.light.base}",
834
- "type": "color",
835
1065
  "source": "$light-100",
836
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
837
- "description": "Light color of level 100.",
1066
+ "modify": [
1067
+ {
1068
+ "type": "mix",
1069
+ "otherColor": "white",
1070
+ "amount": "0.94"
1071
+ }
1072
+ ],
838
1073
  "actions": {
839
1074
  "default": "{color.action.default.light.100}"
840
- }
1075
+ },
1076
+ "$value": "{color.light.base}",
1077
+ "$description": "Light color of level 100."
841
1078
  },
842
1079
  "200": {
843
- "value": "{color.light.base}",
844
- "type": "color",
845
1080
  "source": "$light-200",
846
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
847
- "description": "Light color of level 200.",
1081
+ "modify": [
1082
+ {
1083
+ "type": "mix",
1084
+ "otherColor": "white",
1085
+ "amount": "0.75"
1086
+ }
1087
+ ],
848
1088
  "actions": {
849
1089
  "default": "{color.action.default.light.200}"
850
- }
1090
+ },
1091
+ "$value": "{color.light.base}",
1092
+ "$description": "Light color of level 200."
851
1093
  },
852
1094
  "300": {
853
- "value": "{color.light.base}",
854
- "type": "color",
855
1095
  "source": "$light-300",
856
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
857
- "description": "Light color of level 300.",
1096
+ "modify": [
1097
+ {
1098
+ "type": "mix",
1099
+ "otherColor": "white",
1100
+ "amount": "0.50"
1101
+ }
1102
+ ],
858
1103
  "actions": {
859
1104
  "default": "{color.action.default.light.300}"
860
- }
1105
+ },
1106
+ "$value": "{color.light.base}",
1107
+ "$description": "Light color of level 300."
861
1108
  },
862
1109
  "400": {
863
- "value": "{color.light.base}",
864
- "type": "color",
865
1110
  "source": "$light-400",
866
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
867
- "description": "Light color of level 400.",
1111
+ "modify": [
1112
+ {
1113
+ "type": "mix",
1114
+ "otherColor": "white",
1115
+ "amount": "0.25"
1116
+ }
1117
+ ],
868
1118
  "actions": {
869
1119
  "default": "{color.action.default.light.400}"
870
- }
1120
+ },
1121
+ "$value": "{color.light.base}",
1122
+ "$description": "Light color of level 400."
871
1123
  },
872
1124
  "500": {
873
- "value": "{color.light.base}",
874
- "type": "color",
875
1125
  "source": "$light-500",
876
- "description": "Light color of level 500.",
877
1126
  "actions": {
878
1127
  "default": "{color.action.default.light.500}"
879
- }
1128
+ },
1129
+ "$value": "{color.light.base}",
1130
+ "$description": "Light color of level 500."
880
1131
  },
881
1132
  "600": {
882
- "value": "{color.light.base}",
883
- "type": "color",
884
1133
  "source": "$light-600",
885
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
886
- "description": "Light color of level 600.",
1134
+ "modify": [
1135
+ {
1136
+ "type": "mix",
1137
+ "otherColor": "black",
1138
+ "amount": "0.10"
1139
+ }
1140
+ ],
887
1141
  "actions": {
888
1142
  "default": "{color.action.default.light.600}"
889
- }
1143
+ },
1144
+ "$value": "{color.light.base}",
1145
+ "$description": "Light color of level 600."
890
1146
  },
891
1147
  "700": {
892
- "value": "{color.light.base}",
893
- "type": "color",
894
1148
  "source": "$light-700",
895
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
896
- "description": "Light color of level 700.",
1149
+ "modify": [
1150
+ {
1151
+ "type": "mix",
1152
+ "otherColor": "black",
1153
+ "amount": "0.20"
1154
+ }
1155
+ ],
897
1156
  "actions": {
898
1157
  "default": "{color.action.default.light.700}"
899
- }
1158
+ },
1159
+ "$value": "{color.light.base}",
1160
+ "$description": "Light color of level 700."
900
1161
  },
901
1162
  "800": {
902
- "value": "{color.light.base}",
903
- "type": "color",
904
1163
  "source": "$light-800",
905
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
906
- "description": "Light color of level 800.",
1164
+ "modify": [
1165
+ {
1166
+ "type": "mix",
1167
+ "otherColor": "black",
1168
+ "amount": "0.25"
1169
+ }
1170
+ ],
907
1171
  "actions": {
908
1172
  "default": "{color.action.default.light.800}"
909
- }
1173
+ },
1174
+ "$value": "{color.light.base}",
1175
+ "$description": "Light color of level 800."
910
1176
  },
911
1177
  "900": {
912
- "value": "{color.light.base}",
913
- "type": "color",
914
1178
  "source": "$light-900",
915
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
916
- "description": "Light color of level 900.",
1179
+ "modify": [
1180
+ {
1181
+ "type": "mix",
1182
+ "otherColor": "black",
1183
+ "amount": "0.30"
1184
+ }
1185
+ ],
917
1186
  "actions": {
918
1187
  "default": "{color.action.default.light.900}"
919
- }
1188
+ },
1189
+ "$value": "{color.light.base}",
1190
+ "$description": "Light color of level 900."
1191
+ },
1192
+ "base": {
1193
+ "source": "$light",
1194
+ "actions": {
1195
+ "default": "{color.action.default.light.base}"
1196
+ },
1197
+ "$value": "#E1DDDB",
1198
+ "$description": "Basic light color."
920
1199
  }
921
1200
  },
922
1201
  "dark": {
923
- "base": {
924
- "value": "#273F2F",
925
- "type": "color",
926
- "source": "$dark",
927
- "description": "Basic dark color.",
928
- "actions": {
929
- "default": "{color.action.default.dark.base}"
930
- }
931
- },
932
1202
  "100": {
933
- "value": "{color.dark.base}",
934
- "type": "color",
935
1203
  "source": "$dark-100",
936
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
937
- "description": "Dark color of level 100.",
1204
+ "modify": [
1205
+ {
1206
+ "type": "mix",
1207
+ "otherColor": "white",
1208
+ "amount": "0.94"
1209
+ }
1210
+ ],
938
1211
  "actions": {
939
1212
  "default": "{color.action.default.dark.100}"
940
- }
1213
+ },
1214
+ "$value": "{color.dark.base}",
1215
+ "$description": "Dark color of level 100."
941
1216
  },
942
1217
  "200": {
943
- "value": "{color.dark.base}",
944
- "type": "color",
945
1218
  "source": "$dark-200",
946
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
947
- "description": "Dark color of level 200.",
1219
+ "modify": [
1220
+ {
1221
+ "type": "mix",
1222
+ "otherColor": "white",
1223
+ "amount": "0.75"
1224
+ }
1225
+ ],
948
1226
  "actions": {
949
1227
  "default": "{color.action.default.dark.200}"
950
- }
1228
+ },
1229
+ "$value": "{color.dark.base}",
1230
+ "$description": "Dark color of level 200."
951
1231
  },
952
1232
  "300": {
953
- "value": "{color.dark.base}",
954
- "type": "color",
955
1233
  "source": "$dark-300",
956
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
957
- "description": "Dark color of level 300.",
1234
+ "modify": [
1235
+ {
1236
+ "type": "mix",
1237
+ "otherColor": "white",
1238
+ "amount": "0.50"
1239
+ }
1240
+ ],
958
1241
  "actions": {
959
1242
  "default": "{color.action.default.dark.300}"
960
- }
1243
+ },
1244
+ "$value": "{color.dark.base}",
1245
+ "$description": "Dark color of level 300."
961
1246
  },
962
1247
  "400": {
963
- "value": "{color.dark.base}",
964
- "type": "color",
965
1248
  "source": "$dark-400",
966
- "modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
967
- "description": "Dark color of level 400.",
1249
+ "modify": [
1250
+ {
1251
+ "type": "mix",
1252
+ "otherColor": "white",
1253
+ "amount": "0.25"
1254
+ }
1255
+ ],
968
1256
  "actions": {
969
1257
  "default": "{color.action.default.dark.400}"
970
- }
1258
+ },
1259
+ "$value": "{color.dark.base}",
1260
+ "$description": "Dark color of level 400."
971
1261
  },
972
1262
  "500": {
973
- "value": "{color.dark.base}",
974
- "type": "color",
975
1263
  "source": "$dark-500",
976
- "description": "Dark color of level 500.",
977
1264
  "actions": {
978
1265
  "default": "{color.action.default.dark.500}"
979
- }
1266
+ },
1267
+ "$value": "{color.dark.base}",
1268
+ "$description": "Dark color of level 500."
980
1269
  },
981
1270
  "600": {
982
- "value": "{color.dark.base}",
983
- "type": "color",
984
1271
  "source": "$dark-600",
985
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
986
- "description": "Dark color of level 600.",
1272
+ "modify": [
1273
+ {
1274
+ "type": "mix",
1275
+ "otherColor": "black",
1276
+ "amount": "0.10"
1277
+ }
1278
+ ],
987
1279
  "actions": {
988
1280
  "default": "{color.action.default.dark.600}"
989
- }
1281
+ },
1282
+ "$value": "{color.dark.base}",
1283
+ "$description": "Dark color of level 600."
990
1284
  },
991
1285
  "700": {
992
- "value": "{color.dark.base}",
993
- "type": "color",
994
1286
  "source": "$dark-700",
995
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
996
- "description": "Info color of level 700.",
1287
+ "modify": [
1288
+ {
1289
+ "type": "mix",
1290
+ "otherColor": "black",
1291
+ "amount": "0.20"
1292
+ }
1293
+ ],
997
1294
  "actions": {
998
1295
  "default": "{color.action.default.dark.700}"
999
- }
1296
+ },
1297
+ "$value": "{color.dark.base}",
1298
+ "$description": "Info color of level 700."
1000
1299
  },
1001
1300
  "800": {
1002
- "value": "{color.dark.base}",
1003
- "type": "color",
1004
1301
  "source": "$dark-800",
1005
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
1006
- "description": "Dark color of level 800.",
1302
+ "modify": [
1303
+ {
1304
+ "type": "mix",
1305
+ "otherColor": "black",
1306
+ "amount": "0.25"
1307
+ }
1308
+ ],
1007
1309
  "actions": {
1008
1310
  "default": "{color.action.default.dark.800}"
1009
- }
1311
+ },
1312
+ "$value": "{color.dark.base}",
1313
+ "$description": "Dark color of level 800."
1010
1314
  },
1011
1315
  "900": {
1012
- "value": "{color.dark.base}",
1013
- "type": "color",
1014
1316
  "source": "$dark-900",
1015
- "modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
1016
- "description": "Dark color of level 900.",
1317
+ "modify": [
1318
+ {
1319
+ "type": "mix",
1320
+ "otherColor": "black",
1321
+ "amount": "0.30"
1322
+ }
1323
+ ],
1017
1324
  "actions": {
1018
1325
  "default": "{color.action.default.dark.900}"
1019
- }
1326
+ },
1327
+ "$value": "{color.dark.base}",
1328
+ "$description": "Dark color of level 900."
1329
+ },
1330
+ "base": {
1331
+ "source": "$dark",
1332
+ "actions": {
1333
+ "default": "{color.action.default.dark.base}"
1334
+ },
1335
+ "$value": "#273F2F",
1336
+ "$description": "Basic dark color."
1020
1337
  }
1021
1338
  },
1022
1339
  "action": {
1023
1340
  "default": {
1024
1341
  "gray": {
1025
- "base": {
1026
- "value": "{color.gray.base}",
1027
- "type": "color",
1028
- "source": "$action-default-gray-base",
1029
- "modify": [{ "type": "darken", "amount": "0.1" }]
1030
- },
1031
1342
  "100": {
1032
- "value": "{color.gray.100}",
1033
- "type": "color",
1034
1343
  "source": "$action-default-gray-100",
1035
- "modify": [{ "type": "darken", "amount": "0.1" }]
1344
+ "modify": [
1345
+ {
1346
+ "type": "darken",
1347
+ "amount": "0.1"
1348
+ }
1349
+ ],
1350
+ "$value": "{color.gray.100}"
1036
1351
  },
1037
1352
  "200": {
1038
- "value": "{color.gray.200}",
1039
- "type": "color",
1040
1353
  "source": "$action-default-gray-200",
1041
- "modify": [{ "type": "darken", "amount": "0.1" }]
1354
+ "modify": [
1355
+ {
1356
+ "type": "darken",
1357
+ "amount": "0.1"
1358
+ }
1359
+ ],
1360
+ "$value": "{color.gray.200}"
1042
1361
  },
1043
1362
  "300": {
1044
- "value": "{color.gray.300}",
1045
- "type": "color",
1046
1363
  "source": "$action-default-gray-300",
1047
- "modify": [{ "type": "darken", "amount": "0.1" }]
1364
+ "modify": [
1365
+ {
1366
+ "type": "darken",
1367
+ "amount": "0.1"
1368
+ }
1369
+ ],
1370
+ "$value": "{color.gray.300}"
1048
1371
  },
1049
1372
  "400": {
1050
- "value": "{color.gray.400}",
1051
- "type": "color",
1052
1373
  "source": "$action-default-gray-400",
1053
- "modify": [{ "type": "darken", "amount": "0.1" }]
1374
+ "modify": [
1375
+ {
1376
+ "type": "darken",
1377
+ "amount": "0.1"
1378
+ }
1379
+ ],
1380
+ "$value": "{color.gray.400}"
1054
1381
  },
1055
1382
  "500": {
1056
- "value": "{color.gray.500}",
1057
- "type": "color",
1058
1383
  "source": "$action-default-gray-500",
1059
- "modify": [{ "type": "darken", "amount": "0.1" }]
1384
+ "modify": [
1385
+ {
1386
+ "type": "darken",
1387
+ "amount": "0.1"
1388
+ }
1389
+ ],
1390
+ "$value": "{color.gray.500}"
1060
1391
  },
1061
1392
  "600": {
1062
- "value": "{color.gray.600}",
1063
- "type": "color",
1064
1393
  "source": "$action-default-gray-600",
1065
- "modify": [{ "type": "darken", "amount": "0.1" }]
1394
+ "modify": [
1395
+ {
1396
+ "type": "darken",
1397
+ "amount": "0.1"
1398
+ }
1399
+ ],
1400
+ "$value": "{color.gray.600}"
1066
1401
  },
1067
1402
  "700": {
1068
- "value": "{color.gray.700}",
1069
- "type": "color",
1070
1403
  "source": "$action-default-gray-700",
1071
- "modify": [{ "type": "darken", "amount": "0.1" }]
1404
+ "modify": [
1405
+ {
1406
+ "type": "darken",
1407
+ "amount": "0.1"
1408
+ }
1409
+ ],
1410
+ "$value": "{color.gray.700}"
1072
1411
  },
1073
1412
  "800": {
1074
- "value": "{color.gray.800}",
1075
- "type": "color",
1076
1413
  "source": "$action-default-gray-800",
1077
- "modify": [{ "type": "darken", "amount": "0.1" }]
1414
+ "modify": [
1415
+ {
1416
+ "type": "darken",
1417
+ "amount": "0.1"
1418
+ }
1419
+ ],
1420
+ "$value": "{color.gray.800}"
1078
1421
  },
1079
1422
  "900": {
1080
- "value": "{color.gray.900}",
1081
- "type": "color",
1082
1423
  "source": "$action-default-gray-900",
1083
- "modify": [{ "type": "darken", "amount": "0.1" }]
1424
+ "modify": [
1425
+ {
1426
+ "type": "darken",
1427
+ "amount": "0.1"
1428
+ }
1429
+ ],
1430
+ "$value": "{color.gray.900}"
1431
+ },
1432
+ "base": {
1433
+ "source": "$action-default-gray-base",
1434
+ "modify": [
1435
+ {
1436
+ "type": "darken",
1437
+ "amount": "0.1"
1438
+ }
1439
+ ],
1440
+ "$value": "{color.gray.base}"
1084
1441
  }
1085
1442
  },
1086
1443
  "primary": {
1087
- "base": {
1088
- "value": "{color.primary.base}",
1089
- "type": "color",
1090
- "source": "$action-default-primary-base",
1091
- "modify": [{ "type": "darken", "amount": "0.1" }]
1092
- },
1093
1444
  "100": {
1094
- "value": "{color.primary.100}",
1095
- "type": "color",
1096
1445
  "source": "$action-default-primary-100",
1097
- "modify": [{ "type": "darken", "amount": "0.1" }]
1446
+ "modify": [
1447
+ {
1448
+ "type": "darken",
1449
+ "amount": "0.1"
1450
+ }
1451
+ ],
1452
+ "$value": "{color.primary.100}"
1098
1453
  },
1099
1454
  "200": {
1100
- "value": "{color.primary.200}",
1101
- "type": "color",
1102
1455
  "source": "$action-default-primary-200",
1103
- "modify": [{ "type": "darken", "amount": "0.1" }]
1456
+ "modify": [
1457
+ {
1458
+ "type": "darken",
1459
+ "amount": "0.1"
1460
+ }
1461
+ ],
1462
+ "$value": "{color.primary.200}"
1104
1463
  },
1105
1464
  "300": {
1106
- "value": "{color.primary.300}",
1107
- "type": "color",
1108
1465
  "source": "$action-default-primary-300",
1109
- "modify": [{ "type": "darken", "amount": "0.1" }]
1466
+ "modify": [
1467
+ {
1468
+ "type": "darken",
1469
+ "amount": "0.1"
1470
+ }
1471
+ ],
1472
+ "$value": "{color.primary.300}"
1110
1473
  },
1111
1474
  "400": {
1112
- "value": "{color.primary.400}",
1113
- "type": "color",
1114
1475
  "source": "$action-default-primary-400",
1115
- "modify": [{ "type": "darken", "amount": "0.1" }]
1476
+ "modify": [
1477
+ {
1478
+ "type": "darken",
1479
+ "amount": "0.1"
1480
+ }
1481
+ ],
1482
+ "$value": "{color.primary.400}"
1116
1483
  },
1117
1484
  "500": {
1118
- "value": "{color.primary.500}",
1119
- "type": "color",
1120
1485
  "source": "$action-default-primary-500",
1121
- "modify": [{ "type": "darken", "amount": "0.1" }]
1486
+ "modify": [
1487
+ {
1488
+ "type": "darken",
1489
+ "amount": "0.1"
1490
+ }
1491
+ ],
1492
+ "$value": "{color.primary.500}"
1122
1493
  },
1123
1494
  "600": {
1124
- "value": "{color.primary.600}",
1125
- "type": "color",
1126
1495
  "source": "$action-default-primary-600",
1127
- "modify": [{ "type": "darken", "amount": "0.1" }]
1496
+ "modify": [
1497
+ {
1498
+ "type": "darken",
1499
+ "amount": "0.1"
1500
+ }
1501
+ ],
1502
+ "$value": "{color.primary.600}"
1128
1503
  },
1129
1504
  "700": {
1130
- "value": "{color.primary.700}",
1131
- "type": "color",
1132
1505
  "source": "$action-default-primary-700",
1133
- "modify": [{ "type": "darken", "amount": "0.1" }]
1506
+ "modify": [
1507
+ {
1508
+ "type": "darken",
1509
+ "amount": "0.1"
1510
+ }
1511
+ ],
1512
+ "$value": "{color.primary.700}"
1134
1513
  },
1135
1514
  "800": {
1136
- "value": "{color.primary.800}",
1137
- "type": "color",
1138
1515
  "source": "$action-default-primary-800",
1139
- "modify": [{ "type": "darken", "amount": "0.1" }]
1516
+ "modify": [
1517
+ {
1518
+ "type": "darken",
1519
+ "amount": "0.1"
1520
+ }
1521
+ ],
1522
+ "$value": "{color.primary.800}"
1140
1523
  },
1141
1524
  "900": {
1142
- "value": "{color.primary.900}",
1143
- "type": "color",
1144
1525
  "source": "$action-default-primary-900",
1145
- "modify": [{ "type": "darken", "amount": "0.1" }]
1526
+ "modify": [
1527
+ {
1528
+ "type": "darken",
1529
+ "amount": "0.1"
1530
+ }
1531
+ ],
1532
+ "$value": "{color.primary.900}"
1533
+ },
1534
+ "base": {
1535
+ "source": "$action-default-primary-base",
1536
+ "modify": [
1537
+ {
1538
+ "type": "darken",
1539
+ "amount": "0.1"
1540
+ }
1541
+ ],
1542
+ "$value": "{color.primary.base}"
1146
1543
  }
1147
1544
  },
1148
1545
  "secondary": {
1149
- "base": {
1150
- "value": "{color.secondary.base}",
1151
- "type": "color",
1152
- "source": "$action-default-secondary-base",
1153
- "modify": [{ "type": "darken", "amount": "0.1" }]
1154
- },
1155
1546
  "100": {
1156
- "value": "{color.secondary.100}",
1157
- "type": "color",
1158
1547
  "source": "$action-default-secondary-100",
1159
- "modify": [{ "type": "darken", "amount": "0.1" }]
1548
+ "modify": [
1549
+ {
1550
+ "type": "darken",
1551
+ "amount": "0.1"
1552
+ }
1553
+ ],
1554
+ "$value": "{color.secondary.100}"
1160
1555
  },
1161
1556
  "200": {
1162
- "value": "{color.secondary.200}",
1163
- "type": "color",
1164
1557
  "source": "$action-default-secondary-200",
1165
- "modify": [{ "type": "darken", "amount": "0.1" }]
1558
+ "modify": [
1559
+ {
1560
+ "type": "darken",
1561
+ "amount": "0.1"
1562
+ }
1563
+ ],
1564
+ "$value": "{color.secondary.200}"
1166
1565
  },
1167
1566
  "300": {
1168
- "value": "{color.secondary.300}",
1169
- "type": "color",
1170
1567
  "source": "$action-default-secondary-300",
1171
- "modify": [{ "type": "darken", "amount": "0.1" }]
1568
+ "modify": [
1569
+ {
1570
+ "type": "darken",
1571
+ "amount": "0.1"
1572
+ }
1573
+ ],
1574
+ "$value": "{color.secondary.300}"
1172
1575
  },
1173
1576
  "400": {
1174
- "value": "{color.secondary.400}",
1175
- "type": "color",
1176
1577
  "source": "$action-default-secondary-400",
1177
- "modify": [{ "type": "darken", "amount": "0.1" }]
1578
+ "modify": [
1579
+ {
1580
+ "type": "darken",
1581
+ "amount": "0.1"
1582
+ }
1583
+ ],
1584
+ "$value": "{color.secondary.400}"
1178
1585
  },
1179
1586
  "500": {
1180
- "value": "{color.secondary.500}",
1181
- "type": "color",
1182
1587
  "source": "$action-default-secondary-500",
1183
- "modify": [{ "type": "darken", "amount": "0.1" }]
1588
+ "modify": [
1589
+ {
1590
+ "type": "darken",
1591
+ "amount": "0.1"
1592
+ }
1593
+ ],
1594
+ "$value": "{color.secondary.500}"
1184
1595
  },
1185
1596
  "600": {
1186
- "value": "{color.secondary.600}",
1187
- "type": "color",
1188
1597
  "source": "$action-default-secondary-600",
1189
- "modify": [{ "type": "darken", "amount": "0.1" }]
1598
+ "modify": [
1599
+ {
1600
+ "type": "darken",
1601
+ "amount": "0.1"
1602
+ }
1603
+ ],
1604
+ "$value": "{color.secondary.600}"
1190
1605
  },
1191
1606
  "700": {
1192
- "value": "{color.secondary.700}",
1193
- "type": "color",
1194
1607
  "source": "$action-default-secondary-700",
1195
- "modify": [{ "type": "darken", "amount": "0.1" }]
1608
+ "modify": [
1609
+ {
1610
+ "type": "darken",
1611
+ "amount": "0.1"
1612
+ }
1613
+ ],
1614
+ "$value": "{color.secondary.700}"
1196
1615
  },
1197
1616
  "800": {
1198
- "value": "{color.secondary.800}",
1199
- "type": "color",
1200
1617
  "source": "$action-default-secondary-800",
1201
- "modify": [{ "type": "darken", "amount": "0.1" }]
1618
+ "modify": [
1619
+ {
1620
+ "type": "darken",
1621
+ "amount": "0.1"
1622
+ }
1623
+ ],
1624
+ "$value": "{color.secondary.800}"
1202
1625
  },
1203
1626
  "900": {
1204
- "value": "{color.secondary.900}",
1205
- "type": "color",
1206
1627
  "source": "$action-default-secondary-900",
1207
- "modify": [{ "type": "darken", "amount": "0.1" }]
1628
+ "modify": [
1629
+ {
1630
+ "type": "darken",
1631
+ "amount": "0.1"
1632
+ }
1633
+ ],
1634
+ "$value": "{color.secondary.900}"
1635
+ },
1636
+ "base": {
1637
+ "source": "$action-default-secondary-base",
1638
+ "modify": [
1639
+ {
1640
+ "type": "darken",
1641
+ "amount": "0.1"
1642
+ }
1643
+ ],
1644
+ "$value": "{color.secondary.base}"
1208
1645
  }
1209
1646
  },
1210
1647
  "brand": {
1211
- "base": {
1212
- "value": "{color.brand.base}",
1213
- "type": "color",
1214
- "source": "$action-default-brand-base",
1215
- "modify": [{ "type": "darken", "amount": "0.1" }]
1216
- },
1217
1648
  "100": {
1218
- "value": "{color.brand.100}",
1219
- "type": "color",
1220
1649
  "source": "$action-default-brand-100",
1221
- "modify": [{ "type": "darken", "amount": "0.1" }]
1650
+ "modify": [
1651
+ {
1652
+ "type": "darken",
1653
+ "amount": "0.1"
1654
+ }
1655
+ ],
1656
+ "$value": "{color.brand.100}"
1222
1657
  },
1223
1658
  "200": {
1224
- "value": "{color.brand.200}",
1225
- "type": "color",
1226
1659
  "source": "$action-default-brand-200",
1227
- "modify": [{ "type": "darken", "amount": "0.1" }]
1660
+ "modify": [
1661
+ {
1662
+ "type": "darken",
1663
+ "amount": "0.1"
1664
+ }
1665
+ ],
1666
+ "$value": "{color.brand.200}"
1228
1667
  },
1229
1668
  "300": {
1230
- "value": "{color.brand.300}",
1231
- "type": "color",
1232
1669
  "source": "$action-default-brand-300",
1233
- "modify": [{ "type": "darken", "amount": "0.1" }]
1670
+ "modify": [
1671
+ {
1672
+ "type": "darken",
1673
+ "amount": "0.1"
1674
+ }
1675
+ ],
1676
+ "$value": "{color.brand.300}"
1234
1677
  },
1235
1678
  "400": {
1236
- "value": "{color.brand.400}",
1237
- "type": "color",
1238
1679
  "source": "$action-default-brand-400",
1239
- "modify": [{ "type": "darken", "amount": "0.1" }]
1680
+ "modify": [
1681
+ {
1682
+ "type": "darken",
1683
+ "amount": "0.1"
1684
+ }
1685
+ ],
1686
+ "$value": "{color.brand.400}"
1240
1687
  },
1241
1688
  "500": {
1242
- "value": "{color.brand.500}",
1243
- "type": "color",
1244
1689
  "source": "$action-default-brand-500",
1245
- "modify": [{ "type": "darken", "amount": "0.1" }]
1690
+ "modify": [
1691
+ {
1692
+ "type": "darken",
1693
+ "amount": "0.1"
1694
+ }
1695
+ ],
1696
+ "$value": "{color.brand.500}"
1246
1697
  },
1247
1698
  "600": {
1248
- "value": "{color.brand.600}",
1249
- "type": "color",
1250
1699
  "source": "$action-default-brand-600",
1251
- "modify": [{ "type": "darken", "amount": "0.1" }]
1700
+ "modify": [
1701
+ {
1702
+ "type": "darken",
1703
+ "amount": "0.1"
1704
+ }
1705
+ ],
1706
+ "$value": "{color.brand.600}"
1252
1707
  },
1253
1708
  "700": {
1254
- "value": "{color.brand.700}",
1255
- "type": "color",
1256
1709
  "source": "$action-default-brand-700",
1257
- "modify": [{ "type": "darken", "amount": "0.1" }]
1710
+ "modify": [
1711
+ {
1712
+ "type": "darken",
1713
+ "amount": "0.1"
1714
+ }
1715
+ ],
1716
+ "$value": "{color.brand.700}"
1258
1717
  },
1259
1718
  "800": {
1260
- "value": "{color.brand.800}",
1261
- "type": "color",
1262
1719
  "source": "$action-default-brand-800",
1263
- "modify": [{ "type": "darken", "amount": "0.1" }]
1720
+ "modify": [
1721
+ {
1722
+ "type": "darken",
1723
+ "amount": "0.1"
1724
+ }
1725
+ ],
1726
+ "$value": "{color.brand.800}"
1264
1727
  },
1265
1728
  "900": {
1266
- "value": "{color.brand.900}",
1267
- "type": "color",
1268
1729
  "source": "$action-default-brand-900",
1269
- "modify": [{ "type": "darken", "amount": "0.1" }]
1730
+ "modify": [
1731
+ {
1732
+ "type": "darken",
1733
+ "amount": "0.1"
1734
+ }
1735
+ ],
1736
+ "$value": "{color.brand.900}"
1737
+ },
1738
+ "base": {
1739
+ "source": "$action-default-brand-base",
1740
+ "modify": [
1741
+ {
1742
+ "type": "darken",
1743
+ "amount": "0.1"
1744
+ }
1745
+ ],
1746
+ "$value": "{color.brand.base}"
1270
1747
  }
1271
1748
  },
1272
1749
  "success": {
1273
- "base": {
1274
- "value": "{color.success.base}",
1275
- "type": "color",
1276
- "source": "$action-default-success-base",
1277
- "modify": [{ "type": "darken", "amount": "0.1" }]
1278
- },
1279
1750
  "100": {
1280
- "value": "{color.success.100}",
1281
- "type": "color",
1282
1751
  "source": "$action-default-success-100",
1283
- "modify": [{ "type": "darken", "amount": "0.1" }]
1752
+ "modify": [
1753
+ {
1754
+ "type": "darken",
1755
+ "amount": "0.1"
1756
+ }
1757
+ ],
1758
+ "$value": "{color.success.100}"
1284
1759
  },
1285
1760
  "200": {
1286
- "value": "{color.success.200}",
1287
- "type": "color",
1288
1761
  "source": "$action-default-success-200",
1289
- "modify": [{ "type": "darken", "amount": "0.1" }]
1762
+ "modify": [
1763
+ {
1764
+ "type": "darken",
1765
+ "amount": "0.1"
1766
+ }
1767
+ ],
1768
+ "$value": "{color.success.200}"
1290
1769
  },
1291
1770
  "300": {
1292
- "value": "{color.success.300}",
1293
- "type": "color",
1294
1771
  "source": "$action-default-success-300",
1295
- "modify": [{ "type": "darken", "amount": "0.1" }]
1772
+ "modify": [
1773
+ {
1774
+ "type": "darken",
1775
+ "amount": "0.1"
1776
+ }
1777
+ ],
1778
+ "$value": "{color.success.300}"
1296
1779
  },
1297
1780
  "400": {
1298
- "value": "{color.success.400}",
1299
- "type": "color",
1300
1781
  "source": "$action-default-success-400",
1301
- "modify": [{ "type": "darken", "amount": "0.1" }]
1782
+ "modify": [
1783
+ {
1784
+ "type": "darken",
1785
+ "amount": "0.1"
1786
+ }
1787
+ ],
1788
+ "$value": "{color.success.400}"
1302
1789
  },
1303
1790
  "500": {
1304
- "value": "{color.success.500}",
1305
- "type": "color",
1306
1791
  "source": "$action-default-success-500",
1307
- "modify": [{ "type": "darken", "amount": "0.1" }]
1792
+ "modify": [
1793
+ {
1794
+ "type": "darken",
1795
+ "amount": "0.1"
1796
+ }
1797
+ ],
1798
+ "$value": "{color.success.500}"
1308
1799
  },
1309
1800
  "600": {
1310
- "value": "{color.success.600}",
1311
- "type": "color",
1312
1801
  "source": "$action-default-success-600",
1313
- "modify": [{ "type": "darken", "amount": "0.1" }]
1802
+ "modify": [
1803
+ {
1804
+ "type": "darken",
1805
+ "amount": "0.1"
1806
+ }
1807
+ ],
1808
+ "$value": "{color.success.600}"
1314
1809
  },
1315
1810
  "700": {
1316
- "value": "{color.success.700}",
1317
- "type": "color",
1318
1811
  "source": "$action-default-success-700",
1319
- "modify": [{ "type": "darken", "amount": "0.1" }]
1812
+ "modify": [
1813
+ {
1814
+ "type": "darken",
1815
+ "amount": "0.1"
1816
+ }
1817
+ ],
1818
+ "$value": "{color.success.700}"
1320
1819
  },
1321
1820
  "800": {
1322
- "value": "{color.success.800}",
1323
- "type": "color",
1324
1821
  "source": "$action-default-success-800",
1325
- "modify": [{ "type": "darken", "amount": "0.1" }]
1822
+ "modify": [
1823
+ {
1824
+ "type": "darken",
1825
+ "amount": "0.1"
1826
+ }
1827
+ ],
1828
+ "$value": "{color.success.800}"
1326
1829
  },
1327
1830
  "900": {
1328
- "value": "{color.success.900}",
1329
- "type": "color",
1330
1831
  "source": "$action-default-success-900",
1331
- "modify": [{ "type": "darken", "amount": "0.1" }]
1832
+ "modify": [
1833
+ {
1834
+ "type": "darken",
1835
+ "amount": "0.1"
1836
+ }
1837
+ ],
1838
+ "$value": "{color.success.900}"
1839
+ },
1840
+ "base": {
1841
+ "source": "$action-default-success-base",
1842
+ "modify": [
1843
+ {
1844
+ "type": "darken",
1845
+ "amount": "0.1"
1846
+ }
1847
+ ],
1848
+ "$value": "{color.success.base}"
1332
1849
  }
1333
1850
  },
1334
1851
  "info": {
1335
- "base": {
1336
- "value": "{color.info.base}",
1337
- "type": "color",
1338
- "source": "$action-default-info-base",
1339
- "modify": [{ "type": "darken", "amount": "0.1" }]
1340
- },
1341
1852
  "100": {
1342
- "value": "{color.info.100}",
1343
- "type": "color",
1344
1853
  "source": "$action-default-info-100",
1345
- "modify": [{ "type": "darken", "amount": "0.1" }]
1854
+ "modify": [
1855
+ {
1856
+ "type": "darken",
1857
+ "amount": "0.1"
1858
+ }
1859
+ ],
1860
+ "$value": "{color.info.100}"
1346
1861
  },
1347
1862
  "200": {
1348
- "value": "{color.info.200}",
1349
- "type": "color",
1350
1863
  "source": "$action-default-info-200",
1351
- "modify": [{ "type": "darken", "amount": "0.1" }]
1864
+ "modify": [
1865
+ {
1866
+ "type": "darken",
1867
+ "amount": "0.1"
1868
+ }
1869
+ ],
1870
+ "$value": "{color.info.200}"
1352
1871
  },
1353
1872
  "300": {
1354
- "value": "{color.info.300}",
1355
- "type": "color",
1356
1873
  "source": "$action-default-info-300",
1357
- "modify": [{ "type": "darken", "amount": "0.1" }]
1874
+ "modify": [
1875
+ {
1876
+ "type": "darken",
1877
+ "amount": "0.1"
1878
+ }
1879
+ ],
1880
+ "$value": "{color.info.300}"
1358
1881
  },
1359
1882
  "400": {
1360
- "value": "{color.info.400}",
1361
- "type": "color",
1362
1883
  "source": "$action-default-info-400",
1363
- "modify": [{ "type": "darken", "amount": "0.1" }]
1884
+ "modify": [
1885
+ {
1886
+ "type": "darken",
1887
+ "amount": "0.1"
1888
+ }
1889
+ ],
1890
+ "$value": "{color.info.400}"
1364
1891
  },
1365
1892
  "500": {
1366
- "value": "{color.info.500}",
1367
- "type": "color",
1368
1893
  "source": "$action-default-info-500",
1369
- "modify": [{ "type": "darken", "amount": "0.1" }]
1894
+ "modify": [
1895
+ {
1896
+ "type": "darken",
1897
+ "amount": "0.1"
1898
+ }
1899
+ ],
1900
+ "$value": "{color.info.500}"
1370
1901
  },
1371
1902
  "600": {
1372
- "value": "{color.info.600}",
1373
- "type": "color",
1374
1903
  "source": "$action-default-info-600",
1375
- "modify": [{ "type": "darken", "amount": "0.1" }]
1904
+ "modify": [
1905
+ {
1906
+ "type": "darken",
1907
+ "amount": "0.1"
1908
+ }
1909
+ ],
1910
+ "$value": "{color.info.600}"
1376
1911
  },
1377
1912
  "700": {
1378
- "value": "{color.info.700}",
1379
- "type": "color",
1380
1913
  "source": "$action-default-info-700",
1381
- "modify": [{ "type": "darken", "amount": "0.1" }]
1914
+ "modify": [
1915
+ {
1916
+ "type": "darken",
1917
+ "amount": "0.1"
1918
+ }
1919
+ ],
1920
+ "$value": "{color.info.700}"
1382
1921
  },
1383
1922
  "800": {
1384
- "value": "{color.info.800}",
1385
- "type": "color",
1386
1923
  "source": "$action-default-info-800",
1387
- "modify": [{ "type": "darken", "amount": "0.1" }]
1924
+ "modify": [
1925
+ {
1926
+ "type": "darken",
1927
+ "amount": "0.1"
1928
+ }
1929
+ ],
1930
+ "$value": "{color.info.800}"
1388
1931
  },
1389
1932
  "900": {
1390
- "value": "{color.info.900}",
1391
- "type": "color",
1392
1933
  "source": "$action-default-info-900",
1393
- "modify": [{ "type": "darken", "amount": "0.1" }]
1934
+ "modify": [
1935
+ {
1936
+ "type": "darken",
1937
+ "amount": "0.1"
1938
+ }
1939
+ ],
1940
+ "$value": "{color.info.900}"
1941
+ },
1942
+ "base": {
1943
+ "source": "$action-default-info-base",
1944
+ "modify": [
1945
+ {
1946
+ "type": "darken",
1947
+ "amount": "0.1"
1948
+ }
1949
+ ],
1950
+ "$value": "{color.info.base}"
1394
1951
  }
1395
1952
  },
1396
1953
  "warning": {
1397
- "base": {
1398
- "value": "{color.warning.base}",
1399
- "type": "color",
1400
- "source": "$action-default-warning-base",
1401
- "modify": [{ "type": "darken", "amount": "0.1" }]
1402
- },
1403
1954
  "100": {
1404
- "value": "{color.warning.100}",
1405
- "type": "color",
1406
1955
  "source": "$action-default-warning-100",
1407
- "modify": [{ "type": "darken", "amount": "0.1" }]
1956
+ "modify": [
1957
+ {
1958
+ "type": "darken",
1959
+ "amount": "0.1"
1960
+ }
1961
+ ],
1962
+ "$value": "{color.warning.100}"
1408
1963
  },
1409
1964
  "200": {
1410
- "value": "{color.warning.200}",
1411
- "type": "color",
1412
1965
  "source": "$action-default-warning-200",
1413
- "modify": [{ "type": "darken", "amount": "0.1" }]
1966
+ "modify": [
1967
+ {
1968
+ "type": "darken",
1969
+ "amount": "0.1"
1970
+ }
1971
+ ],
1972
+ "$value": "{color.warning.200}"
1414
1973
  },
1415
1974
  "300": {
1416
- "value": "{color.warning.300}",
1417
- "type": "color",
1418
1975
  "source": "$action-default-warning-300",
1419
- "modify": [{ "type": "darken", "amount": "0.1" }]
1976
+ "modify": [
1977
+ {
1978
+ "type": "darken",
1979
+ "amount": "0.1"
1980
+ }
1981
+ ],
1982
+ "$value": "{color.warning.300}"
1420
1983
  },
1421
1984
  "400": {
1422
- "value": "{color.warning.400}",
1423
- "type": "color",
1424
1985
  "source": "$action-default-warning-400",
1425
- "modify": [{ "type": "darken", "amount": "0.1" }]
1986
+ "modify": [
1987
+ {
1988
+ "type": "darken",
1989
+ "amount": "0.1"
1990
+ }
1991
+ ],
1992
+ "$value": "{color.warning.400}"
1426
1993
  },
1427
1994
  "500": {
1428
- "value": "{color.warning.500}",
1429
- "type": "color",
1430
1995
  "source": "$action-default-warning-500",
1431
- "modify": [{ "type": "darken", "amount": "0.1" }]
1996
+ "modify": [
1997
+ {
1998
+ "type": "darken",
1999
+ "amount": "0.1"
2000
+ }
2001
+ ],
2002
+ "$value": "{color.warning.500}"
1432
2003
  },
1433
2004
  "600": {
1434
- "value": "{color.warning.600}",
1435
- "type": "color",
1436
2005
  "source": "$action-default-warning-600",
1437
- "modify": [{ "type": "darken", "amount": "0.1" }]
2006
+ "modify": [
2007
+ {
2008
+ "type": "darken",
2009
+ "amount": "0.1"
2010
+ }
2011
+ ],
2012
+ "$value": "{color.warning.600}"
1438
2013
  },
1439
2014
  "700": {
1440
- "value": "{color.warning.700}",
1441
- "type": "color",
1442
2015
  "source": "$action-default-warning-700",
1443
- "modify": [{ "type": "darken", "amount": "0.1" }]
2016
+ "modify": [
2017
+ {
2018
+ "type": "darken",
2019
+ "amount": "0.1"
2020
+ }
2021
+ ],
2022
+ "$value": "{color.warning.700}"
1444
2023
  },
1445
2024
  "800": {
1446
- "value": "{color.warning.800}",
1447
- "type": "color",
1448
2025
  "source": "$action-default-warning-800",
1449
- "modify": [{ "type": "darken", "amount": "0.1" }]
2026
+ "modify": [
2027
+ {
2028
+ "type": "darken",
2029
+ "amount": "0.1"
2030
+ }
2031
+ ],
2032
+ "$value": "{color.warning.800}"
1450
2033
  },
1451
2034
  "900": {
1452
- "value": "{color.warning.900}",
1453
- "type": "color",
1454
2035
  "source": "$action-default-warning-900",
1455
- "modify": [{ "type": "darken", "amount": "0.1" }]
2036
+ "modify": [
2037
+ {
2038
+ "type": "darken",
2039
+ "amount": "0.1"
2040
+ }
2041
+ ],
2042
+ "$value": "{color.warning.900}"
2043
+ },
2044
+ "base": {
2045
+ "source": "$action-default-warning-base",
2046
+ "modify": [
2047
+ {
2048
+ "type": "darken",
2049
+ "amount": "0.1"
2050
+ }
2051
+ ],
2052
+ "$value": "{color.warning.base}"
1456
2053
  }
1457
2054
  },
1458
2055
  "danger": {
1459
- "base": {
1460
- "value": "{color.danger.base}",
1461
- "type": "color",
1462
- "source": "$action-default-danger-base",
1463
- "modify": [{ "type": "darken", "amount": "0.1" }]
1464
- },
1465
2056
  "100": {
1466
- "value": "{color.danger.100}",
1467
- "type": "color",
1468
2057
  "source": "$action-default-danger-100",
1469
- "modify": [{ "type": "darken", "amount": "0.1" }]
2058
+ "modify": [
2059
+ {
2060
+ "type": "darken",
2061
+ "amount": "0.1"
2062
+ }
2063
+ ],
2064
+ "$value": "{color.danger.100}"
1470
2065
  },
1471
2066
  "200": {
1472
- "value": "{color.danger.200}",
1473
- "type": "color",
1474
2067
  "source": "$action-default-danger-200",
1475
- "modify": [{ "type": "darken", "amount": "0.1" }]
2068
+ "modify": [
2069
+ {
2070
+ "type": "darken",
2071
+ "amount": "0.1"
2072
+ }
2073
+ ],
2074
+ "$value": "{color.danger.200}"
1476
2075
  },
1477
2076
  "300": {
1478
- "value": "{color.danger.300}",
1479
- "type": "color",
1480
2077
  "source": "$action-default-danger-300",
1481
- "modify": [{ "type": "darken", "amount": "0.1" }]
2078
+ "modify": [
2079
+ {
2080
+ "type": "darken",
2081
+ "amount": "0.1"
2082
+ }
2083
+ ],
2084
+ "$value": "{color.danger.300}"
1482
2085
  },
1483
2086
  "400": {
1484
- "value": "{color.danger.400}",
1485
- "type": "color",
1486
2087
  "source": "$action-default-danger-400",
1487
- "modify": [{ "type": "darken", "amount": "0.1" }]
2088
+ "modify": [
2089
+ {
2090
+ "type": "darken",
2091
+ "amount": "0.1"
2092
+ }
2093
+ ],
2094
+ "$value": "{color.danger.400}"
1488
2095
  },
1489
2096
  "500": {
1490
- "value": "{color.danger.500}",
1491
- "type": "color",
1492
2097
  "source": "$action-default-danger-500",
1493
- "modify": [{ "type": "darken", "amount": "0.1" }]
2098
+ "modify": [
2099
+ {
2100
+ "type": "darken",
2101
+ "amount": "0.1"
2102
+ }
2103
+ ],
2104
+ "$value": "{color.danger.500}"
1494
2105
  },
1495
2106
  "600": {
1496
- "value": "{color.danger.600}",
1497
- "type": "color",
1498
2107
  "source": "$action-default-danger-600",
1499
- "modify": [{ "type": "darken", "amount": "0.1" }]
2108
+ "modify": [
2109
+ {
2110
+ "type": "darken",
2111
+ "amount": "0.1"
2112
+ }
2113
+ ],
2114
+ "$value": "{color.danger.600}"
1500
2115
  },
1501
2116
  "700": {
1502
- "value": "{color.danger.700}",
1503
- "type": "color",
1504
2117
  "source": "$action-default-danger-700",
1505
- "modify": [{ "type": "darken", "amount": "0.1" }]
2118
+ "modify": [
2119
+ {
2120
+ "type": "darken",
2121
+ "amount": "0.1"
2122
+ }
2123
+ ],
2124
+ "$value": "{color.danger.700}"
1506
2125
  },
1507
2126
  "800": {
1508
- "value": "{color.danger.800}",
1509
- "type": "color",
1510
2127
  "source": "$action-default-danger-800",
1511
- "modify": [{ "type": "darken", "amount": "0.1" }]
2128
+ "modify": [
2129
+ {
2130
+ "type": "darken",
2131
+ "amount": "0.1"
2132
+ }
2133
+ ],
2134
+ "$value": "{color.danger.800}"
1512
2135
  },
1513
2136
  "900": {
1514
- "value": "{color.danger.900}",
1515
- "type": "color",
1516
2137
  "source": "$action-default-danger-900",
1517
- "modify": [{ "type": "darken", "amount": "0.1" }]
2138
+ "modify": [
2139
+ {
2140
+ "type": "darken",
2141
+ "amount": "0.1"
2142
+ }
2143
+ ],
2144
+ "$value": "{color.danger.900}"
2145
+ },
2146
+ "base": {
2147
+ "source": "$action-default-danger-base",
2148
+ "modify": [
2149
+ {
2150
+ "type": "darken",
2151
+ "amount": "0.1"
2152
+ }
2153
+ ],
2154
+ "$value": "{color.danger.base}"
1518
2155
  }
1519
2156
  },
1520
2157
  "light": {
1521
- "base": {
1522
- "value": "{color.light.base}",
1523
- "type": "color",
1524
- "source": "$action-default-light-base",
1525
- "modify": [{ "type": "darken", "amount": "0.1" }]
1526
- },
1527
2158
  "100": {
1528
- "value": "{color.light.100}",
1529
- "type": "color",
1530
2159
  "source": "$action-default-light-100",
1531
- "modify": [{ "type": "darken", "amount": "0.1" }]
2160
+ "modify": [
2161
+ {
2162
+ "type": "darken",
2163
+ "amount": "0.1"
2164
+ }
2165
+ ],
2166
+ "$value": "{color.light.100}"
1532
2167
  },
1533
2168
  "200": {
1534
- "value": "{color.light.200}",
1535
- "type": "color",
1536
2169
  "source": "$action-default-light-200",
1537
- "modify": [{ "type": "darken", "amount": "0.1" }]
2170
+ "modify": [
2171
+ {
2172
+ "type": "darken",
2173
+ "amount": "0.1"
2174
+ }
2175
+ ],
2176
+ "$value": "{color.light.200}"
1538
2177
  },
1539
2178
  "300": {
1540
- "value": "{color.light.300}",
1541
- "type": "color",
1542
2179
  "source": "$action-default-light-300",
1543
- "modify": [{ "type": "darken", "amount": "0.1" }]
2180
+ "modify": [
2181
+ {
2182
+ "type": "darken",
2183
+ "amount": "0.1"
2184
+ }
2185
+ ],
2186
+ "$value": "{color.light.300}"
1544
2187
  },
1545
2188
  "400": {
1546
- "value": "{color.light.400}",
1547
- "type": "color",
1548
2189
  "source": "$action-default-light-400",
1549
- "modify": [{ "type": "darken", "amount": "0.1" }]
2190
+ "modify": [
2191
+ {
2192
+ "type": "darken",
2193
+ "amount": "0.1"
2194
+ }
2195
+ ],
2196
+ "$value": "{color.light.400}"
1550
2197
  },
1551
2198
  "500": {
1552
- "value": "{color.light.500}",
1553
- "type": "color",
1554
2199
  "source": "$action-default-light-500",
1555
- "modify": [{ "type": "darken", "amount": "0.1" }]
2200
+ "modify": [
2201
+ {
2202
+ "type": "darken",
2203
+ "amount": "0.1"
2204
+ }
2205
+ ],
2206
+ "$value": "{color.light.500}"
1556
2207
  },
1557
2208
  "600": {
1558
- "value": "{color.light.600}",
1559
- "type": "color",
1560
2209
  "source": "$action-default-light-600",
1561
- "modify": [{ "type": "darken", "amount": "0.1" }]
2210
+ "modify": [
2211
+ {
2212
+ "type": "darken",
2213
+ "amount": "0.1"
2214
+ }
2215
+ ],
2216
+ "$value": "{color.light.600}"
1562
2217
  },
1563
2218
  "700": {
1564
- "value": "{color.light.700}",
1565
- "type": "color",
1566
2219
  "source": "$action-default-light-700",
1567
- "modify": [{ "type": "darken", "amount": "0.1" }]
2220
+ "modify": [
2221
+ {
2222
+ "type": "darken",
2223
+ "amount": "0.1"
2224
+ }
2225
+ ],
2226
+ "$value": "{color.light.700}"
1568
2227
  },
1569
2228
  "800": {
1570
- "value": "{color.light.800}",
1571
- "type": "color",
1572
2229
  "source": "$action-default-light-800",
1573
- "modify": [{ "type": "darken", "amount": "0.1" }]
2230
+ "modify": [
2231
+ {
2232
+ "type": "darken",
2233
+ "amount": "0.1"
2234
+ }
2235
+ ],
2236
+ "$value": "{color.light.800}"
1574
2237
  },
1575
2238
  "900": {
1576
- "value": "{color.light.900}",
1577
- "type": "color",
1578
2239
  "source": "$action-default-light-900",
1579
- "modify": [{ "type": "darken", "amount": "0.1" }]
2240
+ "modify": [
2241
+ {
2242
+ "type": "darken",
2243
+ "amount": "0.1"
2244
+ }
2245
+ ],
2246
+ "$value": "{color.light.900}"
2247
+ },
2248
+ "base": {
2249
+ "source": "$action-default-light-base",
2250
+ "modify": [
2251
+ {
2252
+ "type": "darken",
2253
+ "amount": "0.1"
2254
+ }
2255
+ ],
2256
+ "$value": "{color.light.base}"
1580
2257
  }
1581
2258
  },
1582
2259
  "dark": {
1583
- "base": {
1584
- "value": "{color.dark.base}",
1585
- "type": "color",
1586
- "source": "$action-default-dark-base",
1587
- "modify": [{ "type": "darken", "amount": "0.1" }]
1588
- },
1589
2260
  "100": {
1590
- "value": "{color.dark.100}",
1591
- "type": "color",
1592
2261
  "source": "$action-default-dark-100",
1593
- "modify": [{ "type": "darken", "amount": "0.1" }]
2262
+ "modify": [
2263
+ {
2264
+ "type": "darken",
2265
+ "amount": "0.1"
2266
+ }
2267
+ ],
2268
+ "$value": "{color.dark.100}"
1594
2269
  },
1595
2270
  "200": {
1596
- "value": "{color.dark.200}",
1597
- "type": "color",
1598
2271
  "source": "$action-default-dark-200",
1599
- "modify": [{ "type": "darken", "amount": "0.1" }]
2272
+ "modify": [
2273
+ {
2274
+ "type": "darken",
2275
+ "amount": "0.1"
2276
+ }
2277
+ ],
2278
+ "$value": "{color.dark.200}"
1600
2279
  },
1601
2280
  "300": {
1602
- "value": "{color.dark.300}",
1603
- "type": "color",
1604
2281
  "source": "$action-default-dark-300",
1605
- "modify": [{ "type": "darken", "amount": "0.1" }]
2282
+ "modify": [
2283
+ {
2284
+ "type": "darken",
2285
+ "amount": "0.1"
2286
+ }
2287
+ ],
2288
+ "$value": "{color.dark.300}"
1606
2289
  },
1607
2290
  "400": {
1608
- "value": "{color.dark.400}",
1609
- "type": "color",
1610
2291
  "source": "$action-default-dark-400",
1611
- "modify": [{ "type": "darken", "amount": "0.1" }]
2292
+ "modify": [
2293
+ {
2294
+ "type": "darken",
2295
+ "amount": "0.1"
2296
+ }
2297
+ ],
2298
+ "$value": "{color.dark.400}"
1612
2299
  },
1613
2300
  "500": {
1614
- "value": "{color.dark.500}",
1615
- "type": "color",
1616
2301
  "source": "$action-default-dark-500",
1617
- "modify": [{ "type": "darken", "amount": "0.1" }]
2302
+ "modify": [
2303
+ {
2304
+ "type": "darken",
2305
+ "amount": "0.1"
2306
+ }
2307
+ ],
2308
+ "$value": "{color.dark.500}"
1618
2309
  },
1619
2310
  "600": {
1620
- "value": "{color.dark.600}",
1621
- "type": "color",
1622
2311
  "source": "$action-default-dark-600",
1623
- "modify": [{ "type": "darken", "amount": "0.1" }]
2312
+ "modify": [
2313
+ {
2314
+ "type": "darken",
2315
+ "amount": "0.1"
2316
+ }
2317
+ ],
2318
+ "$value": "{color.dark.600}"
1624
2319
  },
1625
2320
  "700": {
1626
- "value": "{color.dark.700}",
1627
- "type": "color",
1628
2321
  "source": "$action-default-dark-700",
1629
- "modify": [{ "type": "darken", "amount": "0.1" }]
2322
+ "modify": [
2323
+ {
2324
+ "type": "darken",
2325
+ "amount": "0.1"
2326
+ }
2327
+ ],
2328
+ "$value": "{color.dark.700}"
1630
2329
  },
1631
2330
  "800": {
1632
- "value": "{color.dark.800}",
1633
- "type": "color",
1634
2331
  "source": "$action-default-dark-800",
1635
- "modify": [{ "type": "darken", "amount": "0.1" }]
2332
+ "modify": [
2333
+ {
2334
+ "type": "darken",
2335
+ "amount": "0.1"
2336
+ }
2337
+ ],
2338
+ "$value": "{color.dark.800}"
1636
2339
  },
1637
2340
  "900": {
1638
- "value": "{color.dark.900}",
1639
- "type": "color",
1640
2341
  "source": "$action-default-dark-900",
1641
- "modify": [{ "type": "darken", "amount": "0.1" }]
2342
+ "modify": [
2343
+ {
2344
+ "type": "darken",
2345
+ "amount": "0.1"
2346
+ }
2347
+ ],
2348
+ "$value": "{color.dark.900}"
2349
+ },
2350
+ "base": {
2351
+ "source": "$action-default-dark-base",
2352
+ "modify": [
2353
+ {
2354
+ "type": "darken",
2355
+ "amount": "0.1"
2356
+ }
2357
+ ],
2358
+ "$value": "{color.dark.base}"
1642
2359
  }
1643
2360
  },
1644
2361
  "accent": {
1645
2362
  "a": {
1646
- "value": "{color.accent.a}",
1647
- "type": "color",
1648
2363
  "source": "$action-default-accent-a",
1649
- "modify": [{ "type": "darken", "amount": "0.1" }]
2364
+ "modify": [
2365
+ {
2366
+ "type": "darken",
2367
+ "amount": "0.1"
2368
+ }
2369
+ ],
2370
+ "$value": "{color.accent.a}"
1650
2371
  },
1651
2372
  "b": {
1652
- "value": "{color.accent.b}",
1653
- "type": "color",
1654
2373
  "source": "$action-default-accent-b",
1655
- "modify": [{ "type": "darken", "amount": "0.1" }]
2374
+ "modify": [
2375
+ {
2376
+ "type": "darken",
2377
+ "amount": "0.1"
2378
+ }
2379
+ ],
2380
+ "$value": "{color.accent.b}"
1656
2381
  }
1657
2382
  }
1658
2383
  }