ionbase-ui 0.16.0 → 0.18.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 (53) hide show
  1. package/README.md +71 -7
  2. package/dist/meta/Alert.json +269 -0
  3. package/dist/meta/Avatar.json +97 -0
  4. package/dist/meta/AvatarGroup.json +82 -0
  5. package/dist/meta/Badge.json +83 -0
  6. package/dist/meta/Button.json +556 -0
  7. package/dist/meta/Checkbox.json +113 -0
  8. package/dist/meta/Divider.json +30 -0
  9. package/dist/meta/FullCard.json +97 -0
  10. package/dist/meta/Header.json +91 -0
  11. package/dist/meta/Icon.json +35 -0
  12. package/dist/meta/Input.json +558 -0
  13. package/dist/meta/Link.json +239 -0
  14. package/dist/meta/Logo.json +46 -0
  15. package/dist/meta/LogoMark.json +41 -0
  16. package/dist/meta/Menu.json +50 -0
  17. package/dist/meta/MenuItem.json +75 -0
  18. package/dist/meta/Modal.json +241 -0
  19. package/dist/meta/NavItem.json +76 -0
  20. package/dist/meta/PhoneInput.json +472 -0
  21. package/dist/meta/Popover.json +124 -0
  22. package/dist/meta/Radio.json +104 -0
  23. package/dist/meta/RadioGroup.json +126 -0
  24. package/dist/meta/ScrollProgress.json +63 -0
  25. package/dist/meta/Select.json +195 -0
  26. package/dist/meta/TabItem.json +15 -0
  27. package/dist/meta/Table.json +135 -0
  28. package/dist/meta/TableBody.json +43 -0
  29. package/dist/meta/TableCell.json +105 -0
  30. package/dist/meta/TableHead.json +43 -0
  31. package/dist/meta/TableRow.json +56 -0
  32. package/dist/meta/Tabs.json +186 -0
  33. package/dist/meta/Toast.json +105 -0
  34. package/dist/meta/ToastProvider.json +75 -0
  35. package/dist/meta/Toggle.json +102 -0
  36. package/dist/meta/Tooltip.json +78 -0
  37. package/dist/meta/components.json +4816 -0
  38. package/dist/meta/contrast.json +3608 -0
  39. package/dist/meta/index.json +479 -0
  40. package/dist/styles/alert.css +10 -5
  41. package/dist/styles/tokens/base.css +25 -25
  42. package/dist/styles/tokens/theme-dark.css +11 -11
  43. package/dist/tokens/index.d.ts +8 -8
  44. package/dist/tokens/index.js +8 -8
  45. package/eslint-plugin/index.js +64 -0
  46. package/eslint-plugin/meta-data.js +66 -0
  47. package/eslint-plugin/rules/needs-accessible-name.js +88 -0
  48. package/eslint-plugin/rules/no-deprecated-props.js +74 -0
  49. package/eslint-plugin/rules/no-known-contrast-failure.js +75 -0
  50. package/eslint-plugin/rules/no-raw-style-values.js +107 -0
  51. package/eslint-plugin/rules/one-primary-action.js +128 -0
  52. package/package.json +33 -7
  53. package/stylelint-config.js +144 -0
