@sakura-ui/sakura-ui 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (215) hide show
  1. package/README.md +16 -6
  2. package/package.json +21 -15
  3. package/packages/core/package.json +26 -15
  4. package/packages/core/src/components/Button.tsx +33 -32
  5. package/packages/core/src/components/Card.tsx +29 -17
  6. package/packages/core/src/components/Code.tsx +6 -4
  7. package/packages/core/src/components/Faq.tsx +13 -7
  8. package/packages/core/src/components/Heading.tsx +42 -32
  9. package/packages/core/src/components/Icon.tsx +43 -13
  10. package/packages/core/src/components/IconButton.tsx +54 -43
  11. package/packages/core/src/components/LangSelector.tsx +135 -0
  12. package/packages/core/src/components/Link.tsx +38 -66
  13. package/packages/core/src/components/LinkCard.tsx +91 -0
  14. package/packages/core/src/components/List.tsx +14 -12
  15. package/packages/core/src/components/MenuButton.tsx +112 -0
  16. package/packages/core/src/components/NavigationItem.tsx +41 -0
  17. package/packages/core/src/components/OverflowContainer.tsx +24 -0
  18. package/packages/core/src/components/PopoverMenu.tsx +81 -0
  19. package/packages/core/src/components/Pre.tsx +6 -4
  20. package/packages/core/src/components/Table.tsx +31 -25
  21. package/packages/core/src/components/buttonStyle.ts +42 -31
  22. package/packages/core/src/components/index.ts +13 -25
  23. package/packages/core/src/icons/Close.tsx +21 -0
  24. package/packages/core/src/icons/CloseMobile.tsx +43 -0
  25. package/packages/core/src/icons/KeyboardArrowDown.tsx +24 -0
  26. package/packages/core/src/icons/Language.tsx +25 -0
  27. package/packages/core/src/icons/LanguageMobile.tsx +40 -0
  28. package/packages/core/src/icons/Menu.tsx +24 -0
  29. package/packages/core/src/icons/MenuMobile.tsx +40 -0
  30. package/packages/core/src/icons/index.ts +8 -0
  31. package/packages/core/src/icons/props.ts +5 -0
  32. package/packages/core/src/index.ts +9 -28
  33. package/packages/core/src/type.d.ts +1 -0
  34. package/packages/core/tests/Button.test.tsx +20 -10
  35. package/packages/core/tests/Card.test.tsx +16 -11
  36. package/packages/core/tests/IconButton.test.tsx +57 -0
  37. package/packages/core/tests/Link.test.tsx +60 -0
  38. package/packages/core/tests/vitest.setup.ts +1 -0
  39. package/packages/core/tsconfig.node.json +3 -2
  40. package/packages/forms/.turbo/turbo-build.log +22 -0
  41. package/packages/forms/dist/index.cjs.js +199 -120
  42. package/packages/forms/dist/index.es.js +890 -1023
  43. package/packages/forms/dist/types/components/Checkbox.d.ts +9 -4
  44. package/packages/forms/dist/types/components/Checkbox.d.ts.map +1 -1
  45. package/packages/forms/dist/types/components/FieldsetControl.d.ts +14 -9
  46. package/packages/forms/dist/types/components/FieldsetControl.d.ts.map +1 -1
  47. package/packages/forms/dist/types/components/FileInput.d.ts +10 -3
  48. package/packages/forms/dist/types/components/FileInput.d.ts.map +1 -1
  49. package/packages/forms/dist/types/components/Input.d.ts +9 -4
  50. package/packages/forms/dist/types/components/Input.d.ts.map +1 -1
  51. package/packages/forms/dist/types/components/LabelControl.d.ts +13 -8
  52. package/packages/forms/dist/types/components/LabelControl.d.ts.map +1 -1
  53. package/packages/forms/dist/types/components/Radio.d.ts +9 -4
  54. package/packages/forms/dist/types/components/Radio.d.ts.map +1 -1
  55. package/packages/forms/dist/types/components/Select.d.ts +9 -4
  56. package/packages/forms/dist/types/components/Select.d.ts.map +1 -1
  57. package/packages/forms/dist/types/components/Textarea.d.ts +8 -3
  58. package/packages/forms/dist/types/components/Textarea.d.ts.map +1 -1
  59. package/packages/forms/dist/types/components/controlled/CheckboxGroup.d.ts +16 -11
  60. package/packages/forms/dist/types/components/controlled/CheckboxGroup.d.ts.map +1 -1
  61. package/packages/forms/dist/types/components/controlled/RadioGroup.d.ts +17 -12
  62. package/packages/forms/dist/types/components/controlled/RadioGroup.d.ts.map +1 -1
  63. package/packages/forms/dist/types/components/index.d.ts +8 -8
  64. package/packages/forms/dist/types/components/index.d.ts.map +1 -1
  65. package/packages/forms/dist/types/components/inputStyle.d.ts +1 -1
  66. package/packages/forms/dist/types/components/inputStyle.d.ts.map +1 -1
  67. package/packages/forms/dist/types/index.d.ts +0 -1
  68. package/packages/forms/dist/types/index.d.ts.map +1 -1
  69. package/packages/forms/node_modules/.bin/autoprefixer +2 -2
  70. package/packages/forms/node_modules/.bin/tailwind +2 -2
  71. package/packages/forms/node_modules/.bin/tailwindcss +2 -2
  72. package/packages/forms/node_modules/.bin/ts-node +4 -4
  73. package/packages/forms/node_modules/.bin/ts-node-cwd +4 -4
  74. package/packages/forms/node_modules/.bin/ts-node-esm +4 -4
  75. package/packages/forms/node_modules/.bin/ts-node-script +4 -4
  76. package/packages/forms/node_modules/.bin/ts-node-transpile-only +4 -4
  77. package/packages/forms/node_modules/.bin/ts-script +4 -4
  78. package/packages/forms/node_modules/.bin/tsc +17 -0
  79. package/packages/forms/node_modules/.bin/tsserver +17 -0
  80. package/packages/forms/node_modules/.vite/vitest/results.json +1 -0
  81. package/packages/forms/package.json +17 -14
  82. package/packages/forms/src/components/Checkbox.tsx +76 -80
  83. package/packages/forms/src/components/FieldsetControl.tsx +21 -28
  84. package/packages/forms/src/components/FileInput.tsx +87 -63
  85. package/packages/forms/src/components/Input.tsx +29 -31
  86. package/packages/forms/src/components/LabelControl.tsx +19 -25
  87. package/packages/forms/src/components/Radio.tsx +66 -69
  88. package/packages/forms/src/components/Select.tsx +65 -65
  89. package/packages/forms/src/components/Textarea.tsx +49 -54
  90. package/packages/forms/src/components/controlled/CheckboxGroup.tsx +15 -17
  91. package/packages/forms/src/components/controlled/RadioGroup.tsx +16 -18
  92. package/packages/forms/src/components/index.ts +8 -8
  93. package/packages/forms/src/components/inputStyle.ts +7 -8
  94. package/packages/forms/src/index.ts +0 -11
  95. package/packages/forms/tests/Checkbox.test.tsx +44 -0
  96. package/packages/forms/tests/FieldsetControl.test.tsx +62 -11
  97. package/packages/forms/tests/FileInput.test.tsx +25 -0
  98. package/packages/forms/tests/Input.test.tsx +12 -83
  99. package/packages/forms/tests/LabelControl.test.tsx +82 -20
  100. package/packages/forms/tests/Radio.test.tsx +23 -78
  101. package/packages/forms/tests/Select.test.tsx +30 -0
  102. package/packages/forms/tests/Textarea.test.tsx +25 -0
  103. package/packages/forms/tests/vitest.setup.ts +1 -0
  104. package/packages/forms/tsconfig.node.json +3 -2
  105. package/packages/helper/.turbo/turbo-build.log +23 -0
  106. package/packages/helper/dist/index.cjs.js +78 -0
  107. package/packages/helper/dist/index.es.js +119 -0
  108. package/packages/helper/dist/types/calc.d.ts +2 -0
  109. package/packages/helper/dist/types/calc.d.ts.map +1 -0
  110. package/packages/{forms/dist/types/utils/class.d.ts → helper/dist/types/cx.d.ts} +1 -1
  111. package/packages/helper/dist/types/cx.d.ts.map +1 -0
  112. package/packages/helper/dist/types/index.d.ts +6 -0
  113. package/packages/helper/dist/types/index.d.ts.map +1 -0
  114. package/packages/helper/dist/types/querySelector.d.ts +2 -0
  115. package/packages/helper/dist/types/querySelector.d.ts.map +1 -0
  116. package/packages/helper/dist/types/styles.d.ts +22 -0
  117. package/packages/helper/dist/types/styles.d.ts.map +1 -0
  118. package/packages/helper/dist/types/treefy.d.ts +8 -0
  119. package/packages/helper/dist/types/treefy.d.ts.map +1 -0
  120. package/packages/helper/package.json +40 -0
  121. package/packages/helper/src/calc.ts +1 -0
  122. package/packages/helper/src/index.ts +5 -0
  123. package/packages/helper/src/querySelector.ts +20 -0
  124. package/packages/helper/src/styles.ts +116 -0
  125. package/packages/helper/src/treefy.ts +22 -0
  126. package/packages/helper/tsconfig.json +13 -0
  127. package/packages/helper/tsconfig.node.json +6 -0
  128. package/packages/helper/vite.config.ts +26 -0
  129. package/packages/markdown/.turbo/turbo-build.log +22 -0
  130. package/packages/markdown/README.md +129 -0
  131. package/packages/markdown/dist/index.cjs.js +175 -0
  132. package/packages/markdown/dist/index.es.js +17098 -0
  133. package/packages/markdown/dist/types/components/Markdown.d.ts +15 -0
  134. package/packages/markdown/dist/types/components/Markdown.d.ts.map +1 -0
  135. package/packages/markdown/dist/types/components/index.d.ts +2 -0
  136. package/packages/markdown/dist/types/components/index.d.ts.map +1 -0
  137. package/packages/markdown/dist/types/index.d.ts +2 -0
  138. package/packages/markdown/dist/types/index.d.ts.map +1 -0
  139. package/packages/markdown/dist/types/plugins/attr.d.ts +3 -0
  140. package/packages/markdown/dist/types/plugins/attr.d.ts.map +1 -0
  141. package/packages/markdown/dist/types/plugins/card.d.ts +3 -0
  142. package/packages/markdown/dist/types/plugins/card.d.ts.map +1 -0
  143. package/packages/markdown/dist/types/plugins/cell.d.ts +3 -0
  144. package/packages/markdown/dist/types/plugins/cell.d.ts.map +1 -0
  145. package/packages/markdown/dist/types/plugins/faq.d.ts +3 -0
  146. package/packages/markdown/dist/types/plugins/faq.d.ts.map +1 -0
  147. package/packages/markdown/dist/types/plugins/grid.d.ts +3 -0
  148. package/packages/markdown/dist/types/plugins/grid.d.ts.map +1 -0
  149. package/packages/markdown/dist/types/plugins/headings.d.ts +9 -0
  150. package/packages/markdown/dist/types/plugins/headings.d.ts.map +1 -0
  151. package/packages/markdown/dist/types/plugins/helper.d.ts +9 -0
  152. package/packages/markdown/dist/types/plugins/helper.d.ts.map +1 -0
  153. package/packages/markdown/dist/types/plugins/index.d.ts +9 -0
  154. package/packages/markdown/dist/types/plugins/index.d.ts.map +1 -0
  155. package/packages/markdown/dist/types/plugins/linkButton.d.ts +3 -0
  156. package/packages/markdown/dist/types/plugins/linkButton.d.ts.map +1 -0
  157. package/packages/markdown/dist/types/plugins/youtube.d.ts +3 -0
  158. package/packages/markdown/dist/types/plugins/youtube.d.ts.map +1 -0
  159. package/packages/markdown/node_modules/.bin/autoprefixer +17 -0
  160. package/packages/markdown/node_modules/.bin/tailwind +17 -0
  161. package/packages/markdown/node_modules/.bin/tailwindcss +17 -0
  162. package/packages/markdown/node_modules/.bin/ts-node +17 -0
  163. package/packages/markdown/node_modules/.bin/ts-node-cwd +17 -0
  164. package/packages/markdown/node_modules/.bin/ts-node-esm +17 -0
  165. package/packages/markdown/node_modules/.bin/ts-node-script +17 -0
  166. package/packages/markdown/node_modules/.bin/ts-node-transpile-only +17 -0
  167. package/packages/markdown/node_modules/.bin/ts-script +17 -0
  168. package/packages/markdown/node_modules/.bin/tsc +17 -0
  169. package/packages/markdown/node_modules/.bin/tsserver +17 -0
  170. package/packages/markdown/package.json +83 -0
  171. package/packages/markdown/src/components/Markdown.tsx +361 -0
  172. package/packages/markdown/src/components/index.ts +1 -0
  173. package/packages/markdown/src/global.d.ts +9 -0
  174. package/packages/markdown/src/index.ts +1 -0
  175. package/packages/markdown/src/plugins/attr.ts +19 -0
  176. package/packages/markdown/src/plugins/card.ts +57 -0
  177. package/packages/markdown/src/plugins/cell.ts +47 -0
  178. package/packages/markdown/src/plugins/faq.ts +40 -0
  179. package/packages/markdown/src/plugins/grid.ts +51 -0
  180. package/packages/markdown/src/plugins/headings.ts +35 -0
  181. package/packages/markdown/src/plugins/helper.ts +27 -0
  182. package/packages/markdown/src/plugins/index.ts +8 -0
  183. package/packages/markdown/src/plugins/linkButton.ts +25 -0
  184. package/packages/markdown/src/plugins/youtube.ts +48 -0
  185. package/packages/markdown/tsconfig.json +13 -0
  186. package/packages/markdown/tsconfig.node.json +7 -0
  187. package/packages/markdown/vite.config.ts +30 -0
  188. package/packages/tailwind-theme-plugin/.turbo/turbo-build.log +22 -0
  189. package/packages/tailwind-theme-plugin/dist/index.cjs.js +1 -1
  190. package/packages/tailwind-theme-plugin/dist/index.es.js +5354 -6111
  191. package/packages/tailwind-theme-plugin/dist/types/index.d.ts +1 -1
  192. package/packages/tailwind-theme-plugin/dist/types/index.d.ts.map +1 -1
  193. package/packages/tailwind-theme-plugin/node_modules/.bin/autoprefixer +2 -2
  194. package/packages/tailwind-theme-plugin/node_modules/.bin/tailwind +2 -2
  195. package/packages/tailwind-theme-plugin/node_modules/.bin/tailwindcss +2 -2
  196. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node +4 -4
  197. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-cwd +4 -4
  198. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-esm +4 -4
  199. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-script +4 -4
  200. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-transpile-only +4 -4
  201. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-script +4 -4
  202. package/packages/tailwind-theme-plugin/node_modules/.bin/tsc +17 -0
  203. package/packages/tailwind-theme-plugin/node_modules/.bin/tsserver +17 -0
  204. package/packages/tailwind-theme-plugin/package.json +6 -6
  205. package/packages/tailwind-theme-plugin/src/index.ts +226 -291
  206. package/packages/core/src/libs/forward-ref.ts +0 -44
  207. package/packages/core/src/types/component.ts +0 -83
  208. package/packages/forms/dist/types/utils/class.d.ts.map +0 -1
  209. package/packages/forms/node_modules/.bin/acorn +0 -17
  210. package/packages/forms/node_modules/.bin/browserslist +0 -17
  211. package/packages/forms/node_modules/.bin/eslint +0 -17
  212. package/packages/forms/node_modules/.bin/vitest +0 -17
  213. package/packages/forms/src/utils/class.ts +0 -2
  214. package/packages/tailwind-theme-plugin/node_modules/.bin/browserslist +0 -17
  215. /package/packages/{core/src/libs → helper/src}/cx.ts +0 -0
