@mekari/pixel3-styled-system 0.0.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 (211) hide show
  1. package/.turbo/turbo-build.log +16 -0
  2. package/chunks/packages__accordion__src__accordion.css +10 -0
  3. package/chunks/packages__avatar2__src__modules__avatar.recipes.css +166 -0
  4. package/chunks/packages__avatar__src__avatar.style.css +150 -0
  5. package/chunks/packages__avatar__src__avatar.styles.css +171 -0
  6. package/chunks/packages__avatar__src__modules__avatar.recipes.css +191 -0
  7. package/chunks/packages__core__node_modules__@mekari__pixel3-accordion__src__accordion.css +10 -0
  8. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar2__src__modules__avatar.recipes.css +166 -0
  9. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar__src__avatar.css +16 -0
  10. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar__src__avatar.style.css +150 -0
  11. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar__src__avatar.styles.css +171 -0
  12. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar__src__modules__avatar.recipes.css +191 -0
  13. package/css/conditions.mjs +34 -0
  14. package/css/css.d.ts +9 -0
  15. package/css/css.mjs +44 -0
  16. package/css/cva.d.ts +6 -0
  17. package/css/cva.mjs +85 -0
  18. package/css/cx.d.ts +5 -0
  19. package/css/cx.mjs +15 -0
  20. package/css/index.d.ts +5 -0
  21. package/css/index.mjs +4 -0
  22. package/css/sva.d.ts +4 -0
  23. package/css/sva.mjs +35 -0
  24. package/global.css +59 -0
  25. package/helpers.mjs +300 -0
  26. package/jsx/aspect-ratio.d.ts +10 -0
  27. package/jsx/aspect-ratio.mjs +16 -0
  28. package/jsx/bleed.d.ts +10 -0
  29. package/jsx/bleed.mjs +16 -0
  30. package/jsx/box.d.ts +10 -0
  31. package/jsx/box.mjs +16 -0
  32. package/jsx/center.d.ts +10 -0
  33. package/jsx/center.mjs +16 -0
  34. package/jsx/circle.d.ts +10 -0
  35. package/jsx/circle.mjs +16 -0
  36. package/jsx/container.d.ts +10 -0
  37. package/jsx/container.mjs +16 -0
  38. package/jsx/divider.d.ts +10 -0
  39. package/jsx/divider.mjs +16 -0
  40. package/jsx/factory-helper.mjs +22 -0
  41. package/jsx/factory.d.ts +4 -0
  42. package/jsx/factory.mjs +85 -0
  43. package/jsx/flex.d.ts +10 -0
  44. package/jsx/flex.mjs +16 -0
  45. package/jsx/float.d.ts +10 -0
  46. package/jsx/float.mjs +16 -0
  47. package/jsx/grid-item.d.ts +10 -0
  48. package/jsx/grid-item.mjs +16 -0
  49. package/jsx/grid.d.ts +10 -0
  50. package/jsx/grid.mjs +16 -0
  51. package/jsx/hstack.d.ts +10 -0
  52. package/jsx/hstack.mjs +16 -0
  53. package/jsx/index.d.ts +27 -0
  54. package/jsx/index.mjs +22 -0
  55. package/jsx/is-valid-prop.d.ts +5 -0
  56. package/jsx/is-valid-prop.mjs +17 -0
  57. package/jsx/link-box.d.ts +10 -0
  58. package/jsx/link-box.mjs +16 -0
  59. package/jsx/link-overlay.d.ts +10 -0
  60. package/jsx/link-overlay.mjs +16 -0
  61. package/jsx/spacer.d.ts +10 -0
  62. package/jsx/spacer.mjs +16 -0
  63. package/jsx/square.d.ts +10 -0
  64. package/jsx/square.mjs +16 -0
  65. package/jsx/stack.d.ts +10 -0
  66. package/jsx/stack.mjs +16 -0
  67. package/jsx/visually-hidden.d.ts +10 -0
  68. package/jsx/visually-hidden.mjs +16 -0
  69. package/jsx/vstack.d.ts +10 -0
  70. package/jsx/vstack.mjs +16 -0
  71. package/jsx/wrap.d.ts +10 -0
  72. package/jsx/wrap.mjs +16 -0
  73. package/package.json +40 -0
  74. package/patterns/aspect-ratio.d.ts +21 -0
  75. package/patterns/aspect-ratio.mjs +35 -0
  76. package/patterns/bleed.d.ts +22 -0
  77. package/patterns/bleed.mjs +19 -0
  78. package/patterns/box.d.ts +21 -0
  79. package/patterns/box.mjs +12 -0
  80. package/patterns/center.d.ts +21 -0
  81. package/patterns/center.mjs +18 -0
  82. package/patterns/circle.d.ts +21 -0
  83. package/patterns/circle.mjs +22 -0
  84. package/patterns/container.d.ts +21 -0
  85. package/patterns/container.mjs +18 -0
  86. package/patterns/divider.d.ts +23 -0
  87. package/patterns/divider.mjs +21 -0
  88. package/patterns/flex.d.ts +27 -0
  89. package/patterns/flex.mjs +23 -0
  90. package/patterns/float.d.ts +24 -0
  91. package/patterns/float.mjs +45 -0
  92. package/patterns/grid-item.d.ts +26 -0
  93. package/patterns/grid-item.mjs +22 -0
  94. package/patterns/grid.d.ts +25 -0
  95. package/patterns/grid.mjs +22 -0
  96. package/patterns/hstack.d.ts +22 -0
  97. package/patterns/hstack.mjs +20 -0
  98. package/patterns/index.d.ts +21 -0
  99. package/patterns/index.mjs +20 -0
  100. package/patterns/link-box.d.ts +21 -0
  101. package/patterns/link-box.mjs +19 -0
  102. package/patterns/link-overlay.d.ts +21 -0
  103. package/patterns/link-overlay.mjs +24 -0
  104. package/patterns/spacer.d.ts +21 -0
  105. package/patterns/spacer.mjs +18 -0
  106. package/patterns/square.d.ts +21 -0
  107. package/patterns/square.mjs +21 -0
  108. package/patterns/stack.d.ts +24 -0
  109. package/patterns/stack.mjs +20 -0
  110. package/patterns/visually-hidden.d.ts +21 -0
  111. package/patterns/visually-hidden.mjs +15 -0
  112. package/patterns/vstack.d.ts +22 -0
  113. package/patterns/vstack.mjs +20 -0
  114. package/patterns/wrap.d.ts +25 -0
  115. package/patterns/wrap.mjs +22 -0
  116. package/recipes/accordion.d.ts +27 -0
  117. package/recipes/accordion.mjs +50 -0
  118. package/recipes/avatar-group-recipe.d.ts +27 -0
  119. package/recipes/avatar-group-recipe.mjs +43 -0
  120. package/recipes/avatar-group-slot-recipe.d.ts +27 -0
  121. package/recipes/avatar-group-slot-recipe.mjs +43 -0
  122. package/recipes/avatar-recipe.d.ts +30 -0
  123. package/recipes/avatar-recipe.mjs +122 -0
  124. package/recipes/avatar-slot-recipe.d.ts +29 -0
  125. package/recipes/avatar-slot-recipe.mjs +116 -0
  126. package/recipes/badge-recipe.d.ts +29 -0
  127. package/recipes/badge-recipe.mjs +160 -0
  128. package/recipes/button-group-recipe.d.ts +27 -0
  129. package/recipes/button-group-recipe.mjs +22 -0
  130. package/recipes/button-recipe.d.ts +28 -0
  131. package/recipes/button-recipe.mjs +94 -0
  132. package/recipes/checkbox-slot-recipe.d.ts +27 -0
  133. package/recipes/checkbox-slot-recipe.mjs +38 -0
  134. package/recipes/create-recipe.d.ts +1 -0
  135. package/recipes/create-recipe.mjs +79 -0
  136. package/recipes/icon-recipe.d.ts +27 -0
  137. package/recipes/icon-recipe.mjs +29 -0
  138. package/recipes/index.d.ts +30 -0
  139. package/recipes/index.mjs +29 -0
  140. package/recipes/input-addon-recipe.d.ts +29 -0
  141. package/recipes/input-addon-recipe.mjs +107 -0
  142. package/recipes/input-addon-slot-recipe.d.ts +28 -0
  143. package/recipes/input-addon-slot-recipe.mjs +45 -0
  144. package/recipes/input-group-recipe.d.ts +27 -0
  145. package/recipes/input-group-recipe.mjs +30 -0
  146. package/recipes/input-group-slot-recipe.d.ts +27 -0
  147. package/recipes/input-group-slot-recipe.mjs +30 -0
  148. package/recipes/input-recipe.d.ts +30 -0
  149. package/recipes/input-recipe.mjs +63 -0
  150. package/recipes/input-slot-recipe.d.ts +28 -0
  151. package/recipes/input-slot-recipe.mjs +53 -0
  152. package/recipes/popover-content-recipe.d.ts +28 -0
  153. package/recipes/popover-content-recipe.mjs +34 -0
  154. package/recipes/popover-list-item-recipe.d.ts +27 -0
  155. package/recipes/popover-list-item-recipe.mjs +22 -0
  156. package/recipes/popover-list-recipe.d.ts +27 -0
  157. package/recipes/popover-list-recipe.mjs +22 -0
  158. package/recipes/progress-slot-recipe.d.ts +28 -0
  159. package/recipes/progress-slot-recipe.mjs +57 -0
  160. package/recipes/radio-slot-recipe.d.ts +27 -0
  161. package/recipes/radio-slot-recipe.mjs +38 -0
  162. package/recipes/select-slot-recipe.d.ts +27 -0
  163. package/recipes/select-slot-recipe.mjs +51 -0
  164. package/recipes/selected-border-recipe.d.ts +28 -0
  165. package/recipes/selected-border-recipe.mjs +88 -0
  166. package/recipes/shared-slot-recipe.d.ts +27 -0
  167. package/recipes/shared-slot-recipe.mjs +30 -0
  168. package/recipes/spinner-recipe.d.ts +27 -0
  169. package/recipes/spinner-recipe.mjs +29 -0
  170. package/recipes/tab-list-recipe.d.ts +27 -0
  171. package/recipes/tab-list-recipe.mjs +22 -0
  172. package/recipes/tab-recipe.d.ts +28 -0
  173. package/recipes/tab-recipe.mjs +87 -0
  174. package/recipes/table-container-recipe.d.ts +27 -0
  175. package/recipes/table-container-recipe.mjs +22 -0
  176. package/recipes/table-head-recipe.d.ts +27 -0
  177. package/recipes/table-head-recipe.mjs +22 -0
  178. package/recipes/table-recipe.d.ts +27 -0
  179. package/recipes/table-recipe.mjs +22 -0
  180. package/recipes/tag-recipe.d.ts +28 -0
  181. package/recipes/tag-recipe.mjs +66 -0
  182. package/recipes/tag-slot-recipe.d.ts +28 -0
  183. package/recipes/tag-slot-recipe.mjs +66 -0
  184. package/recipes/text-recipe.d.ts +28 -0
  185. package/recipes/text-recipe.mjs +40 -0
  186. package/recipes/textarea-recipe.d.ts +27 -0
  187. package/recipes/textarea-recipe.mjs +26 -0
  188. package/recipes/toggle-slot-recipe.d.ts +27 -0
  189. package/recipes/toggle-slot-recipe.mjs +38 -0
  190. package/recipes/tooltip-recipe.d.ts +27 -0
  191. package/recipes/tooltip-recipe.mjs +22 -0
  192. package/reset.css +214 -0
  193. package/styles.css +246 -0
  194. package/tokens/index.css +179 -0
  195. package/tokens/index.d.ts +9 -0
  196. package/tokens/index.mjs +848 -0
  197. package/tokens/keyframes.css +23 -0
  198. package/tokens/tokens.d.ts +57 -0
  199. package/types/composition.d.ts +111 -0
  200. package/types/conditions.d.ts +256 -0
  201. package/types/csstype.d.ts +20749 -0
  202. package/types/global.d.ts +19 -0
  203. package/types/index.d.ts +8 -0
  204. package/types/jsx.d.ts +54 -0
  205. package/types/parts.d.ts +8 -0
  206. package/types/pattern.d.ts +63 -0
  207. package/types/prop-type.d.ts +317 -0
  208. package/types/recipe.d.ts +146 -0
  209. package/types/selectors.d.ts +59 -0
  210. package/types/style-props.d.ts +653 -0
  211. package/types/system-types.d.ts +93 -0