@@ -0,0 +1,479 @@
1
+ {
2
+ "package": "ionbase-ui",
3
+ "version": "0.18.0",
4
+ "usage": "Pick a component here, then read dist/meta/<Name>.json for its full contract.",
5
+ "hooks": [
6
+ "useToast"
7
+ ],
8
+ "components": {
9
+ "Alert": {
10
+ "summary": "A persistent, in-page status message. Intent picks the ARIA role for you.",
11
+ "status": "stable",
12
+ "variants": {
13
+ "intent": [
14
+ "neutral",
15
+ "primary",
16
+ "success",
17
+ "warning",
18
+ "error",
19
+ "information"
20
+ ],
21
+ "emphasis": [
22
+ "subtle",
23
+ "solid"
24
+ ],
25
+ "layout": [
26
+ "inline",
27
+ "banner"
28
+ ]
29
+ },
30
+ "detail": "dist/meta/Alert.json",
31
+ "hasIntent": true
32
+ },
33
+ "Avatar": {
34
+ "summary": "Avatar picks its content the way Figma's `Type` variant does, but by",
35
+ "variants": {
36
+ "size": [
37
+ "mini",
38
+ "sm",
39
+ "md",
40
+ "lg"
41
+ ],
42
+ "shape": [
43
+ "circle",
44
+ "square"
45
+ ]
46
+ },
47
+ "detail": "dist/meta/Avatar.json",
48
+ "hasIntent": false
49
+ },
50
+ "AvatarGroup": {
51
+ "summary": "AvatarGroup overlaps its children by a quarter of the avatar size, matching",
52
+ "variants": {
53
+ "size": [
54
+ "mini",
55
+ "sm",
56
+ "md",
57
+ "lg"
58
+ ],
59
+ "shape": [
60
+ "circle",
61
+ "square"
62
+ ]
63
+ },
64
+ "detail": "dist/meta/AvatarGroup.json",
65
+ "hasIntent": false
66
+ },
67
+ "Badge": {
68
+ "summary": "Badge is presentational — no role, no interaction. React Aria has nothing to",
69
+ "variants": {
70
+ "intent": [
71
+ "neutral",
72
+ "primary",
73
+ "success",
74
+ "warning",
75
+ "error",
76
+ "information"
77
+ ]
78
+ },
79
+ "detail": "dist/meta/Badge.json",
80
+ "hasIntent": false
81
+ },
82
+ "Button": {
83
+ "summary": "Triggers an action in place. Never navigates.",
84
+ "status": "stable",
85
+ "variants": {
86
+ "variant": [
87
+ "success",
88
+ "primary-brand",
89
+ "primary-neutral",
90
+ "primary-soft",
91
+ "secondary",
92
+ "tertiary",
93
+ "destructive"
94
+ ],
95
+ "size": [
96
+ "sm",
97
+ "md",
98
+ "lg",
99
+ "xl"
100
+ ]
101
+ },
102
+ "detail": "dist/meta/Button.json",
103
+ "hasIntent": true
104
+ },
105
+ "Checkbox": {
106
+ "summary": "Checkbox wraps a native `<input type=\"checkbox\">` and hides it.",
107
+ "variants": {
108
+ "size": [
109
+ "sm",
110
+ "md",
111
+ "lg"
112
+ ],
113
+ "intent": [
114
+ "neutral",
115
+ "brand",
116
+ "danger"
117
+ ]
118
+ },
119
+ "detail": "dist/meta/Checkbox.json",
120
+ "hasIntent": false
121
+ },
122
+ "Divider": {
123
+ "summary": "A single `<hr>`, matching Figma's `Border` (70:22153).",
124
+ "variants": {
125
+ "orientation": [
126
+ "horizontal",
127
+ "vertical"
128
+ ]
129
+ },
130
+ "detail": "dist/meta/Divider.json",
131
+ "hasIntent": false
132
+ },
133
+ "FullCard": {
134
+ "summary": "Full Card — the full-bleed case study row from Figma `Full Card` (592:857).",
135
+ "variants": {
136
+ "alignment": [
137
+ "right",
138
+ "left"
139
+ ]
140
+ },
141
+ "detail": "dist/meta/FullCard.json",
142
+ "hasIntent": false
143
+ },
144
+ "Header": {
145
+ "summary": "Header renders Figma's four Device variants — Desktop, Tablet,",
146
+ "variants": {},
147
+ "detail": "dist/meta/Header.json",
148
+ "hasIntent": false
149
+ },
150
+ "Icon": {
151
+ "summary": "Wrapper that applies the design system's icon sizing and accessibility",
152
+ "variants": {},
153
+ "detail": "dist/meta/Icon.json",
154
+ "hasIntent": false
155
+ },
156
+ "Input": {
157
+ "summary": "A single-line text field, together with its label, helper text and error message.",
158
+ "status": "stable",
159
+ "variants": {
160
+ "size": [
161
+ "sm",
162
+ "md",
163
+ "lg"
164
+ ],
165
+ "autoCapitalize": [
166
+ "none",
167
+ "off",
168
+ "on",
169
+ "sentences",
170
+ "words",
171
+ "characters"
172
+ ]
173
+ },
174
+ "detail": "dist/meta/Input.json",
175
+ "hasIntent": true
176
+ },
177
+ "Link": {
178
+ "summary": "Link — Figma `Link` (774:1516).",
179
+ "variants": {
180
+ "variant": [
181
+ "inline",
182
+ "standalone"
183
+ ]
184
+ },
185
+ "detail": "dist/meta/Link.json",
186
+ "hasIntent": false
187
+ },
188
+ "Logo": {
189
+ "summary": "The full lockup: mark + wordmark, matching Figma's `Logo-Ionbase`",
190
+ "variants": {
191
+ "size": [
192
+ "sm",
193
+ "lg"
194
+ ],
195
+ "wordmark": [
196
+ "text",
197
+ "vector"
198
+ ]
199
+ },
200
+ "detail": "dist/meta/Logo.json",
201
+ "hasIntent": false
202
+ },
203
+ "LogoMark": {
204
+ "summary": "The bare icon glyph, no wordmark — what `Header` actually uses.",
205
+ "variants": {
206
+ "size": [
207
+ "sm",
208
+ "lg"
209
+ ]
210
+ },
211
+ "detail": "dist/meta/LogoMark.json",
212
+ "hasIntent": false
213
+ },
214
+ "Menu": {
215
+ "summary": "Menu is the list surface, not a popover.",
216
+ "variants": {},
217
+ "detail": "dist/meta/Menu.json",
218
+ "hasIntent": false
219
+ },
220
+ "MenuItem": {
221
+ "summary": null,
222
+ "variants": {},
223
+ "detail": "dist/meta/MenuItem.json",
224
+ "hasIntent": false
225
+ },
226
+ "Modal": {
227
+ "summary": "A focus-trapping dialog. Renders nothing when closed and portals when open.",
228
+ "status": "stable",
229
+ "variants": {
230
+ "size": [
231
+ "sm",
232
+ "md",
233
+ "lg",
234
+ "fullscreen"
235
+ ],
236
+ "align": [
237
+ "left",
238
+ "center"
239
+ ]
240
+ },
241
+ "detail": "dist/meta/Modal.json",
242
+ "hasIntent": true
243
+ },
244
+ "NavItem": {
245
+ "summary": "Nav Item renders an `<a>` when given `href`, a `<button>` otherwise —",
246
+ "variants": {},
247
+ "detail": "dist/meta/NavItem.json",
248
+ "hasIntent": false
249
+ },
250
+ "PhoneInput": {
251
+ "summary": "PhoneInput — Figma `Input/Phone` (80:372).",
252
+ "variants": {
253
+ "autoCapitalize": [
254
+ "none",
255
+ "off",
256
+ "on",
257
+ "sentences",
258
+ "words",
259
+ "characters"
260
+ ],
261
+ "size": [
262
+ "sm",
263
+ "md",
264
+ "lg"
265
+ ]
266
+ },
267
+ "detail": "dist/meta/PhoneInput.json",
268
+ "hasIntent": false
269
+ },
270
+ "Popover": {
271
+ "summary": "Popover — Figma `Popover` (825:1853).",
272
+ "variants": {
273
+ "placement": [
274
+ "right",
275
+ "left",
276
+ "top",
277
+ "bottom"
278
+ ],
279
+ "size": [
280
+ "sm",
281
+ "md",
282
+ "lg"
283
+ ]
284
+ },
285
+ "detail": "dist/meta/Popover.json",
286
+ "hasIntent": false
287
+ },
288
+ "Radio": {
289
+ "summary": null,
290
+ "variants": {
291
+ "size": [
292
+ "sm",
293
+ "md",
294
+ "lg"
295
+ ],
296
+ "intent": [
297
+ "neutral",
298
+ "brand",
299
+ "danger"
300
+ ]
301
+ },
302
+ "detail": "dist/meta/Radio.json",
303
+ "hasIntent": false
304
+ },
305
+ "RadioGroup": {
306
+ "summary": "Renders a `<fieldset>` with a `<legend>` rather than a div with",
307
+ "variants": {
308
+ "size": [
309
+ "sm",
310
+ "md",
311
+ "lg"
312
+ ],
313
+ "intent": [
314
+ "neutral",
315
+ "brand",
316
+ "danger"
317
+ ]
318
+ },
319
+ "detail": "dist/meta/RadioGroup.json",
320
+ "hasIntent": false
321
+ },
322
+ "ScrollProgress": {
323
+ "summary": "The compact rail is the disclosure trigger. It is a real `<button>`, so a",
324
+ "variants": {},
325
+ "detail": "dist/meta/ScrollProgress.json",
326
+ "hasIntent": false
327
+ },
328
+ "Select": {
329
+ "summary": "A dropdown over a native <select>, with the same label and error wiring as Input.",
330
+ "status": "stable",
331
+ "variants": {
332
+ "size": [
333
+ "sm",
334
+ "md",
335
+ "lg"
336
+ ]
337
+ },
338
+ "detail": "dist/meta/Select.json",
339
+ "hasIntent": true
340
+ },
341
+ "TabItem": {
342
+ "summary": null,
343
+ "variants": {},
344
+ "detail": "dist/meta/TabItem.json",
345
+ "hasIntent": false
346
+ },
347
+ "Table": {
348
+ "summary": "A data table. Table owns the scroll container and density; rows and cells are composed.",
349
+ "status": "stable",
350
+ "variants": {
351
+ "density": [
352
+ "compact",
353
+ "default",
354
+ "relaxed"
355
+ ]
356
+ },
357
+ "detail": "dist/meta/Table.json",
358
+ "hasIntent": true
359
+ },
360
+ "TableBody": {
361
+ "summary": null,
362
+ "variants": {},
363
+ "detail": "dist/meta/TableBody.json",
364
+ "hasIntent": false
365
+ },
366
+ "TableCell": {
367
+ "summary": "One component covers Figma's `Table Cell` + `Cell Text`: the two are never",
368
+ "variants": {
369
+ "scope": [
370
+ "row",
371
+ "rowgroup",
372
+ "col",
373
+ "colgroup"
374
+ ],
375
+ "align": [
376
+ "center",
377
+ "leading",
378
+ "trailing"
379
+ ],
380
+ "variant": [
381
+ "link",
382
+ "default"
383
+ ]
384
+ },
385
+ "detail": "dist/meta/TableCell.json",
386
+ "hasIntent": false
387
+ },
388
+ "TableHead": {
389
+ "summary": null,
390
+ "variants": {},
391
+ "detail": "dist/meta/TableHead.json",
392
+ "hasIntent": false
393
+ },
394
+ "TableRow": {
395
+ "summary": "A plain `<tr>`. Hover is CSS-only (`:hover` plus a `data-hovered` escape",
396
+ "variants": {},
397
+ "detail": "dist/meta/TableRow.json",
398
+ "hasIntent": false
399
+ },
400
+ "Tabs": {
401
+ "summary": null,
402
+ "variants": {
403
+ "type": [
404
+ "pill",
405
+ "underline"
406
+ ],
407
+ "size": [
408
+ "sm",
409
+ "md",
410
+ "lg"
411
+ ],
412
+ "orientation": [
413
+ "horizontal",
414
+ "vertical"
415
+ ]
416
+ },
417
+ "detail": "dist/meta/Tabs.json",
418
+ "hasIntent": false
419
+ },
420
+ "Toast": {
421
+ "summary": "Toast — Figma `Toast` (820:1655).",
422
+ "variants": {
423
+ "intent": [
424
+ "neutral",
425
+ "primary",
426
+ "success",
427
+ "warning",
428
+ "error",
429
+ "information"
430
+ ]
431
+ },
432
+ "detail": "dist/meta/Toast.json",
433
+ "hasIntent": false
434
+ },
435
+ "ToastProvider": {
436
+ "summary": "Renders the queue and supplies `useToast`.",
437
+ "variants": {
438
+ "placement": [
439
+ "top-left",
440
+ "top-right",
441
+ "bottom-left",
442
+ "bottom-right"
443
+ ]
444
+ },
445
+ "detail": "dist/meta/ToastProvider.json",
446
+ "hasIntent": false
447
+ },
448
+ "Toggle": {
449
+ "summary": "Toggle is a checkbox with `role=\"switch\"`.",
450
+ "variants": {
451
+ "size": [
452
+ "sm",
453
+ "md",
454
+ "lg"
455
+ ],
456
+ "intent": [
457
+ "neutral",
458
+ "brand",
459
+ "danger"
460
+ ]
461
+ },
462
+ "detail": "dist/meta/Toggle.json",
463
+ "hasIntent": false
464
+ },
465
+ "Tooltip": {
466
+ "summary": "Tooltip — Figma `Tooltip` (801:1568).",
467
+ "variants": {
468
+ "placement": [
469
+ "right",
470
+ "left",
471
+ "top",
472
+ "bottom"
473
+ ]
474
+ },
475
+ "detail": "dist/meta/Tooltip.json",
476
+ "hasIntent": false
477
+ }
478
+ }
479
+ }
@@ -84,11 +84,16 @@
84
84
  * at equal specificity, and only the surface and border differ per intent —