@@ -73,417 +73,342 @@ const sakuraPlugin = plugin(
73
73
  extend: {
74
74
  fontSize: {
75
75
  'h-xl': [
76
- tokens.FontSize[45].value,
76
+ tokens.FontSize[45].$value,
77
77
  {
78
- fontWeight: tokens.FontWeight[700].value,
79
- lineHeight: tokens.LineHeight['1_4'].value,
78
+ fontWeight: tokens.FontWeight[700].$value,
79
+ lineHeight: tokens.LineHeight[140].$value,
80
80
  letterSpacing: '0.02em'
81
81
  }
82
82
  ],
83
83
  // h1
84
84
  'h-lg': [
85
- tokens.FontSize[36].value,
85
+ tokens.FontSize[36].$value,
86
86
  {
87
- fontWeight: tokens.FontWeight[700].value,
88
- lineHeight: tokens.LineHeight['1_4'].value,
87
+ fontWeight: tokens.FontWeight[700].$value,
88
+ lineHeight: tokens.LineHeight[140].$value,
89
89
  letterSpacing: '0.02em'
90
90
  }
91
91
  ],
92
92
  // h1 Mobile
93
93
  'h-lg-m': [
94
- tokens.FontSize[32].value,
94
+ tokens.FontSize[32].$value,
95
95
  {
96
- fontWeight: tokens.FontWeight[700].value,
97
- lineHeight: tokens.LineHeight['1_5'].value,
96
+ fontWeight: tokens.FontWeight[700].$value,
97
+ lineHeight: tokens.LineHeight[150].$value,
98
98
  letterSpacing: '0.02em'
99
99
  }
100
100
  ],
101
101
  // h2
102
102
  'h-med': [
103
- tokens.FontSize[32].value,
103
+ tokens.FontSize[32].$value,
104
104
  {
105
- fontWeight: tokens.FontWeight[700].value,
106
- lineHeight: tokens.LineHeight['1_5'].value,
105
+ fontWeight: tokens.FontWeight[700].$value,
106
+ lineHeight: tokens.LineHeight[150].$value,
107
107
  letterSpacing: '0.02em'
108
108
  }
109
109
  ],
110
110
  // h2 Mobile
111
111
  'h-med-m': [
112
- tokens.FontSize[28].value,
112
+ tokens.FontSize[28].$value,
113
113
  {
114
- fontWeight: tokens.FontWeight[700].value,
115
- lineHeight: tokens.LineHeight['1_5'].value,
114
+ fontWeight: tokens.FontWeight[700].$value,
115
+ lineHeight: tokens.LineHeight[150].$value,
116
116
  letterSpacing: '0.02em'
117
117
  }
118
118
  ],
119
119
  // h3
120
120
  'h-sm': [
121
- tokens.FontSize[28].value,
121
+ tokens.FontSize[28].$value,
122
122
  {
123
- fontWeight: tokens.FontWeight[700].value,
124
- lineHeight: tokens.LineHeight['1_5'].value,
123
+ fontWeight: tokens.FontWeight[700].$value,
124
+ lineHeight: tokens.LineHeight[150].$value,
125
125
  letterSpacing: '0.02em'
126
126
  }
127
127
  ],
128
128
  // h3 Mobile
129
129
  'h-sm-m': [
130
- tokens.FontSize[24].value,
130
+ tokens.FontSize[24].$value,
131
131
  {
132
- fontWeight: tokens.FontWeight[700].value,
133
- lineHeight: tokens.LineHeight['1_5'].value,
132
+ fontWeight: tokens.FontWeight[700].$value,
133
+ lineHeight: tokens.LineHeight[150].$value,
134
134
  letterSpacing: '0.02em'
135
135
  }
136
136
  ],
137
137
  // h4
138
138
  'h-xs': [
139
- tokens.FontSize[24].value,
139
+ tokens.FontSize[24].$value,
140
140
  {
141
- fontWeight: tokens.FontWeight[700].value,
142
- lineHeight: tokens.LineHeight['1_5'].value,
141
+ fontWeight: tokens.FontWeight[700].$value,
142
+ lineHeight: tokens.LineHeight[150].$value,
143
143
  letterSpacing: '0.02em'
144
144
  }
145
145
  ],
146
146
  // h4 Mobile
147
147
  'h-xs-m': [
148
- tokens.FontSize[22].value,
148
+ tokens.FontSize[22].$value,
149
149
  {
150
- fontWeight: tokens.FontWeight[700].value,
151
- lineHeight: tokens.LineHeight['1_5'].value,
150
+ fontWeight: tokens.FontWeight[700].$value,
151
+ lineHeight: tokens.LineHeight[150].$value,
152
152
  letterSpacing: '0.02em'
153
153
  }
154
154
  ],
155
155
  // h5 h6
156
156
  'h-xxs': [
157
- tokens.FontSize[20].value,
157
+ tokens.FontSize[20].$value,
158
158
  {
159
- fontWeight: tokens.FontWeight[700].value,
160
- lineHeight: tokens.LineHeight['1_5'].value,
159
+ fontWeight: tokens.FontWeight[700].$value,
160
+ lineHeight: tokens.LineHeight[150].$value,
161
161
  letterSpacing: '0.02em'
162
162
  }
163
163
  ],
164
164
  // h5 h6 Mobile
165
165
  'h-xxs-m': [
166
- tokens.FontSize[18].value,
166
+ tokens.FontSize[18].$value,
167
167
  {
168
- fontWeight: tokens.FontWeight[700].value,
169
- lineHeight: tokens.LineHeight['1_6'].value,
168
+ fontWeight: tokens.FontWeight[700].$value,
169
+ lineHeight: tokens.LineHeight[160].$value,
170
170
  letterSpacing: '0.02em'
171
171
  }
172
172
  ],
173
173
  base: [
174
- tokens.FontSize[16].value,
174
+ tokens.FontSize[16].$value,
175
175
  {
176
- fontWeight: tokens.FontWeight[400].value,
177
- lineHeight: tokens.LineHeight['1_7'].value,
176
+ fontWeight: tokens.FontWeight[400].$value,
177
+ lineHeight: tokens.LineHeight[170].$value,
178
178
  letterSpacing: '0.02em'
179
179
  }
180
180
  ],
181
181
  'base-sm': [
182
- tokens.FontSize[14].value,
182
+ tokens.FontSize[14].$value,
183
183
  {
184
- fontWeight: tokens.FontWeight[400].value,
185
- lineHeight: tokens.LineHeight['1_3'].value
184
+ fontWeight: tokens.FontWeight[400].$value,
185
+ lineHeight: tokens.LineHeight[130].$value
186
186
  }
187
187
  ],
188
188
  button: [
189
- tokens.FontSize[16].value,
189
+ tokens.FontSize[16].$value,
190
190
  {
191
- fontWeight: tokens.FontWeight[700].value,
192
- lineHeight: tokens.LineHeight['1_0'].value,
191
+ fontWeight: tokens.FontWeight[700].$value,
192
+ lineHeight: tokens.LineHeight[100].$value,
193
193
  letterSpacing: '0.02em'
194
194
  }
195
195
  ],
196
196
  'button-sm': [
197
- tokens.FontSize[14].value,
197
+ tokens.FontSize[14].$value,
198
198
  {
199
- fontWeight: tokens.FontWeight[700].value,
200
- lineHeight: tokens.LineHeight['1_0'].value,
199
+ fontWeight: tokens.FontWeight[700].$value,
200
+ lineHeight: tokens.LineHeight[100].$value,
201
201
  letterSpacing: '0.02em'
202
202
  }
203
203
  ],
204
204
  'label-b': [
205
- tokens.FontSize[16].value,
205
+ tokens.FontSize[16].$value,
206
206
  {
207
- fontWeight: tokens.FontWeight[700].value,
208
- lineHeight: tokens.LineHeight['1_2'].value
207
+ fontWeight: tokens.FontWeight[700].$value,
208
+ lineHeight: tokens.LineHeight[120].$value
209
209
  }
210
210
  ],
211
211
  label: [
212
- tokens.FontSize[16].value,
212
+ tokens.FontSize[16].$value,
213
213
  {
214
- fontWeight: tokens.FontWeight[400].value,
215
- lineHeight: tokens.LineHeight['1_2'].value
214
+ fontWeight: tokens.FontWeight[400].$value,
215
+ lineHeight: tokens.LineHeight[120].$value
216
216
  }
217
217
  ],
218
218
  code: [
219
- tokens.FontSize[16].value,
219
+ tokens.FontSize[16].$value,
220
220
  {
221
- fontWeight: tokens.FontWeight[400].value,
222
- lineHeight: tokens.LineHeight['1_5'].value
221
+ fontWeight: tokens.FontWeight[400].$value,
222
+ lineHeight: tokens.LineHeight[150].$value
223
223
  }
224
224
  ]
225
225
  },
226
226
  colors: {
227
- white: tokens.Color.Neutral.White.value,
228
- black: tokens.Color.Neutral.Black.value,
229
- sea: {
230
- 50: tokens.Color.Primitive.Sea[50].value,
231
- 100: tokens.Color.Primitive.Sea[100].value,
232
- 200: tokens.Color.Primitive.Sea[200].value,
233
- 300: tokens.Color.Primitive.Sea[300].value,
234
- 400: tokens.Color.Primitive.Sea[400].value,
235
- 500: tokens.Color.Primitive.Sea[500].value,
236
- 600: tokens.Color.Primitive.Sea[600].value,
237
- 700: tokens.Color.Primitive.Sea[700].value,
238
- 800: tokens.Color.Primitive.Sea[800].value,
239
- 900: tokens.Color.Primitive.Sea[900].value,
240
- 1000: tokens.Color.Primitive.Sea[1000].value,
241
- 1100: tokens.Color.Primitive.Sea[1100].value,
242
- 1200: tokens.Color.Primitive.Sea[1200].value
243
- },
244
- sumi: {
245
- 50: tokens.Color.Primitive.Sumi[50].value,
246
- 100: tokens.Color.Primitive.Sumi[100].value,
247
- 200: tokens.Color.Primitive.Sumi[200].value,
248
- 300: tokens.Color.Primitive.Sumi[300].value,
249
- 400: tokens.Color.Primitive.Sumi[400].value,
250
- 500: tokens.Color.Primitive.Sumi[500].value,
251
- 600: tokens.Color.Primitive.Sumi[600].value,
252
- 700: tokens.Color.Primitive.Sumi[700].value,
253
- 800: tokens.Color.Primitive.Sumi[800].value,
254
- 900: tokens.Color.Primitive.Sumi[900].value,
255
- 1000: tokens.Color.Primitive.Sumi[1000].value,
256
- 1100: tokens.Color.Primitive.Sumi[1100].value,
257
- 1200: tokens.Color.Primitive.Sumi[1200].value
258
- },
259
- forest: {
260
- 50: tokens.Color.Primitive.Forest[50].value,
261
- 100: tokens.Color.Primitive.Forest[100].value,
262
- 200: tokens.Color.Primitive.Forest[200].value,
263
- 300: tokens.Color.Primitive.Forest[300].value,
264
- 400: tokens.Color.Primitive.Forest[400].value,
265
- 500: tokens.Color.Primitive.Forest[500].value,
266
- 600: tokens.Color.Primitive.Forest[600].value,
267
- 700: tokens.Color.Primitive.Forest[700].value,
268
- 800: tokens.Color.Primitive.Forest[800].value,
269
- 900: tokens.Color.Primitive.Forest[900].value,
270
- 1000: tokens.Color.Primitive.Forest[1000].value,
271
- 1100: tokens.Color.Primitive.Forest[1100].value,
272
- 1200: tokens.Color.Primitive.Forest[1200].value
273
- },
274
- wood: {
275
- 50: tokens.Color.Primitive.Wood[50].value,
276
- 100: tokens.Color.Primitive.Wood[100].value,
277
- 200: tokens.Color.Primitive.Wood[200].value,
278
- 300: tokens.Color.Primitive.Wood[300].value,
279
- 400: tokens.Color.Primitive.Wood[400].value,
280
- 500: tokens.Color.Primitive.Wood[500].value,
281
- 600: tokens.Color.Primitive.Wood[600].value,
282
- 700: tokens.Color.Primitive.Wood[700].value,
283
- 800: tokens.Color.Primitive.Wood[800].value,
284
- 900: tokens.Color.Primitive.Wood[900].value,
285
- 1000: tokens.Color.Primitive.Wood[1000].value,
286
- 1100: tokens.Color.Primitive.Wood[1100].value,
287
- 1200: tokens.Color.Primitive.Wood[1200].value
288
- },
289
- sun: {
290
- 50: tokens.Color.Primitive.Sun[50].value,
291
- 100: tokens.Color.Primitive.Sun[100].value,
292
- 200: tokens.Color.Primitive.Sun[200].value,
293
- 300: tokens.Color.Primitive.Sun[300].value,
294
- 400: tokens.Color.Primitive.Sun[400].value,
295
- 500: tokens.Color.Primitive.Sun[500].value,
296
- 600: tokens.Color.Primitive.Sun[600].value,
297
- 700: tokens.Color.Primitive.Sun[700].value,
298
- 800: tokens.Color.Primitive.Sun[800].value,
299
- 900: tokens.Color.Primitive.Sun[900].value,
300
- 1000: tokens.Color.Primitive.Sun[1000].value,
301
- 1100: tokens.Color.Primitive.Sun[1100].value,
302
- 1200: tokens.Color.Primitive.Sun[1200].value
303
- },
227
+ white: tokens.Color.Neutral.White.$value,
228
+ black: tokens.Color.Neutral.Black.$value,
304
229
  blue: {
305
- 50: tokens.Color.Primitive.Blue[50].value,
306
- 100: tokens.Color.Primitive.Blue[100].value,
307
- 200: tokens.Color.Primitive.Blue[200].value,
308
- 300: tokens.Color.Primitive.Blue[300].value,
309
- 400: tokens.Color.Primitive.Blue[400].value,
310
- 500: tokens.Color.Primitive.Blue[500].value,
311
- 600: tokens.Color.Primitive.Blue[600].value,
312
- 700: tokens.Color.Primitive.Blue[700].value,
313
- 800: tokens.Color.Primitive.Blue[800].value,
314
- 900: tokens.Color.Primitive.Blue[900].value,
315
- 1000: tokens.Color.Primitive.Blue[1000].value,
316
- 1100: tokens.Color.Primitive.Blue[1100].value,
317
- 1200: tokens.Color.Primitive.Blue[1200].value
230
+ 50: tokens.Color.Primitive.Blue[50].$value,
231
+ 100: tokens.Color.Primitive.Blue[100].$value,
232
+ 200: tokens.Color.Primitive.Blue[200].$value,
233
+ 300: tokens.Color.Primitive.Blue[300].$value,
234
+ 400: tokens.Color.Primitive.Blue[400].$value,
235
+ 500: tokens.Color.Primitive.Blue[500].$value,
236
+ 600: tokens.Color.Primitive.Blue[600].$value,
237
+ 700: tokens.Color.Primitive.Blue[700].$value,
238
+ 800: tokens.Color.Primitive.Blue[800].$value,
239
+ 900: tokens.Color.Primitive.Blue[900].$value,
240
+ 1000: tokens.Color.Primitive.Blue[1000].$value,
241
+ 1100: tokens.Color.Primitive.Blue[1100].$value,
242
+ 1200: tokens.Color.Primitive.Blue[1200].$value
318
243
  },
319
244
  'light-blue': {
320
- 50: tokens.Color.Primitive.LightBlue[50].value,
321
- 100: tokens.Color.Primitive.LightBlue[100].value,
322
- 200: tokens.Color.Primitive.LightBlue[200].value,
323
- 300: tokens.Color.Primitive.LightBlue[300].value,
324
- 400: tokens.Color.Primitive.LightBlue[400].value,
325
- 500: tokens.Color.Primitive.LightBlue[500].value,
326
- 600: tokens.Color.Primitive.LightBlue[600].value,
327
- 700: tokens.Color.Primitive.LightBlue[700].value,
328
- 800: tokens.Color.Primitive.LightBlue[800].value,
329
- 900: tokens.Color.Primitive.LightBlue[900].value,
330
- 1000: tokens.Color.Primitive.LightBlue[1000].value,
331
- 1100: tokens.Color.Primitive.LightBlue[1100].value,
332
- 1200: tokens.Color.Primitive.LightBlue[1200].value
245
+ 50: tokens.Color.Primitive.LightBlue[50].$value,
246
+ 100: tokens.Color.Primitive.LightBlue[100].$value,
247
+ 200: tokens.Color.Primitive.LightBlue[200].$value,
248
+ 300: tokens.Color.Primitive.LightBlue[300].$value,
249
+ 400: tokens.Color.Primitive.LightBlue[400].$value,
250
+ 500: tokens.Color.Primitive.LightBlue[500].$value,
251
+ 600: tokens.Color.Primitive.LightBlue[600].$value,
252
+ 700: tokens.Color.Primitive.LightBlue[700].$value,
253
+ 800: tokens.Color.Primitive.LightBlue[800].$value,
254
+ 900: tokens.Color.Primitive.LightBlue[900].$value,
255
+ 1000: tokens.Color.Primitive.LightBlue[1000].$value,
256
+ 1100: tokens.Color.Primitive.LightBlue[1100].$value,
257
+ 1200: tokens.Color.Primitive.LightBlue[1200].$value
333
258
  },
334
259
  cyan: {
335
- 50: tokens.Color.Primitive.Cyan[50].value,
336
- 100: tokens.Color.Primitive.Cyan[100].value,
337
- 200: tokens.Color.Primitive.Cyan[200].value,
338
- 300: tokens.Color.Primitive.Cyan[300].value,
339
- 400: tokens.Color.Primitive.Cyan[400].value,
340
- 500: tokens.Color.Primitive.Cyan[500].value,
341
- 600: tokens.Color.Primitive.Cyan[600].value,
342
- 700: tokens.Color.Primitive.Cyan[700].value,
343
- 800: tokens.Color.Primitive.Cyan[800].value,
344
- 900: tokens.Color.Primitive.Cyan[900].value,
345
- 1000: tokens.Color.Primitive.Cyan[1000].value,
346
- 1100: tokens.Color.Primitive.Cyan[1100].value,
347
- 1200: tokens.Color.Primitive.Cyan[1200].value
260
+ 50: tokens.Color.Primitive.Cyan[50].$value,
261
+ 100: tokens.Color.Primitive.Cyan[100].$value,
262
+ 200: tokens.Color.Primitive.Cyan[200].$value,
263
+ 300: tokens.Color.Primitive.Cyan[300].$value,
264
+ 400: tokens.Color.Primitive.Cyan[400].$value,
265
+ 500: tokens.Color.Primitive.Cyan[500].$value,
266
+ 600: tokens.Color.Primitive.Cyan[600].$value,
267
+ 700: tokens.Color.Primitive.Cyan[700].$value,
268
+ 800: tokens.Color.Primitive.Cyan[800].$value,
269
+ 900: tokens.Color.Primitive.Cyan[900].$value,
270
+ 1000: tokens.Color.Primitive.Cyan[1000].$value,
271
+ 1100: tokens.Color.Primitive.Cyan[1100].$value,
272
+ 1200: tokens.Color.Primitive.Cyan[1200].$value
348
273
  },
349
274
  green: {
350
- 50: tokens.Color.Primitive.Green[50].value,
351
- 100: tokens.Color.Primitive.Green[100].value,
352
- 200: tokens.Color.Primitive.Green[200].value,
353
- 300: tokens.Color.Primitive.Green[300].value,
354
- 400: tokens.Color.Primitive.Green[400].value,
355
- 500: tokens.Color.Primitive.Green[500].value,
356
- 600: tokens.Color.Primitive.Green[600].value,
357
- 700: tokens.Color.Primitive.Green[700].value,
358
- 800: tokens.Color.Primitive.Green[800].value,
359
- 900: tokens.Color.Primitive.Green[900].value,
360
- 1000: tokens.Color.Primitive.Green[1000].value,
361
- 1100: tokens.Color.Primitive.Green[1100].value,
362
- 1200: tokens.Color.Primitive.Green[1200].value
275
+ 50: tokens.Color.Primitive.Green[50].$value,
276
+ 100: tokens.Color.Primitive.Green[100].$value,
277
+ 200: tokens.Color.Primitive.Green[200].$value,
278
+ 300: tokens.Color.Primitive.Green[300].$value,
279
+ 400: tokens.Color.Primitive.Green[400].$value,
280
+ 500: tokens.Color.Primitive.Green[500].$value,
281
+ 600: tokens.Color.Primitive.Green[600].$value,
282
+ 700: tokens.Color.Primitive.Green[700].$value,
283
+ 800: tokens.Color.Primitive.Green[800].$value,
284
+ 900: tokens.Color.Primitive.Green[900].$value,
285
+ 1000: tokens.Color.Primitive.Green[1000].$value,
286
+ 1100: tokens.Color.Primitive.Green[1100].$value,
287
+ 1200: tokens.Color.Primitive.Green[1200].$value
363
288
  },
364
289
  lime: {
365
- 50: tokens.Color.Primitive.Lime[50].value,
366
- 100: tokens.Color.Primitive.Lime[100].value,
367
- 200: tokens.Color.Primitive.Lime[200].value,
368
- 300: tokens.Color.Primitive.Lime[300].value,
369
- 400: tokens.Color.Primitive.Lime[400].value,
370
- 500: tokens.Color.Primitive.Lime[500].value,
371
- 600: tokens.Color.Primitive.Lime[600].value,
372
- 700: tokens.Color.Primitive.Lime[700].value,
373
- 800: tokens.Color.Primitive.Lime[800].value,
374
- 900: tokens.Color.Primitive.Lime[900].value,
375
- 1000: tokens.Color.Primitive.Lime[1000].value,
376
- 1100: tokens.Color.Primitive.Lime[1100].value,
377
- 1200: tokens.Color.Primitive.Lime[1200].value
290
+ 50: tokens.Color.Primitive.Lime[50].$value,
291
+ 100: tokens.Color.Primitive.Lime[100].$value,
292
+ 200: tokens.Color.Primitive.Lime[200].$value,
293
+ 300: tokens.Color.Primitive.Lime[300].$value,
294
+ 400: tokens.Color.Primitive.Lime[400].$value,
295
+ 500: tokens.Color.Primitive.Lime[500].$value,
296
+ 600: tokens.Color.Primitive.Lime[600].$value,
297
+ 700: tokens.Color.Primitive.Lime[700].$value,
298
+ 800: tokens.Color.Primitive.Lime[800].$value,
299
+ 900: tokens.Color.Primitive.Lime[900].$value,
300
+ 1000: tokens.Color.Primitive.Lime[1000].$value,
301
+ 1100: tokens.Color.Primitive.Lime[1100].$value,
302
+ 1200: tokens.Color.Primitive.Lime[1200].$value
378
303
  },
379
304
  yellow: {
380
- 50: tokens.Color.Primitive.Yellow[50].value,
381
- 100: tokens.Color.Primitive.Yellow[100].value,
382
- 200: tokens.Color.Primitive.Yellow[200].value,
383
- 300: tokens.Color.Primitive.Yellow[300].value,
384
- 400: tokens.Color.Primitive.Yellow[400].value,
385
- 500: tokens.Color.Primitive.Yellow[500].value,
386
- 600: tokens.Color.Primitive.Yellow[600].value,
387
- 700: tokens.Color.Primitive.Yellow[700].value,
388
- 800: tokens.Color.Primitive.Yellow[800].value,
389
- 900: tokens.Color.Primitive.Yellow[900].value,
390
- 1000: tokens.Color.Primitive.Yellow[1000].value,
391
- 1100: tokens.Color.Primitive.Yellow[1100].value,
392
- 1200: tokens.Color.Primitive.Yellow[1200].value
305
+ 50: tokens.Color.Primitive.Yellow[50].$value,
306
+ 100: tokens.Color.Primitive.Yellow[100].$value,
307
+ 200: tokens.Color.Primitive.Yellow[200].$value,
308
+ 300: tokens.Color.Primitive.Yellow[300].$value,
309
+ 400: tokens.Color.Primitive.Yellow[400].$value,
310
+ 500: tokens.Color.Primitive.Yellow[500].$value,
311
+ 600: tokens.Color.Primitive.Yellow[600].$value,
312
+ 700: tokens.Color.Primitive.Yellow[700].$value,
313
+ 800: tokens.Color.Primitive.Yellow[800].$value,
314
+ 900: tokens.Color.Primitive.Yellow[900].$value,
315
+ 1000: tokens.Color.Primitive.Yellow[1000].$value,
316
+ 1100: tokens.Color.Primitive.Yellow[1100].$value,
317
+ 1200: tokens.Color.Primitive.Yellow[1200].$value
393
318
  },
394
319
  orange: {
395
- 50: tokens.Color.Primitive.Orange[50].value,
396
- 100: tokens.Color.Primitive.Orange[100].value,
397
- 200: tokens.Color.Primitive.Orange[200].value,
398
- 300: tokens.Color.Primitive.Orange[300].value,
399
- 400: tokens.Color.Primitive.Orange[400].value,
400
- 500: tokens.Color.Primitive.Orange[500].value,
401
- 600: tokens.Color.Primitive.Orange[600].value,
402
- 700: tokens.Color.Primitive.Orange[700].value,
403
- 800: tokens.Color.Primitive.Orange[800].value,
404
- 900: tokens.Color.Primitive.Orange[900].value,
405
- 1000: tokens.Color.Primitive.Orange[1000].value,
406
- 1100: tokens.Color.Primitive.Orange[1100].value,
407
- 1200: tokens.Color.Primitive.Orange[1200].value
320
+ 50: tokens.Color.Primitive.Orange[50].$value,
321
+ 100: tokens.Color.Primitive.Orange[100].$value,
322
+ 200: tokens.Color.Primitive.Orange[200].$value,
323
+ 300: tokens.Color.Primitive.Orange[300].$value,
324
+ 400: tokens.Color.Primitive.Orange[400].$value,
325
+ 500: tokens.Color.Primitive.Orange[500].$value,
326
+ 600: tokens.Color.Primitive.Orange[600].$value,
327
+ 700: tokens.Color.Primitive.Orange[700].$value,
328
+ 800: tokens.Color.Primitive.Orange[800].$value,
329
+ 900: tokens.Color.Primitive.Orange[900].$value,
330
+ 1000: tokens.Color.Primitive.Orange[1000].$value,
331
+ 1100: tokens.Color.Primitive.Orange[1100].$value,
332
+ 1200: tokens.Color.Primitive.Orange[1200].$value
408
333
  },
409
334
  red: {
410
- 50: tokens.Color.Primitive.Red[50].value,
411
- 100: tokens.Color.Primitive.Red[100].value,
412
- 200: tokens.Color.Primitive.Red[200].value,
413
- 300: tokens.Color.Primitive.Red[300].value,
414
- 400: tokens.Color.Primitive.Red[400].value,
415
- 500: tokens.Color.Primitive.Red[500].value,
416
- 600: tokens.Color.Primitive.Red[600].value,
417
- 700: tokens.Color.Primitive.Red[700].value,
418
- 800: tokens.Color.Primitive.Red[800].value,
419
- 900: tokens.Color.Primitive.Red[900].value,
420
- 1000: tokens.Color.Primitive.Red[1000].value,
421
- 1100: tokens.Color.Primitive.Red[1100].value,
422
- 1200: tokens.Color.Primitive.Red[1200].value
335
+ 50: tokens.Color.Primitive.Red[50].$value,
336
+ 100: tokens.Color.Primitive.Red[100].$value,
337
+ 200: tokens.Color.Primitive.Red[200].$value,
338
+ 300: tokens.Color.Primitive.Red[300].$value,
339
+ 400: tokens.Color.Primitive.Red[400].$value,
340
+ 500: tokens.Color.Primitive.Red[500].$value,
341
+ 600: tokens.Color.Primitive.Red[600].$value,
342
+ 700: tokens.Color.Primitive.Red[700].$value,
343
+ 800: tokens.Color.Primitive.Red[800].$value,
344
+ 900: tokens.Color.Primitive.Red[900].$value,
345
+ 1000: tokens.Color.Primitive.Red[1000].$value,
346
+ 1100: tokens.Color.Primitive.Red[1100].$value,
347
+ 1200: tokens.Color.Primitive.Red[1200].$value
423
348
  },
424
349
  magenta: {
425
- 50: tokens.Color.Primitive.Magenta[50].value,
426
- 100: tokens.Color.Primitive.Magenta[100].value,
427
- 200: tokens.Color.Primitive.Magenta[200].value,
428
- 300: tokens.Color.Primitive.Magenta[300].value,
429
- 400: tokens.Color.Primitive.Magenta[400].value,
430
- 500: tokens.Color.Primitive.Magenta[500].value,
431
- 600: tokens.Color.Primitive.Magenta[600].value,
432
- 700: tokens.Color.Primitive.Magenta[700].value,
433
- 800: tokens.Color.Primitive.Magenta[800].value,
434
- 900: tokens.Color.Primitive.Magenta[900].value,
435
- 1000: tokens.Color.Primitive.Magenta[1000].value,
436
- 1100: tokens.Color.Primitive.Magenta[1100].value,
437
- 1200: tokens.Color.Primitive.Magenta[1200].value
350
+ 50: tokens.Color.Primitive.Magenta[50].$value,
351
+ 100: tokens.Color.Primitive.Magenta[100].$value,
352
+ 200: tokens.Color.Primitive.Magenta[200].$value,
353
+ 300: tokens.Color.Primitive.Magenta[300].$value,
354
+ 400: tokens.Color.Primitive.Magenta[400].$value,
355
+ 500: tokens.Color.Primitive.Magenta[500].$value,
356
+ 600: tokens.Color.Primitive.Magenta[600].$value,
357
+ 700: tokens.Color.Primitive.Magenta[700].$value,
358
+ 800: tokens.Color.Primitive.Magenta[800].$value,
359
+ 900: tokens.Color.Primitive.Magenta[900].$value,
360
+ 1000: tokens.Color.Primitive.Magenta[1000].$value,
361
+ 1100: tokens.Color.Primitive.Magenta[1100].$value,
362
+ 1200: tokens.Color.Primitive.Magenta[1200].$value
438
363
  },
439
364
  purple: {
440
- 50: tokens.Color.Primitive.Purple[50].value,
441
- 100: tokens.Color.Primitive.Purple[100].value,
442
- 200: tokens.Color.Primitive.Purple[200].value,
443
- 300: tokens.Color.Primitive.Purple[300].value,
444
- 400: tokens.Color.Primitive.Purple[400].value,
445
- 500: tokens.Color.Primitive.Purple[500].value,
446
- 600: tokens.Color.Primitive.Purple[600].value,
447
- 700: tokens.Color.Primitive.Purple[700].value,
448
- 800: tokens.Color.Primitive.Purple[800].value,
449
- 900: tokens.Color.Primitive.Purple[900].value,
450
- 1000: tokens.Color.Primitive.Purple[1000].value,
451
- 1100: tokens.Color.Primitive.Purple[1100].value,
452
- 1200: tokens.Color.Primitive.Purple[1200].value
365
+ 50: tokens.Color.Primitive.Purple[50].$value,
366
+ 100: tokens.Color.Primitive.Purple[100].$value,
367
+ 200: tokens.Color.Primitive.Purple[200].$value,
368
+ 300: tokens.Color.Primitive.Purple[300].$value,
369
+ 400: tokens.Color.Primitive.Purple[400].$value,
370
+ 500: tokens.Color.Primitive.Purple[500].$value,
371
+ 600: tokens.Color.Primitive.Purple[600].$value,
372
+ 700: tokens.Color.Primitive.Purple[700].$value,
373
+ 800: tokens.Color.Primitive.Purple[800].$value,
374
+ 900: tokens.Color.Primitive.Purple[900].$value,
375
+ 1000: tokens.Color.Primitive.Purple[1000].$value,
376
+ 1100: tokens.Color.Primitive.Purple[1100].$value,
377
+ 1200: tokens.Color.Primitive.Purple[1200].$value
453
378
  },
454
- 'solid-grey': {
455
- 50: tokens.Color.Neutral.SolidGrey[50].value,
456
- 100: tokens.Color.Neutral.SolidGrey[100].value,
457
- 200: tokens.Color.Neutral.SolidGrey[200].value,
458
- 300: tokens.Color.Neutral.SolidGrey[300].value,
459
- 400: tokens.Color.Neutral.SolidGrey[400].value,
460
- 420: tokens.Color.Neutral.SolidGrey[420].value,
461
- 500: tokens.Color.Neutral.SolidGrey[500].value,
462
- 536: tokens.Color.Neutral.SolidGrey[536].value,
463
- 600: tokens.Color.Neutral.SolidGrey[600].value,
464
- 700: tokens.Color.Neutral.SolidGrey[700].value,
465
- 800: tokens.Color.Neutral.SolidGrey[800].value,
466
- 900: tokens.Color.Neutral.SolidGrey[900].value
379
+ 'solid-gray': {
380
+ 50: tokens.Color.Neutral.SolidGray[50].$value,
381
+ 100: tokens.Color.Neutral.SolidGray[100].$value,
382
+ 200: tokens.Color.Neutral.SolidGray[200].$value,
383
+ 300: tokens.Color.Neutral.SolidGray[300].$value,
384
+ 400: tokens.Color.Neutral.SolidGray[400].$value,
385
+ 420: tokens.Color.Neutral.SolidGray[420].$value,
386
+ 500: tokens.Color.Neutral.SolidGray[500].$value,
387
+ 536: tokens.Color.Neutral.SolidGray[536].$value,
388
+ 600: tokens.Color.Neutral.SolidGray[600].$value,
389
+ 700: tokens.Color.Neutral.SolidGray[700].$value,
390
+ 800: tokens.Color.Neutral.SolidGray[800].$value,
391
+ 900: tokens.Color.Neutral.SolidGray[900].$value
467
392
  },
468
- 'success-1': tokens.Color.Success[1].value,
469
- 'success-2': tokens.Color.Success[2].value,
470
- 'error-1': tokens.Color.Error[1].value,
471
- 'error-2': tokens.Color.Error[2].value,
472
- 'warning-yellow-1': tokens.Color.Warning.Yellow[1].value,
473
- 'warning-yellow-2': tokens.Color.Warning.Yellow[2].value,
474
- 'warning-orange-1': tokens.Color.Warning.Orange[1].value,
475
- 'warning-orange-2': tokens.Color.Warning.Orange[2].value,
476
- 'focus-yellow': tokens.Color.Primitive.Yellow[700].value,
477
- 'focus-blue': tokens.Color.Primitive.LightBlue[700].value
393
+ 'success-1': tokens.Color.Semantic.Success[1].$value,
394
+ 'success-2': tokens.Color.Semantic.Success[2].$value,
395
+ 'error-1': tokens.Color.Semantic.Error[1].$value,
396
+ 'error-2': tokens.Color.Semantic.Error[2].$value,
397
+ 'warning-yellow-1': tokens.Color.Semantic.Warning.Yellow[1].$value,
398
+ 'warning-yellow-2': tokens.Color.Semantic.Warning.Yellow[2].$value,
399
+ 'warning-orange-1': tokens.Color.Semantic.Warning.Orange[1].$value,
400
+ 'warning-orange-2': tokens.Color.Semantic.Warning.Orange[2].$value,
401
+ 'focus-yellow': tokens.Color.Primitive.Yellow[700].$value,
402
+ 'focus-blue': tokens.Color.Primitive.LightBlue[700].$value
478
403
  },
479
404
  lineHeight: {
480
- '1-0': tokens.LineHeight['1_0'].value,
481
- '1-2': tokens.LineHeight['1_2'].value,
482
- '1-3': tokens.LineHeight['1_3'].value,
483
- '1-4': tokens.LineHeight['1_4'].value,
484
- '1-5': tokens.LineHeight['1_5'].value,
485
- '1-6': tokens.LineHeight['1_6'].value,
486
- '1-7': tokens.LineHeight['1_7'].value
405
+ '1-0': tokens.LineHeight[100].$value,
406
+ '1-2': tokens.LineHeight[120].$value,
407
+ '1-3': tokens.LineHeight[130].$value,
408
+ '1-4': tokens.LineHeight[140].$value,
409
+ '1-5': tokens.LineHeight[150].$value,
410
+ '1-6': tokens.LineHeight[160].$value,
411
+ '1-7': tokens.LineHeight[170].$value
487
412
  },
488
413
  listStyleType: {
489
414
  'lower-latin': 'lower-latin',
@@ -510,6 +435,16 @@ const sakuraPlugin = plugin(
510
435
  'monospace'
511
436
  ],
512
437
  icon: ['Material Symbols Outlined']
438
+ },
439
+ boxShadow: {
440
+ '1': tokens.Elevation[1].$value,
441
+ '2': tokens.Elevation[2].$value,
442
+ '3': tokens.Elevation[3].$value,
443
+ '4': tokens.Elevation[4].$value,
444
+ '5': tokens.Elevation[5].$value,
445
+ '6': tokens.Elevation[6].$value,
446
+ '7': tokens.Elevation[7].$value,
447
+ '8': tokens.Elevation[8].$value
513
448
  }
514
449
  }
515
450
  }