@@ -0,0 +1,848 @@
1
+ const tokens = {
2
+ "borders.none": {
3
+ "value": "none",
4
+ "variable": "var(--mp-borders-none)"
5
+ },
6
+ "borders.sm": {
7
+ "value": "1px",
8
+ "variable": "var(--mp-borders-sm)"
9
+ },
10
+ "borders.md": {
11
+ "value": "1.5px",
12
+ "variable": "var(--mp-borders-md)"
13
+ },
14
+ "borders.lg": {
15
+ "value": "2px",
16
+ "variable": "var(--mp-borders-lg)"
17
+ },
18
+ "colors.currentcolor": {
19
+ "value": "currentcolor",
20
+ "variable": "var(--mp-colors-currentcolor)"
21
+ },
22
+ "colors.dark": {
23
+ "value": "#232933",
24
+ "variable": "var(--mp-colors-dark)"
25
+ },
26
+ "colors.white": {
27
+ "value": "#FFFFFF",
28
+ "variable": "var(--mp-colors-white)"
29
+ },
30
+ "colors.background": {
31
+ "value": "#F1F5F9",
32
+ "variable": "var(--mp-colors-background)"
33
+ },
34
+ "colors.overlay": {
35
+ "value": "rgba(22, 26, 32, 0.8)",
36
+ "variable": "var(--mp-colors-overlay)"
37
+ },
38
+ "colors.brand.capital": {
39
+ "value": "#2F5573",
40
+ "variable": "var(--mp-colors-brand-capital)"
41
+ },
42
+ "colors.brand.esign": {
43
+ "value": "#00C853",
44
+ "variable": "var(--mp-colors-brand-esign)"
45
+ },
46
+ "colors.brand.expense": {
47
+ "value": "#183883",
48
+ "variable": "var(--mp-colors-brand-expense)"
49
+ },
50
+ "colors.brand.flex": {
51
+ "value": "#7C4DFF",
52
+ "variable": "var(--mp-colors-brand-flex)"
53
+ },
54
+ "colors.brand.jurnal": {
55
+ "value": "#40C3FF",
56
+ "variable": "var(--mp-colors-brand-jurnal)"
57
+ },
58
+ "colors.brand.klikpajak": {
59
+ "value": "#FF9100",
60
+ "variable": "var(--mp-colors-brand-klikpajak)"
61
+ },
62
+ "colors.brand.mekari": {
63
+ "value": "#651FFF",
64
+ "variable": "var(--mp-colors-brand-mekari)"
65
+ },
66
+ "colors.brand.qontak": {
67
+ "value": "#2979FF",
68
+ "variable": "var(--mp-colors-brand-qontak)"
69
+ },
70
+ "colors.brand.talenta": {
71
+ "value": "#F22929",
72
+ "variable": "var(--mp-colors-brand-talenta)"
73
+ },
74
+ "colors.brand.university": {
75
+ "value": "#448AFF",
76
+ "variable": "var(--mp-colors-brand-university)"
77
+ },
78
+ "colors.gray.25": {
79
+ "value": "#F8F9FB",
80
+ "variable": "var(--mp-colors-gray-25)"
81
+ },
82
+ "colors.gray.50": {
83
+ "value": "#EDF0F2",
84
+ "variable": "var(--mp-colors-gray-50)"
85
+ },
86
+ "colors.gray.100": {
87
+ "value": "#D0D6DD",
88
+ "variable": "var(--mp-colors-gray-100)"
89
+ },
90
+ "colors.gray.400": {
91
+ "value": "#8B95A5",
92
+ "variable": "var(--mp-colors-gray-400)"
93
+ },
94
+ "colors.gray.600": {
95
+ "value": "#626B79",
96
+ "variable": "var(--mp-colors-gray-600)"
97
+ },
98
+ "colors.blue.50": {
99
+ "value": "#EAECFB",
100
+ "variable": "var(--mp-colors-blue-50)"
101
+ },
102
+ "colors.blue.100": {
103
+ "value": "#D5DEFF",
104
+ "variable": "var(--mp-colors-blue-100)"
105
+ },
106
+ "colors.blue.400": {
107
+ "value": "#4B61DD",
108
+ "variable": "var(--mp-colors-blue-400)"
109
+ },
110
+ "colors.blue.500": {
111
+ "value": "#1C44D5",
112
+ "variable": "var(--mp-colors-blue-500)"
113
+ },
114
+ "colors.blue.700": {
115
+ "value": "#0031BE",
116
+ "variable": "var(--mp-colors-blue-700)"
117
+ },
118
+ "colors.red.50": {
119
+ "value": "#FDECEE",
120
+ "variable": "var(--mp-colors-red-50)"
121
+ },
122
+ "colors.red.400": {
123
+ "value": "#DA473F",
124
+ "variable": "var(--mp-colors-red-400)"
125
+ },
126
+ "colors.red.500": {
127
+ "value": "#C83E39",
128
+ "variable": "var(--mp-colors-red-500)"
129
+ },
130
+ "colors.red.700": {
131
+ "value": "#AB3129",
132
+ "variable": "var(--mp-colors-red-700)"
133
+ },
134
+ "colors.green.50": {
135
+ "value": "#E8F5EB",
136
+ "variable": "var(--mp-colors-green-50)"
137
+ },
138
+ "colors.green.400": {
139
+ "value": "#68BE79",
140
+ "variable": "var(--mp-colors-green-400)"
141
+ },
142
+ "colors.green.500": {
143
+ "value": "#4FB262",
144
+ "variable": "var(--mp-colors-green-500)"
145
+ },
146
+ "colors.green.700": {
147
+ "value": "#3C914D",
148
+ "variable": "var(--mp-colors-green-700)"
149
+ },
150
+ "colors.orange.50": {
151
+ "value": "#FBF3DD",
152
+ "variable": "var(--mp-colors-orange-50)"
153
+ },
154
+ "colors.orange.400": {
155
+ "value": "#E0AB00",
156
+ "variable": "var(--mp-colors-orange-400)"
157
+ },
158
+ "colors.orange.500": {
159
+ "value": "#DE9400",
160
+ "variable": "var(--mp-colors-orange-500)"
161
+ },
162
+ "colors.orange.700": {
163
+ "value": "#DB8000",
164
+ "variable": "var(--mp-colors-orange-700)"
165
+ },
166
+ "colors.sky.100": {
167
+ "value": "#60A5FA",
168
+ "variable": "var(--mp-colors-sky-100)"
169
+ },
170
+ "colors.sky.400": {
171
+ "value": "#3B82F6",
172
+ "variable": "var(--mp-colors-sky-400)"
173
+ },
174
+ "colors.teal.100": {
175
+ "value": "#2DD4BF",
176
+ "variable": "var(--mp-colors-teal-100)"
177
+ },
178
+ "colors.teal.400": {
179
+ "value": "#14B8A6",
180
+ "variable": "var(--mp-colors-teal-400)"
181
+ },
182
+ "colors.violet.100": {
183
+ "value": "#A78BFA",
184
+ "variable": "var(--mp-colors-violet-100)"
185
+ },
186
+ "colors.violet.400": {
187
+ "value": "#8B5CF6",
188
+ "variable": "var(--mp-colors-violet-400)"
189
+ },
190
+ "colors.amber.100": {
191
+ "value": "#FBBF24",
192
+ "variable": "var(--mp-colors-amber-100)"
193
+ },
194
+ "colors.amber.400": {
195
+ "value": "#F59E0B",
196
+ "variable": "var(--mp-colors-amber-400)"
197
+ },
198
+ "colors.rose.100": {
199
+ "value": "#F87171",
200
+ "variable": "var(--mp-colors-rose-100)"
201
+ },
202
+ "colors.rose.400": {
203
+ "value": "#EF4444",
204
+ "variable": "var(--mp-colors-rose-400)"
205
+ },
206
+ "colors.stone.100": {
207
+ "value": "#A1A1AA",
208
+ "variable": "var(--mp-colors-stone-100)"
209
+ },
210
+ "colors.stone.400": {
211
+ "value": "#71717A",
212
+ "variable": "var(--mp-colors-stone-400)"
213
+ },
214
+ "colors.lime.100": {
215
+ "value": "#A3E635",
216
+ "variable": "var(--mp-colors-lime-100)"
217
+ },
218
+ "colors.lime.400": {
219
+ "value": "#84CC16",
220
+ "variable": "var(--mp-colors-lime-400)"
221
+ },
222
+ "colors.pink.100": {
223
+ "value": "#F472B6",
224
+ "variable": "var(--mp-colors-pink-100)"
225
+ },
226
+ "colors.pink.400": {
227
+ "value": "#EC4899",
228
+ "variable": "var(--mp-colors-pink-400)"
229
+ },
230
+ "colors.apricot.100": {
231
+ "value": "#FB923C",
232
+ "variable": "var(--mp-colors-apricot-100)"
233
+ },
234
+ "colors.apricot.400": {
235
+ "value": "#F97316",
236
+ "variable": "var(--mp-colors-apricot-400)"
237
+ },
238
+ "colors.aqua.100": {
239
+ "value": "#22D3EE",
240
+ "variable": "var(--mp-colors-aqua-100)"
241
+ },
242
+ "colors.aqua.400": {
243
+ "value": "#06B6D4",
244
+ "variable": "var(--mp-colors-aqua-400)"
245
+ },
246
+ "colors.leaf.100": {
247
+ "value": "#4ADE80",
248
+ "variable": "var(--mp-colors-leaf-100)"
249
+ },
250
+ "colors.leaf.400": {
251
+ "value": "#22C55E",
252
+ "variable": "var(--mp-colors-leaf-400)"
253
+ },
254
+ "colors.fuchsia.100": {
255
+ "value": "#E879F9",
256
+ "variable": "var(--mp-colors-fuchsia-100)"
257
+ },
258
+ "colors.fuchsia.400": {
259
+ "value": "#D946EF",
260
+ "variable": "var(--mp-colors-fuchsia-400)"
261
+ },
262
+ "colors.ice.50": {
263
+ "value": "#E0EEFF",
264
+ "variable": "var(--mp-colors-ice-50)"
265
+ },
266
+ "colors.ice.100": {
267
+ "value": "#B4D3F2",
268
+ "variable": "var(--mp-colors-ice-100)"
269
+ },
270
+ "colors.ash.100": {
271
+ "value": "#E7EDF5",
272
+ "variable": "var(--mp-colors-ash-100)"
273
+ },
274
+ "durations.slow": {
275
+ "value": "100ms",
276
+ "variable": "var(--mp-durations-slow)"
277
+ },
278
+ "durations.normal": {
279
+ "value": "250ms",
280
+ "variable": "var(--mp-durations-normal)"
281
+ },
282
+ "durations.fast": {
283
+ "value": "300ms",
284
+ "variable": "var(--mp-durations-fast)"
285
+ },
286
+ "fonts.body": {
287
+ "value": "\"inter\", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"",
288
+ "variable": "var(--mp-fonts-body)"
289
+ },
290
+ "fonts.mono": {
291
+ "value": "SFMono-Regular, Menlo, Monaco,Consolas, \"Liberation Mono\", \"Courier New\", monospace",
292
+ "variable": "var(--mp-fonts-mono)"
293
+ },
294
+ "fontSizes.xs": {
295
+ "value": "0.625rem",
296
+ "variable": "var(--mp-font-sizes-xs)"
297
+ },
298
+ "fontSizes.sm": {
299
+ "value": "0.75rem",
300
+ "variable": "var(--mp-font-sizes-sm)"
301
+ },
302
+ "fontSizes.md": {
303
+ "value": "0.875rem",
304
+ "variable": "var(--mp-font-sizes-md)"
305
+ },
306
+ "fontSizes.lg": {
307
+ "value": "1rem",
308
+ "variable": "var(--mp-font-sizes-lg)"
309
+ },
310
+ "fontSizes.xl": {
311
+ "value": "1.25rem",
312
+ "variable": "var(--mp-font-sizes-xl)"
313
+ },
314
+ "fontSizes.2xl": {
315
+ "value": "1.5rem",
316
+ "variable": "var(--mp-font-sizes-2xl)"
317
+ },
318
+ "fontWeights.regular": {
319
+ "value": "400",
320
+ "variable": "var(--mp-font-weights-regular)"
321
+ },
322
+ "fontWeights.semiBold": {
323
+ "value": "600",
324
+ "variable": "var(--mp-font-weights-semi-bold)"
325
+ },
326
+ "fontWeights.bold": {
327
+ "value": "800",
328
+ "variable": "var(--mp-font-weights-bold)"
329
+ },
330
+ "lineHeights.xs": {
331
+ "value": 1.2,
332
+ "variable": "var(--mp-line-heights-xs)"
333
+ },
334
+ "lineHeights.sm": {
335
+ "value": 1.34,
336
+ "variable": "var(--mp-line-heights-sm)"
337
+ },
338
+ "lineHeights.md": {
339
+ "value": 1.4,
340
+ "variable": "var(--mp-line-heights-md)"
341
+ },
342
+ "lineHeights.lg": {
343
+ "value": 1.429,
344
+ "variable": "var(--mp-line-heights-lg)"
345
+ },
346
+ "lineHeights.xl": {
347
+ "value": 1.5,
348
+ "variable": "var(--mp-line-heights-xl)"
349
+ },
350
+ "lineHeights.2xl": {
351
+ "value": 1.67,
352
+ "variable": "var(--mp-line-heights-2xl)"
353
+ },
354
+ "lineHeights.3xl": {
355
+ "value": 1.71,
356
+ "variable": "var(--mp-line-heights-3xl)"
357
+ },
358
+ "letterSpacings.tighter": {
359
+ "value": "-0.05em",
360
+ "variable": "var(--mp-letter-spacings-tighter)"
361
+ },
362
+ "letterSpacings.tight": {
363
+ "value": "-0.025em",
364
+ "variable": "var(--mp-letter-spacings-tight)"
365
+ },
366
+ "letterSpacings.normal": {
367
+ "value": "0",
368
+ "variable": "var(--mp-letter-spacings-normal)"
369
+ },
370
+ "letterSpacings.wide": {
371
+ "value": "0.025em",
372
+ "variable": "var(--mp-letter-spacings-wide)"
373
+ },
374
+ "letterSpacings.wider": {
375
+ "value": "0.05em",
376
+ "variable": "var(--mp-letter-spacings-wider)"
377
+ },
378
+ "letterSpacings.widest": {
379
+ "value": "0.1em",
380
+ "variable": "var(--mp-letter-spacings-widest)"
381
+ },
382
+ "opacity.0": {
383
+ "value": 0,
384
+ "variable": "var(--mp-opacity-0)"
385
+ },
386
+ "opacity.40": {
387
+ "value": 0.4,
388
+ "variable": "var(--mp-opacity-40)"
389
+ },
390
+ "opacity.60": {
391
+ "value": 0.6,
392
+ "variable": "var(--mp-opacity-60)"
393
+ },
394
+ "opacity.100": {
395
+ "value": 1,
396
+ "variable": "var(--mp-opacity-100)"
397
+ },
398
+ "radii.none": {
399
+ "value": "0",
400
+ "variable": "var(--mp-radii-none)"
401
+ },
402
+ "radii.xs": {
403
+ "value": "0.125rem",
404
+ "variable": "var(--mp-radii-xs)"
405
+ },
406
+ "radii.sm": {
407
+ "value": "0.25rem",
408
+ "variable": "var(--mp-radii-sm)"
409
+ },
410
+ "radii.md": {
411
+ "value": "0.375rem",
412
+ "variable": "var(--mp-radii-md)"
413
+ },
414
+ "radii.lg": {
415
+ "value": "0.5rem",
416
+ "variable": "var(--mp-radii-lg)"
417
+ },
418
+ "radii.xl": {
419
+ "value": "0.75rem",
420
+ "variable": "var(--mp-radii-xl)"
421
+ },
422
+ "radii.full": {
423
+ "value": "50%",
424
+ "variable": "var(--mp-radii-full)"
425
+ },
426
+ "shadows.xs": {
427
+ "value": "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14)",
428
+ "variable": "var(--mp-shadows-xs)"
429
+ },
430
+ "shadows.sm": {
431
+ "value": "0px 4px 6px -2px rgba(0, 0, 0, 0.05), 0px 10px 15px -3px rgba(0, 0, 0, 0.10)",
432
+ "variable": "var(--mp-shadows-sm)"
433
+ },
434
+ "shadows.md": {
435
+ "value": "0px 10px 10px -5px rgba(0, 0, 0, 0.04), 0px 20px 25px -5px rgba(0, 0, 0, 0.10)",
436
+ "variable": "var(--mp-shadows-md)"
437
+ },
438
+ "shadows.lg": {
439
+ "value": "0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05)",
440
+ "variable": "var(--mp-shadows-lg)"
441
+ },
442
+ "shadows.focus": {
443
+ "value": "0 0 0 3px rgba(224, 238, 255, 1)",
444
+ "variable": "var(--mp-shadows-focus)"
445
+ },
446
+ "shadows.xl": {
447
+ "value": "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)",
448
+ "variable": "var(--mp-shadows-xl)"
449
+ },
450
+ "shadows.2xl": {
451
+ "value": "0 25px 50px -12px rgba(0, 0, 0, 0.25)",
452
+ "variable": "var(--mp-shadows-2xl)"
453
+ },
454
+ "shadows.outline": {
455
+ "value": "0 0 0 3px #E0EEFF",
456
+ "variable": "var(--mp-shadows-outline)"
457
+ },
458
+ "shadows.outline-tab": {
459
+ "value": "0 0 0 2px #E0EEFF",
460
+ "variable": "var(--mp-shadows-outline-tab)"
461
+ },
462
+ "shadows.outer": {
463
+ "value": "0 0 0 3px rgba(224, 238, 255, 1)",
464
+ "variable": "var(--mp-shadows-outer)"
465
+ },
466
+ "shadows.inner": {
467
+ "value": "inset 0 2px 4px 0 rgba( 0, 0, 0, 0.06)",
468
+ "variable": "var(--mp-shadows-inner)"
469
+ },
470
+ "shadows.none": {
471
+ "value": "none",
472
+ "variable": "var(--mp-shadows-none)"
473
+ },
474
+ "sizes.0": {
475
+ "value": "0",
476
+ "variable": "var(--mp-sizes-0)"
477
+ },
478
+ "sizes.1": {
479
+ "value": "0.25rem",
480
+ "variable": "var(--mp-sizes-1)"
481
+ },
482
+ "sizes.2": {
483
+ "value": "0.5rem",
484
+ "variable": "var(--mp-sizes-2)"
485
+ },
486
+ "sizes.3": {
487
+ "value": "0.75rem",
488
+ "variable": "var(--mp-sizes-3)"
489
+ },
490
+ "sizes.4": {
491
+ "value": "1rem",
492
+ "variable": "var(--mp-sizes-4)"
493
+ },
494
+ "sizes.5": {
495
+ "value": "1.25rem",
496
+ "variable": "var(--mp-sizes-5)"
497
+ },
498
+ "sizes.6": {
499
+ "value": "1.5rem",
500
+ "variable": "var(--mp-sizes-6)"
501
+ },
502
+ "sizes.7": {
503
+ "value": "1.75rem",
504
+ "variable": "var(--mp-sizes-7)"
505
+ },
506
+ "sizes.8": {
507
+ "value": "2rem",
508
+ "variable": "var(--mp-sizes-8)"
509
+ },
510
+ "sizes.9": {
511
+ "value": "2.25rem",
512
+ "variable": "var(--mp-sizes-9)"
513
+ },
514
+ "sizes.10": {
515
+ "value": "2.5rem",
516
+ "variable": "var(--mp-sizes-10)"
517
+ },
518
+ "sizes.11": {
519
+ "value": "2.75rem",
520
+ "variable": "var(--mp-sizes-11)"
521
+ },
522
+ "sizes.12": {
523
+ "value": "3rem",
524
+ "variable": "var(--mp-sizes-12)"
525
+ },
526
+ "sizes.16": {
527
+ "value": "4rem",
528
+ "variable": "var(--mp-sizes-16)"
529
+ },
530
+ "sizes.20": {
531
+ "value": "5rem",
532
+ "variable": "var(--mp-sizes-20)"
533
+ },
534
+ "sizes.22": {
535
+ "value": "5.5rem",
536
+ "variable": "var(--mp-sizes-22)"
537
+ },
538
+ "sizes.65": {
539
+ "value": "17.5rem",
540
+ "variable": "var(--mp-sizes-65)"
541
+ },
542
+ "sizes.0.25": {
543
+ "value": "0.0625rem",
544
+ "variable": "var(--mp-sizes-0\\.25)"
545
+ },
546
+ "sizes.0.5": {
547
+ "value": "0.125rem",
548
+ "variable": "var(--mp-sizes-0\\.5)"
549
+ },
550
+ "sizes.2.5": {
551
+ "value": "0.625rem",
552
+ "variable": "var(--mp-sizes-2\\.5)"
553
+ },
554
+ "sizes.7.5": {
555
+ "value": "1.875rem",
556
+ "variable": "var(--mp-sizes-7\\.5)"
557
+ },
558
+ "sizes.9.5": {
559
+ "value": "2.375rem",
560
+ "variable": "var(--mp-sizes-9\\.5)"
561
+ },
562
+ "sizes.full": {
563
+ "value": "100%",
564
+ "variable": "var(--mp-sizes-full)"
565
+ },
566
+ "sizes.breakpoint-sm": {
567
+ "value": "22.5em",
568
+ "variable": "var(--mp-sizes-breakpoint-sm)"
569
+ },
570
+ "sizes.breakpoint-md": {
571
+ "value": "48em",
572
+ "variable": "var(--mp-sizes-breakpoint-md)"
573
+ },
574
+ "sizes.breakpoint-lg": {
575
+ "value": "64em",
576
+ "variable": "var(--mp-sizes-breakpoint-lg)"
577
+ },
578
+ "sizes.breakpoint-xl": {
579
+ "value": "80em",
580
+ "variable": "var(--mp-sizes-breakpoint-xl)"
581
+ },
582
+ "spacing.0": {
583
+ "value": "0",
584
+ "variable": "var(--mp-spacing-0)"
585
+ },
586
+ "spacing.1": {
587
+ "value": "0.25rem",
588
+ "variable": "var(--mp-spacing-1)"
589
+ },
590
+ "spacing.2": {
591
+ "value": "0.5rem",
592
+ "variable": "var(--mp-spacing-2)"
593
+ },
594
+ "spacing.3": {
595
+ "value": "0.75rem",
596
+ "variable": "var(--mp-spacing-3)"
597
+ },
598
+ "spacing.4": {
599
+ "value": "1rem",
600
+ "variable": "var(--mp-spacing-4)"
601
+ },
602
+ "spacing.5": {
603
+ "value": "1.3rem",
604
+ "variable": "var(--mp-spacing-5)"
605
+ },
606
+ "spacing.6": {
607
+ "value": "1.5rem",
608
+ "variable": "var(--mp-spacing-6)"
609
+ },
610
+ "spacing.8": {
611
+ "value": "2rem",
612
+ "variable": "var(--mp-spacing-8)"
613
+ },
614
+ "spacing.12": {
615
+ "value": "3rem",
616
+ "variable": "var(--mp-spacing-12)"
617
+ },
618
+ "spacing.16": {
619
+ "value": "4rem",
620
+ "variable": "var(--mp-spacing-16)"
621
+ },
622
+ "spacing.20": {
623
+ "value": "5rem",
624
+ "variable": "var(--mp-spacing-20)"
625
+ },
626
+ "spacing.24": {
627
+ "value": "6rem",
628
+ "variable": "var(--mp-spacing-24)"
629
+ },
630
+ "spacing.32": {
631
+ "value": "8rem",
632
+ "variable": "var(--mp-spacing-32)"
633
+ },
634
+ "spacing.40": {
635
+ "value": "10rem",
636
+ "variable": "var(--mp-spacing-40)"
637
+ },
638
+ "spacing.64": {
639
+ "value": "16rem",
640
+ "variable": "var(--mp-spacing-64)"
641
+ },
642
+ "spacing.0.5": {
643
+ "value": "0.125rem",
644
+ "variable": "var(--mp-spacing-0\\.5)"
645
+ },
646
+ "spacing.1.5": {
647
+ "value": "0.375rem",
648
+ "variable": "var(--mp-spacing-1\\.5)"
649
+ },
650
+ "zIndex.hide": {
651
+ "value": -1,
652
+ "variable": "var(--mp-z-index-hide)"
653
+ },
654
+ "zIndex.base": {
655
+ "value": 0,
656
+ "variable": "var(--mp-z-index-base)"
657
+ },
658
+ "zIndex.docked": {
659
+ "value": 10,
660
+ "variable": "var(--mp-z-index-docked)"
661
+ },
662
+ "zIndex.sticky": {
663
+ "value": 1100,
664
+ "variable": "var(--mp-z-index-sticky)"
665
+ },
666
+ "zIndex.overlay": {
667
+ "value": 1300,
668
+ "variable": "var(--mp-z-index-overlay)"
669
+ },
670
+ "zIndex.modal": {
671
+ "value": 1400,
672
+ "variable": "var(--mp-z-index-modal)"
673
+ },
674
+ "zIndex.popover": {
675
+ "value": 1500,
676
+ "variable": "var(--mp-z-index-popover)"
677
+ },
678
+ "zIndex.tooltip": {
679
+ "value": 1800,
680
+ "variable": "var(--mp-z-index-tooltip)"
681
+ },
682
+ "breakpoints.sm": {
683
+ "value": "22.5em",
684
+ "variable": "var(--mp-breakpoints-sm)"
685
+ },
686
+ "breakpoints.md": {
687
+ "value": "48em",
688
+ "variable": "var(--mp-breakpoints-md)"
689
+ },
690
+ "breakpoints.lg": {
691
+ "value": "64em",
692
+ "variable": "var(--mp-breakpoints-lg)"
693
+ },
694
+ "breakpoints.xl": {
695
+ "value": "80em",
696
+ "variable": "var(--mp-breakpoints-xl)"
697
+ },
698
+ "spacing.-0": {
699
+ "value": "calc(var(--mp-spacing-0) * -1)",
700
+ "variable": "var(--mp-spacing-0)"
701
+ },
702
+ "spacing.-1": {
703
+ "value": "calc(var(--mp-spacing-1) * -1)",
704
+ "variable": "var(--mp-spacing-1)"
705
+ },
706
+ "spacing.-2": {
707
+ "value": "calc(var(--mp-spacing-2) * -1)",
708
+ "variable": "var(--mp-spacing-2)"
709
+ },
710
+ "spacing.-3": {
711
+ "value": "calc(var(--mp-spacing-3) * -1)",
712
+ "variable": "var(--mp-spacing-3)"
713
+ },
714
+ "spacing.-4": {
715
+ "value": "calc(var(--mp-spacing-4) * -1)",
716
+ "variable": "var(--mp-spacing-4)"
717
+ },
718
+ "spacing.-5": {
719
+ "value": "calc(var(--mp-spacing-5) * -1)",
720
+ "variable": "var(--mp-spacing-5)"
721
+ },
722
+ "spacing.-6": {
723
+ "value": "calc(var(--mp-spacing-6) * -1)",
724
+ "variable": "var(--mp-spacing-6)"
725
+ },
726
+ "spacing.-8": {
727
+ "value": "calc(var(--mp-spacing-8) * -1)",
728
+ "variable": "var(--mp-spacing-8)"
729
+ },
730
+ "spacing.-12": {
731
+ "value": "calc(var(--mp-spacing-12) * -1)",
732
+ "variable": "var(--mp-spacing-12)"
733
+ },
734
+ "spacing.-16": {
735
+ "value": "calc(var(--mp-spacing-16) * -1)",
736
+ "variable": "var(--mp-spacing-16)"
737
+ },
738
+ "spacing.-20": {
739
+ "value": "calc(var(--mp-spacing-20) * -1)",
740
+ "variable": "var(--mp-spacing-20)"
741
+ },
742
+ "spacing.-24": {
743
+ "value": "calc(var(--mp-spacing-24) * -1)",
744
+ "variable": "var(--mp-spacing-24)"
745
+ },
746
+ "spacing.-32": {
747
+ "value": "calc(var(--mp-spacing-32) * -1)",
748
+ "variable": "var(--mp-spacing-32)"
749
+ },
750
+ "spacing.-40": {
751
+ "value": "calc(var(--mp-spacing-40) * -1)",
752
+ "variable": "var(--mp-spacing-40)"
753
+ },
754
+ "spacing.-64": {
755
+ "value": "calc(var(--mp-spacing-64) * -1)",
756
+ "variable": "var(--mp-spacing-64)"
757
+ },
758
+ "spacing.-0.5": {
759
+ "value": "calc(var(--mp-spacing-0\\.5) * -1)",
760
+ "variable": "var(--mp-spacing-0\\.5)"
761
+ },
762
+ "spacing.-1.5": {
763
+ "value": "calc(var(--mp-spacing-1\\.5) * -1)",
764
+ "variable": "var(--mp-spacing-1\\.5)"
765
+ },
766
+ "colors.colorPalette": {
767
+ "value": "var(--mp-colors-color-palette)",
768
+ "variable": "var(--mp-colors-color-palette)"
769
+ },
770
+ "colors.colorPalette.capital": {
771
+ "value": "var(--mp-colors-color-palette-capital)",
772
+ "variable": "var(--mp-colors-color-palette-capital)"
773
+ },
774
+ "colors.colorPalette.esign": {
775
+ "value": "var(--mp-colors-color-palette-esign)",
776
+ "variable": "var(--mp-colors-color-palette-esign)"
777
+ },
778
+ "colors.colorPalette.expense": {
779
+ "value": "var(--mp-colors-color-palette-expense)",
780
+ "variable": "var(--mp-colors-color-palette-expense)"
781
+ },
782
+ "colors.colorPalette.flex": {
783
+ "value": "var(--mp-colors-color-palette-flex)",
784
+ "variable": "var(--mp-colors-color-palette-flex)"
785
+ },
786
+ "colors.colorPalette.jurnal": {
787
+ "value": "var(--mp-colors-color-palette-jurnal)",
788
+ "variable": "var(--mp-colors-color-palette-jurnal)"
789
+ },
790
+ "colors.colorPalette.klikpajak": {
791
+ "value": "var(--mp-colors-color-palette-klikpajak)",
792
+ "variable": "var(--mp-colors-color-palette-klikpajak)"
793
+ },
794
+ "colors.colorPalette.mekari": {
795
+ "value": "var(--mp-colors-color-palette-mekari)",
796
+ "variable": "var(--mp-colors-color-palette-mekari)"
797
+ },
798
+ "colors.colorPalette.qontak": {
799
+ "value": "var(--mp-colors-color-palette-qontak)",
800
+ "variable": "var(--mp-colors-color-palette-qontak)"
801
+ },
802
+ "colors.colorPalette.talenta": {
803
+ "value": "var(--mp-colors-color-palette-talenta)",
804
+ "variable": "var(--mp-colors-color-palette-talenta)"
805
+ },
806
+ "colors.colorPalette.university": {
807
+ "value": "var(--mp-colors-color-palette-university)",
808
+ "variable": "var(--mp-colors-color-palette-university)"
809
+ },
810
+ "colors.colorPalette.25": {
811
+ "value": "var(--mp-colors-color-palette-25)",
812
+ "variable": "var(--mp-colors-color-palette-25)"
813
+ },
814
+ "colors.colorPalette.50": {
815
+ "value": "var(--mp-colors-color-palette-50)",
816
+ "variable": "var(--mp-colors-color-palette-50)"
817
+ },
818
+ "colors.colorPalette.100": {
819
+ "value": "var(--mp-colors-color-palette-100)",
820
+ "variable": "var(--mp-colors-color-palette-100)"
821
+ },
822
+ "colors.colorPalette.400": {
823
+ "value": "var(--mp-colors-color-palette-400)",
824
+ "variable": "var(--mp-colors-color-palette-400)"
825
+ },
826
+ "colors.colorPalette.600": {
827
+ "value": "var(--mp-colors-color-palette-600)",
828
+ "variable": "var(--mp-colors-color-palette-600)"
829
+ },
830
+ "colors.colorPalette.500": {
831
+ "value": "var(--mp-colors-color-palette-500)",
832
+ "variable": "var(--mp-colors-color-palette-500)"
833
+ },
834
+ "colors.colorPalette.700": {
835
+ "value": "var(--mp-colors-color-palette-700)",
836
+ "variable": "var(--mp-colors-color-palette-700)"
837
+ }
838
+ }
839
+
840
+ export function token(path, fallback) {
841
+ return tokens[path]?.value || fallback
842
+ }
843
+
844
+ function tokenVar(path, fallback) {
845
+ return tokens[path]?.variable || fallback
846
+ }
847
+
848
+ token.var = tokenVar