85
85
  * the text and icon are the same two roles throughout.
86
86
  *
87
- * KNOWN, pending a decision on the accent ramps: solid `success` measures
88
- * 3.69:1 in Light and solid `information` 3.44:1 in Dark against
89
- * `text/on-color`, both short of WCAG AA's 4.5:1 for normal text. Neither is a
90
- * one-step fix — every accent runs base/hover/pressed at 600/700/800, so
91
- * moving a base onto 700 makes it identical to its own hover. See AGENTS.md.
87
+ * KNOWN: solid `information` measures 3.44:1 in Dark against `text/on-color`,
88
+ * short of WCAG AA's 4.5:1. Tracked in contrast-exceptions.json and reported by
89
+ * `pnpm --filter ionbase-ui contrast` on every build.
90
+ *
91
+ * Solid `success` used to be listed here too, at 3.69:1 in Light. It is now
92
+ * 5.24:1 — fixed on 2026-08-18 by shifting the green PRIMITIVES a rung rather
93
+ * than re-pointing the role, which is also the fix `information` needs. Moving
94
+ * the role would have made the base identical to its own hover, since every
95
+ * accent runs base/hover/pressed at 600/700/800; moving the values underneath
96
+ * left every role on the rung it already had. See AGENTS.md.
92
97
  */
93
98
  .ion-alert--solid {
94
99
  --ion-alert-text: var(--text-on-color);
@@ -45,16 +45,16 @@
45
45
  --color-orange-700: #8e2f07;
46
46
  --color-orange-800: #671f07;
47
47
  --color-orange-900: #401604;
48
- --color-green-50: #effbf6;
48
+ --color-green-50: #f8fefc;
49
49
  --color-green-100: #e4f7f3;
50
50
  --color-green-200: #c6ebdc;
51
- --color-green-300: #8fdbbb;
52
- --color-green-400: #50c38c;
53
- --color-green-500: #12a154;
54
- --color-green-600: #14994e;
55
- --color-green-700: #0d7d38;
56
- --color-green-800: #076426;
57
- --color-green-900: #054d1a;
51
+ --color-green-300: #82d8b4;
52
+ --color-green-400: #39b378;
53
+ --color-green-500: #14994e;
54
+ --color-green-600: #0d7d38;
55
+ --color-green-700: #076426;
56
+ --color-green-800: #054d1a;
57
+ --color-green-900: #023c13;
58
58
  --color-blue-50: #ebf7ff;
59
59
  --color-blue-100: #e2f1fd;
60
60
  --color-blue-200: #c7e4fa;
@@ -174,16 +174,16 @@
174
174
  --neutral-700: #384252;
175
175
  --neutral-800: #1d2735;
176
176
  --neutral-900: #131923;
177
- --success-50: #effbf6;
177
+ --success-50: #f8fefc;
178
178
  --success-100: #e4f7f3;
179
179
  --success-200: #c6ebdc;
180
- --success-300: #8fdbbb;
181
- --success-400: #50c38c;
182
- --success-500: #12a154;
183
- --success-600: #14994e;
184
- --success-700: #0d7d38;
185
- --success-800: #076426;
186
- --success-900: #054d1a;
180
+ --success-300: #82d8b4;
181
+ --success-400: #39b378;
182
+ --success-500: #14994e;
183
+ --success-600: #0d7d38;
184
+ --success-700: #076426;
185
+ --success-800: #054d1a;
186
+ --success-900: #023c13;
187
187
  --warning-50: #fff4e5;
188
188
  --warning-100: #ffeed6;
189
189
  --warning-200: #fedbb4;
@@ -215,7 +215,7 @@
215
215
  --information-800: #350e8b;
216
216
  --information-900: #260769;
217
217
  --chart-1: #286ef0;
218
- --chart-2: #12a154;
218
+ --chart-2: #14994e;
219
219
  --chart-3: #5a4cd6;
220
220
  --chart-4: #ea5600;
221
221
  --chart-5: #f04299;
@@ -262,7 +262,7 @@
262
262
  --text-inverse: #f6f8f9;
263
263
  --text-primary: #1c62e3;
264
264
  --text-error: #ba1c1c;
265
- --text-success: #0d7d38;
265
+ --text-success: #076426;
266
266
  --text-warning: #af3e0e;
267
267
  --text-information: #4715b2;
268
268
  --text-link: #1541b2;
@@ -279,7 +279,7 @@
279
279
  --icon-inverse: #f6f8f9;
280
280
  --icon-primary: #1c62e3;
281
281
  --icon-error: #dc2828;
282
- --icon-success: #14994e;
282
+ --icon-success: #0d7d38;
283
283
  --icon-warning: #af3e0e;
284
284
  --icon-information: #4f3cc8;
285
285
  --icon-interactive: #384252;
@@ -312,10 +312,10 @@
312
312
  --surface-error-subtle: #fef1f1;
313
313
  --surface-error-subtle-hover: #fee7e7;
314
314
  --surface-error-tint: #fee7e7;
315
- --surface-success: #14994e;
316
- --surface-success-hover: #0d7d38;
317
- --surface-success-pressed: #076426;
318
- --surface-success-subtle: #effbf6;
315
+ --surface-success: #0d7d38;
316
+ --surface-success-hover: #076426;
317
+ --surface-success-pressed: #054d1a;
318
+ --surface-success-subtle: #f8fefc;
319
319
  --surface-success-subtle-hover: #e4f7f3;
320
320
  --surface-success-tint: #e4f7f3;
321
321
  --surface-warning: #af3e0e;
@@ -343,8 +343,8 @@
343
343
  --border-error: #ef4343;
344
344
  --border-error-strong: #ba1c1c;
345
345
  --border-error-subtle: #fed2d2;
346
- --border-success: #12a154;
347
- --border-success-strong: #0d7d38;
346
+ --border-success: #14994e;
347
+ --border-success-strong: #076426;
348
348
  --border-success-subtle: #c6ebdc;
349
349
  --border-warning: #ea5600;
350
350
  --border-warning-strong: #8e2f07;
@@ -11,7 +11,7 @@
11
11
  --text-inverse: #131923;
12
12
  --text-primary: #609cf0;
13
13
  --text-error: #ffadad;
14
- --text-success: #50c38c;
14
+ --text-success: #39b378;
15
15
  --text-warning: #ef8539;
16
16
  --text-information: #adadf5;
17
17
  --text-link: #609cf0;
@@ -26,7 +26,7 @@
26
26
  --icon-inverse: #131923;
27
27
  --icon-primary: #609cf0;
28
28
  --icon-error: #f56b6b;
29
- --icon-success: #50c38c;
29
+ --icon-success: #39b378;
30
30
  --icon-warning: #ef8539;
31
31
  --icon-information: #7e6ff1;
32
32
  --icon-interactive: #dde0e4;
@@ -59,12 +59,12 @@
59
59
  --surface-error-subtle: #811d1d;
60
60
  --surface-error-subtle-hover: #981b1b;
61
61
  --surface-error-tint: #981b1b;
62
- --surface-success: #12a154;
63
- --surface-success-hover: #50c38c;
64
- --surface-success-pressed: #8fdbbb;
65
- --surface-success-subtle: #054d1a;
66
- --surface-success-subtle-hover: #076426;
67
- --surface-success-tint: #076426;
62
+ --surface-success: #14994e;
63
+ --surface-success-hover: #39b378;
64
+ --surface-success-pressed: #82d8b4;
65
+ --surface-success-subtle: #023c13;
66
+ --surface-success-subtle-hover: #054d1a;
67
+ --surface-success-tint: #054d1a;
68
68
  --surface-warning: #ea5600;
69
69
  --surface-warning-hover: #ef8539;
70
70
  --surface-warning-pressed: #fdc17c;
@@ -90,9 +90,9 @@
90
90
  --border-error: #f56b6b;
91
91
  --border-error-strong: #dc2828;
92
92
  --border-error-subtle: #981b1b;
93
- --border-success: #50c38c;
94
- --border-success-strong: #14994e;
95
- --border-success-subtle: #076426;
93
+ --border-success: #39b378;
94
+ --border-success-strong: #0d7d38;
95
+ --border-success-subtle: #054d1a;
96
96
  --border-warning: #ef8539;
97
97
  --border-warning-strong: #af3e0e;
98
98
  --border-warning-subtle: #671f07;
@@ -1491,7 +1491,7 @@ export declare const tokenValues: {
1491
1491
  readonly Value: "#401604";
1492
1492
  };
1493
1493
  readonly "color/green/50": {
1494
- readonly Value: "#effbf6";
1494
+ readonly Value: "#f8fefc";
1495
1495
  };
1496
1496
  readonly "color/green/100": {
1497
1497
  readonly Value: "#e4f7f3";
@@ -1500,25 +1500,25 @@ export declare const tokenValues: {
1500
1500
  readonly Value: "#c6ebdc";
1501
1501
  };
1502
1502
  readonly "color/green/300": {
1503
- readonly Value: "#8fdbbb";
1503
+ readonly Value: "#82d8b4";
1504
1504
  };
1505
1505
  readonly "color/green/400": {
1506
- readonly Value: "#50c38c";
1506
+ readonly Value: "#39b378";
1507
1507
  };
1508
1508
  readonly "color/green/500": {
1509
- readonly Value: "#12a154";
1509
+ readonly Value: "#14994e";
1510
1510
  };
1511
1511
  readonly "color/green/600": {
1512
- readonly Value: "#14994e";
1512
+ readonly Value: "#0d7d38";
1513
1513
  };
1514
1514
  readonly "color/green/700": {
1515
- readonly Value: "#0d7d38";
1515
+ readonly Value: "#076426";
1516
1516
  };
1517
1517
  readonly "color/green/800": {
1518
- readonly Value: "#076426";
1518
+ readonly Value: "#054d1a";
1519
1519
  };
1520
1520
  readonly "color/green/900": {
1521
- readonly Value: "#054d1a";
1521
+ readonly Value: "#023c13";
1522
1522
  };
1523
1523
  readonly "color/blue/50": {
1524
1524
  readonly Value: "#ebf7ff";