@matteoaliano/forest-ui 0.3.0 → 0.3.1

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.
package/dist/theme.js CHANGED
@@ -5,181 +5,293 @@ var styles = require('@mui/material/styles');
5
5
  // src/theme/buildTheme.ts
6
6
 
7
7
  // src/theme/tokens.ts
8
- var colors = {
9
- base: {
10
- white: "#ffffff",
11
- black: "#000000",
12
- transparent: "#ffffff00"
13
- },
14
- brand: {
15
- 25: "#fcfaff",
16
- 50: "#f9f5ff",
17
- 100: "#f4ebff",
18
- 200: "#e9d7fe",
19
- 300: "#d6bbfb",
20
- 400: "#b692f6",
21
- 500: "#9e77ed",
22
- 600: "#7f56d9",
23
- 700: "#6941c6",
24
- 800: "#53389e",
25
- 900: "#42307d",
26
- 950: "#2c1c5f"
27
- },
28
- gray: {
29
- 25: "#fcfcfd",
30
- 50: "#f9fafb",
31
- 100: "#f2f4f7",
32
- 200: "#eaecf0",
33
- 300: "#d0d5dd",
34
- 400: "#98a2b3",
35
- 500: "#667085",
36
- 600: "#475467",
37
- 700: "#344054",
38
- 800: "#182230",
39
- 900: "#101828",
40
- 950: "#0c111d"
41
- },
42
- error: {
43
- 25: "#fffbfa",
44
- 50: "#fef3f2",
45
- 100: "#fee4e2",
46
- 200: "#fecdca",
47
- 300: "#fda29b",
48
- 400: "#f97066",
49
- 500: "#f04438",
50
- 600: "#d92d20",
51
- 700: "#b42318",
52
- 800: "#912018",
53
- 900: "#7a271a",
54
- 950: "#55160c"
55
- },
56
- warning: {
57
- 25: "#fffcf5",
58
- 50: "#fffaeb",
59
- 100: "#fef0c7",
60
- 200: "#fedf89",
61
- 300: "#fec84b",
62
- 400: "#fdb022",
63
- 500: "#f79009",
64
- 600: "#dc6803",
65
- 700: "#b54708",
66
- 800: "#93370d",
67
- 900: "#7a2e0e",
68
- 950: "#4e1d09"
69
- },
70
- success: {
71
- 25: "#f6fef9",
72
- 50: "#ecfdf3",
73
- 100: "#dcfae6",
74
- 200: "#abefc6",
75
- 300: "#75e0a7",
76
- 400: "#47cd89",
77
- 500: "#17b26a",
78
- 600: "#079455",
79
- 700: "#067647",
80
- 800: "#085d3a",
81
- 900: "#074d31",
82
- 950: "#053321"
83
- },
84
- blue: {
85
- 25: "#f5faff",
86
- 50: "#eff8ff",
87
- 100: "#d1e9ff",
88
- 200: "#b2ddff",
89
- 300: "#84caff",
90
- 400: "#53b1fd",
91
- 500: "#2e90fa",
92
- 600: "#1570ef",
93
- 700: "#175cd3",
94
- 800: "#1849a9",
95
- 900: "#194185",
96
- 950: "#102a56"
97
- },
8
+ var violet = {
9
+ 25: "#faf8ff",
10
+ 50: "#f5f0ff",
11
+ 100: "#ebe0ff",
12
+ 200: "#d6c0ff",
13
+ 300: "#b090ff",
14
+ 400: "#9D5FFF",
15
+ 500: "#7c4de6",
16
+ 600: "#5b3acc",
17
+ 700: "#3a1aad",
18
+ 800: "#190a8a",
19
+ 900: "#000066",
20
+ 950: "#000033"
21
+ };
22
+ var magenta = {
23
+ 25: "#fff8fd",
24
+ 50: "#fff0fa",
25
+ 100: "#ffe0f5",
26
+ 200: "#ffc0eb",
27
+ 300: "#ff90d8",
28
+ 400: "#FF78F3",
29
+ 500: "#e650d4",
30
+ 600: "#cc28b5",
31
+ 700: "#a3008c",
32
+ 800: "#7a0066",
33
+ 900: "#520044",
34
+ 950: "#290022"
35
+ };
36
+ var gray = {
37
+ 25: "#fdfcfc",
38
+ 50: "#faf9f8",
39
+ 100: "#f5f3f1",
40
+ 200: "#e8e5e3",
41
+ 300: "#d8d8dc",
42
+ 400: "#a0a0a6",
43
+ 500: "#71717a",
44
+ 600: "#52525b",
45
+ 700: "#3f3f46",
46
+ 800: "#27272a",
47
+ 900: "#18181b",
48
+ 950: "#09090b"
49
+ };
50
+ var red = {
51
+ 25: "#fff8f7",
52
+ 50: "#fff0ee",
53
+ 100: "#ffe0dd",
54
+ 200: "#ffc0bb",
55
+ 300: "#ff9090",
56
+ 400: "#FF2821",
57
+ 500: "#e61a1a",
58
+ 600: "#cc1010",
59
+ 700: "#a30808",
60
+ 800: "#7a0000",
61
+ 900: "#520000",
62
+ 950: "#290000"
63
+ };
64
+ var info = {
65
+ 25: "#f5faff",
66
+ 50: "#eff8ff",
67
+ 100: "#d1e9ff",
68
+ 200: "#b2ddff",
69
+ 300: "#84caff",
70
+ 400: "#53b1fd",
71
+ 500: "#2e90fa",
72
+ 600: "#1570ef",
73
+ 700: "#175cd3",
74
+ 800: "#1849a9",
75
+ 900: "#194185",
76
+ 950: "#102a56"
77
+ };
78
+ var misc = {
98
79
  teal: {
80
+ 25: "#f6fefc",
99
81
  50: "#f0fdf9",
100
82
  100: "#ccfbef",
101
83
  200: "#99f6e0",
102
84
  300: "#5fe9d0",
103
85
  400: "#2ed3b7",
86
+ 500: "#15b79e",
104
87
  600: "#0e9384",
105
- 700: "#107569"
88
+ 700: "#107569",
89
+ 800: "#125d56",
90
+ 900: "#134e48",
91
+ 950: "#0a2926"
106
92
  },
107
93
  orange: {
94
+ 25: "#fefaf5",
95
+ 50: "#fef6ee",
108
96
  100: "#fdead7",
109
97
  200: "#f9dbaf",
110
98
  300: "#f7b27a",
111
99
  400: "#f38744",
100
+ 500: "#ef6820",
112
101
  600: "#e04f16",
113
- 700: "#b93815"
102
+ 700: "#b93815",
103
+ 800: "#932f19",
104
+ 900: "#772917",
105
+ 950: "#511c10"
114
106
  },
115
107
  purple: {
108
+ 25: "#fafaff",
109
+ 50: "#f4f3ff",
116
110
  100: "#ebe9fe",
117
111
  200: "#d9d6fe",
112
+ 300: "#bdb4fe",
113
+ 400: "#9b8afb",
114
+ 500: "#7a5af8",
118
115
  600: "#6938ef",
119
- 700: "#5925dc"
116
+ 700: "#5925dc",
117
+ 800: "#4a1fb8",
118
+ 900: "#3e1c96",
119
+ 950: "#27115f"
120
120
  },
121
121
  pink: {
122
+ 25: "#fef6fb",
123
+ 50: "#fdf2fa",
122
124
  100: "#fce7f6",
123
125
  200: "#fcceee",
126
+ 300: "#faa7e0",
124
127
  400: "#f670c7",
125
128
  500: "#ee46bc",
126
129
  600: "#dd2590",
127
- 700: "#c11574"
130
+ 700: "#c11574",
131
+ 800: "#9e165f",
132
+ 900: "#851651",
133
+ 950: "#4e0d30"
128
134
  },
129
135
  fuchsia: {
136
+ 25: "#fefaff",
137
+ 50: "#fdf4ff",
130
138
  100: "#fbe8ff",
131
139
  200: "#f6d0fe",
140
+ 300: "#eeaafd",
132
141
  400: "#e478fa",
133
142
  500: "#d444f1",
134
143
  600: "#ba24d5",
135
- 700: "#9f1ab1"
144
+ 700: "#9f1ab1",
145
+ 800: "#821890",
146
+ 900: "#6f1877",
147
+ 950: "#47104c"
136
148
  },
137
149
  orangeDark: {
150
+ 25: "#fff9f5",
151
+ 50: "#fff4ed",
138
152
  100: "#ffe6d5",
139
153
  200: "#ffd6ae",
154
+ 300: "#ff9c66",
140
155
  400: "#ff692e",
141
156
  500: "#ff4405",
142
157
  600: "#e62e05",
143
- 700: "#bc1b06"
158
+ 700: "#bc1b06",
159
+ 800: "#97180c",
160
+ 900: "#771a0d",
161
+ 950: "#57130a"
144
162
  },
145
163
  green: {
164
+ 25: "#f6fef9",
165
+ 50: "#edfcf2",
146
166
  100: "#d3f8df",
147
167
  200: "#aaf0c4",
168
+ 300: "#73e2a3",
169
+ 400: "#3ccb7f",
148
170
  500: "#16b364",
149
171
  600: "#099250",
150
- 700: "#087443"
172
+ 700: "#087443",
173
+ 800: "#095c37",
174
+ 900: "#084c2e",
175
+ 950: "#052e1c"
151
176
  },
152
177
  indigo: {
178
+ 25: "#f5f8ff",
179
+ 50: "#eef4ff",
153
180
  100: "#e0eaff",
154
181
  200: "#c7d7fe",
182
+ 300: "#a4bcfd",
183
+ 400: "#8098f9",
184
+ 500: "#6172f3",
155
185
  600: "#444ce7",
156
- 700: "#3538cd"
157
- },
158
- violet: {
159
- 100: "#ece9fe",
160
- 200: "#ddd6fe",
161
- 500: "#875bf7",
162
- 600: "#7839ee"
186
+ 700: "#3538cd",
187
+ 800: "#2d31a6",
188
+ 900: "#2d3282",
189
+ 950: "#1f235b"
163
190
  },
164
191
  rose: {
192
+ 25: "#fff5f6",
193
+ 50: "#fff1f3",
165
194
  100: "#ffe4e8",
166
195
  200: "#fecdd6",
196
+ 300: "#fea3b4",
167
197
  400: "#fd6f8e",
168
- 500: "#f63d68"
198
+ 500: "#f63d68",
199
+ 600: "#e31b54",
200
+ 700: "#c01048",
201
+ 800: "#a11043",
202
+ 900: "#89123e",
203
+ 950: "#510b24"
169
204
  },
170
205
  blueLight: {
206
+ 25: "#f5fbff",
207
+ 50: "#f0f9ff",
171
208
  100: "#e0f2fe",
172
209
  200: "#b9e6fe",
210
+ 300: "#7cd4fd",
173
211
  400: "#36bffa",
174
- 500: "#0ba5ec"
212
+ 500: "#0ba5ec",
213
+ 600: "#0086c9",
214
+ 700: "#026aa2",
215
+ 800: "#065986",
216
+ 900: "#0b4a6f",
217
+ 950: "#062c41"
175
218
  },
176
219
  cyan: {
220
+ 25: "#f5feff",
221
+ 50: "#ecfdff",
177
222
  100: "#cff9fe",
178
223
  200: "#a5f0fc",
224
+ 300: "#67e3f9",
225
+ 400: "#22ccee",
226
+ 500: "#06aed4",
179
227
  600: "#088ab2",
180
- 700: "#0e7090"
228
+ 700: "#0e7090",
229
+ 800: "#155b75",
230
+ 900: "#164c63",
231
+ 950: "#0d2d3a"
181
232
  }
182
233
  };
234
+ var radiusSharp = {
235
+ xxs: 1,
236
+ xs: 2,
237
+ sm: 3,
238
+ md: 4,
239
+ lg: 5,
240
+ xl: 6,
241
+ "2xl": 8,
242
+ "3xl": 10,
243
+ "4xl": 12
244
+ };
245
+ var colors = {
246
+ base: {
247
+ white: "#ffffff",
248
+ black: "#000000",
249
+ transparent: "#ffffff00"
250
+ },
251
+ error: {
252
+ 25: "#fffbfa",
253
+ 50: "#fef3f2",
254
+ 100: "#fee4e2",
255
+ 200: "#fecdca",
256
+ 300: "#fda29b",
257
+ 400: "#f97066",
258
+ 500: "#f04438",
259
+ 600: "#d92d20",
260
+ 700: "#b42318",
261
+ 800: "#912018",
262
+ 900: "#7a271a",
263
+ 950: "#55160c"
264
+ },
265
+ warning: {
266
+ 25: "#fffcf5",
267
+ 50: "#fffaeb",
268
+ 100: "#fef0c7",
269
+ 200: "#fedf89",
270
+ 300: "#fec84b",
271
+ 400: "#fdb022",
272
+ 500: "#f79009",
273
+ 600: "#dc6803",
274
+ 700: "#b54708",
275
+ 800: "#93370d",
276
+ 900: "#7a2e0e",
277
+ 950: "#4e1d09"
278
+ },
279
+ success: {
280
+ 25: "#f6fef9",
281
+ 50: "#ecfdf3",
282
+ 100: "#dcfae6",
283
+ 200: "#abefc6",
284
+ 300: "#75e0a7",
285
+ 400: "#47cd89",
286
+ 500: "#17b26a",
287
+ 600: "#079455",
288
+ 700: "#067647",
289
+ 800: "#085d3a",
290
+ 900: "#074d31",
291
+ 950: "#053321"
292
+ },
293
+ info
294
+ };
183
295
  var spacing = {
184
296
  none: 0,
185
297
  xxs: 2,
@@ -222,12 +334,12 @@ var shadows = {
222
334
  "3xl": "0px 32px 64px -12px #10182824"
223
335
  };
224
336
  var focusRings = {
225
- brand: "0px 0px 0px 4px #9e77ed3d",
226
- brandShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #9e77ed3d",
227
- brandShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #9e77ed3d",
228
- gray: "0px 0px 0px 4px #98a2b324",
229
- grayShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #98a2b324",
230
- grayShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #98a2b324",
337
+ brand: "0px 0px 0px 4px #7c4de63d",
338
+ brandShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #7c4de63d",
339
+ brandShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #7c4de63d",
340
+ gray: "0px 0px 0px 4px #a0a0a624",
341
+ grayShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #a0a0a624",
342
+ grayShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #a0a0a624",
231
343
  error: "0px 0px 0px 4px #f044383d",
232
344
  errorShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #f044383d"
233
345
  };
@@ -281,51 +393,51 @@ var widths = {
281
393
  "6xl": 1920
282
394
  };
283
395
  var text = {
284
- primary: colors.gray[900],
285
- secondary: colors.gray[700],
286
- secondaryHover: colors.gray[800],
287
- tertiary: colors.gray[600],
288
- tertiaryHover: colors.gray[700],
289
- quaternary: colors.gray[500],
290
- disabled: colors.gray[500],
291
- placeholder: colors.gray[500],
292
- placeholderSubtle: colors.gray[300],
396
+ primary: gray[900],
397
+ secondary: gray[700],
398
+ secondaryHover: gray[800],
399
+ tertiary: gray[600],
400
+ tertiaryHover: gray[700],
401
+ quaternary: gray[500],
402
+ disabled: gray[500],
403
+ placeholder: gray[500],
404
+ placeholderSubtle: gray[300],
293
405
  white: colors.base.white,
294
- brandPrimary: colors.brand[900],
295
- brandSecondary: colors.brand[700],
296
- brandTertiary: colors.brand[600],
297
- brandTertiaryAlt: colors.brand[600],
406
+ brandPrimary: violet[900],
407
+ brandSecondary: violet[700],
408
+ brandTertiary: violet[600],
409
+ brandTertiaryAlt: violet[600],
298
410
  primaryOnBrand: colors.base.white,
299
- secondaryOnBrand: colors.brand[200],
300
- tertiaryOnBrand: colors.brand[200],
301
- quaternaryOnBrand: colors.brand[300],
411
+ secondaryOnBrand: violet[200],
412
+ tertiaryOnBrand: violet[200],
413
+ quaternaryOnBrand: violet[300],
302
414
  errorPrimary: colors.error[600],
303
415
  warningPrimary: colors.warning[600],
304
416
  successPrimary: colors.success[600]
305
417
  };
306
418
  var bg = {
307
- primary: colors.gray[50],
308
- primaryAlt: colors.gray[50],
309
- primaryHover: colors.gray[100],
310
- primarySolid: colors.gray[950],
419
+ primary: gray[50],
420
+ primaryAlt: gray[50],
421
+ primaryHover: gray[100],
422
+ primarySolid: gray[950],
311
423
  secondary: colors.base.white,
312
424
  secondaryAlt: colors.base.white,
313
- secondarySubtle: colors.gray[25],
314
- secondaryHover: colors.gray[50],
315
- secondarySolid: colors.gray[600],
316
- tertiary: colors.gray[100],
317
- quaternary: colors.gray[200],
318
- active: colors.gray[200],
319
- disabled: colors.gray[100],
320
- disabledSubtle: colors.gray[50],
321
- overlay: colors.gray[950],
322
- brandPrimary: colors.brand[50],
323
- brandPrimaryAlt: colors.brand[50],
324
- brandSecondary: colors.brand[100],
325
- brandSolid: colors.brand[600],
326
- brandSolidHover: colors.brand[700],
327
- brandSection: colors.brand[800],
328
- brandSectionSubtle: colors.brand[700],
425
+ secondarySubtle: gray[25],
426
+ secondaryHover: gray[50],
427
+ secondarySolid: gray[600],
428
+ tertiary: gray[100],
429
+ quaternary: gray[200],
430
+ active: gray[200],
431
+ disabled: gray[100],
432
+ disabledSubtle: gray[50],
433
+ overlay: gray[950],
434
+ brandPrimary: violet[50],
435
+ brandPrimaryAlt: violet[50],
436
+ brandSecondary: violet[100],
437
+ brandSolid: violet[600],
438
+ brandSolidHover: violet[700],
439
+ brandSection: violet[800],
440
+ brandSectionSubtle: violet[700],
329
441
  errorPrimary: colors.error[50],
330
442
  errorSecondary: colors.error[100],
331
443
  errorSolid: colors.error[600],
@@ -337,22 +449,22 @@ var bg = {
337
449
  successSolid: colors.success[600]
338
450
  };
339
451
  var fg = {
340
- primary: colors.gray[900],
341
- secondary: colors.gray[700],
342
- secondaryHover: colors.gray[800],
343
- tertiary: colors.gray[600],
344
- tertiaryHover: colors.gray[700],
345
- quaternary: colors.gray[500],
346
- quaternaryHover: colors.gray[600],
347
- quinary: colors.gray[400],
348
- quinaryHover: colors.gray[500],
349
- senary: colors.gray[300],
452
+ primary: gray[900],
453
+ secondary: gray[700],
454
+ secondaryHover: gray[800],
455
+ tertiary: gray[600],
456
+ tertiaryHover: gray[700],
457
+ quaternary: gray[500],
458
+ quaternaryHover: gray[600],
459
+ quinary: gray[400],
460
+ quinaryHover: gray[500],
461
+ senary: gray[300],
350
462
  white: colors.base.white,
351
- disabled: colors.gray[400],
352
- disabledSubtle: colors.gray[300],
353
- brandPrimary: colors.brand[600],
354
- brandPrimaryAlt: colors.brand[600],
355
- brandSecondary: colors.brand[500],
463
+ disabled: gray[400],
464
+ disabledSubtle: gray[300],
465
+ brandPrimary: violet[600],
466
+ brandPrimaryAlt: violet[600],
467
+ brandSecondary: violet[500],
356
468
  errorPrimary: colors.error[600],
357
469
  errorSecondary: colors.error[500],
358
470
  warningPrimary: colors.warning[600],
@@ -361,51 +473,51 @@ var fg = {
361
473
  successSecondary: colors.success[500]
362
474
  };
363
475
  var border = {
364
- primary: colors.gray[300],
365
- secondary: colors.gray[200],
366
- tertiary: colors.gray[100],
367
- disabled: colors.gray[300],
368
- disabledSubtle: colors.gray[200],
369
- brand: colors.brand[300],
370
- brandSolid: colors.brand[600],
371
- brandSolidAlt: colors.brand[600],
476
+ primary: gray[300],
477
+ secondary: gray[200],
478
+ tertiary: gray[100],
479
+ disabled: gray[300],
480
+ disabledSubtle: gray[200],
481
+ brand: violet[300],
482
+ brandSolid: violet[600],
483
+ brandSolidAlt: violet[600],
372
484
  error: colors.error[300],
373
485
  errorSolid: colors.error[600]
374
486
  };
375
487
  var buttonColors = {
376
488
  primary: {
377
- bg: colors.brand[600],
378
- bgHover: colors.brand[700],
489
+ bg: violet[600],
490
+ bgHover: violet[700],
379
491
  fg: colors.base.white,
380
492
  fgHover: colors.base.white,
381
- border: colors.brand[600],
382
- borderHover: colors.brand[700]
493
+ border: violet[600],
494
+ borderHover: violet[700]
383
495
  },
384
496
  secondary: {
385
497
  bg: colors.base.white,
386
- bgHover: colors.gray[50],
387
- fg: colors.gray[700],
388
- fgHover: colors.gray[800],
389
- border: colors.gray[300],
390
- borderHover: colors.gray[300]
498
+ bgHover: gray[50],
499
+ fg: gray[700],
500
+ fgHover: gray[800],
501
+ border: gray[300],
502
+ borderHover: gray[300]
391
503
  },
392
504
  secondaryColor: {
393
505
  bg: colors.base.white,
394
- bgHover: colors.brand[50],
395
- fg: colors.brand[700],
396
- fgHover: colors.brand[800],
397
- border: colors.brand[300],
398
- borderHover: colors.brand[300]
506
+ bgHover: violet[50],
507
+ fg: violet[700],
508
+ fgHover: violet[800],
509
+ border: violet[300],
510
+ borderHover: violet[300]
399
511
  },
400
512
  tertiary: {
401
- fg: colors.gray[600],
402
- fgHover: colors.gray[700],
403
- bgHover: colors.gray[50]
513
+ fg: gray[600],
514
+ fgHover: gray[700],
515
+ bgHover: gray[50]
404
516
  },
405
517
  tertiaryColor: {
406
- fg: colors.brand[700],
407
- fgHover: colors.brand[800],
408
- bgHover: colors.brand[50]
518
+ fg: violet[700],
519
+ fgHover: violet[800],
520
+ bgHover: violet[50]
409
521
  },
410
522
  primaryError: {
411
523
  bg: colors.error[600],
@@ -430,27 +542,27 @@ var buttonColors = {
430
542
  }
431
543
  };
432
544
  var avatarColors = {
433
- bg: colors.gray[100],
545
+ bg: gray[100],
434
546
  contrastBorder: "#00000014",
435
547
  profilePhotoBorder: colors.base.white,
436
- focusBorder: "#98a2b324"
548
+ focusBorder: "#a0a0a624"
437
549
  };
438
550
  var breadcrumbColors = {
439
- fg: colors.gray[600],
440
- fgHover: colors.gray[700],
441
- bgHover: colors.gray[50],
442
- brandBgHover: colors.brand[50],
443
- brandFgHover: colors.brand[700],
444
- iconFg: colors.gray[500],
445
- iconFgHover: colors.gray[700],
446
- brandIconFgHover: colors.brand[700]
551
+ fg: gray[600],
552
+ fgHover: gray[700],
553
+ bgHover: gray[50],
554
+ brandBgHover: violet[50],
555
+ brandFgHover: violet[700],
556
+ iconFg: gray[500],
557
+ iconFgHover: gray[700],
558
+ brandIconFgHover: violet[700]
447
559
  };
448
560
  var iconColors = {
449
- fgBrand: colors.brand[600],
450
- fgBrandOnBrand: colors.brand[200],
451
- featuredModernBorder: colors.gray[200],
452
- featuredLightFgBrand: colors.brand[600],
453
- featuredLightFgGray: colors.gray[500],
561
+ fgBrand: violet[600],
562
+ fgBrandOnBrand: violet[200],
563
+ featuredModernBorder: gray[200],
564
+ featuredLightFgBrand: violet[600],
565
+ featuredLightFgGray: gray[500],
454
566
  featuredLightFgError: colors.error[600],
455
567
  featuredLightFgWarning: colors.warning[600],
456
568
  featuredLightFgSuccess: colors.success[600],
@@ -461,42 +573,42 @@ var iconColors = {
461
573
  featuredDarkFgSuccess: colors.base.white
462
574
  };
463
575
  var navColors = {
464
- itemIconFg: colors.gray[500],
465
- itemIconFgActive: colors.gray[700],
466
- itemButtonIconFg: colors.gray[500],
467
- itemButtonIconFgActive: colors.gray[700]
576
+ itemIconFg: gray[500],
577
+ itemIconFgActive: gray[700],
578
+ itemButtonIconFg: gray[500],
579
+ itemButtonIconFgActive: gray[700]
468
580
  };
469
581
  var sliderColors = {
470
- handleBorder: colors.brand[600],
582
+ handleBorder: violet[600],
471
583
  handleBg: colors.base.white
472
584
  };
473
585
  var toggleColors = {
474
- buttonFgDisabled: colors.gray[50]
586
+ buttonFgDisabled: gray[50]
475
587
  };
476
588
  var chartColors = {
477
- axisFg: colors.gray[100],
478
- gridlineFg: colors.gray[100],
479
- labelFg: colors.gray[600],
480
- labelFgEmphasis: colors.gray[700],
589
+ axisFg: gray[100],
590
+ gridlineFg: gray[100],
591
+ labelFg: gray[600],
592
+ labelFgEmphasis: gray[700],
481
593
  bg: colors.base.white,
482
- bgAlt: colors.gray[50],
483
- tooltipBg: colors.gray[950],
594
+ bgAlt: gray[50],
595
+ tooltipBg: gray[950],
484
596
  tooltipFg: colors.base.white,
485
- crosshairFg: colors.gray[500],
597
+ crosshairFg: gray[500],
486
598
  legendFg: text.tertiary,
487
599
  series: [
488
- { fg: colors.violet[500], fgHover: colors.violet[600], bg: colors.violet[100], bgHover: colors.violet[200] },
489
- { fg: colors.orangeDark[400], fgHover: colors.orangeDark[500], bg: colors.orangeDark[100], bgHover: colors.orangeDark[200] },
490
- { fg: colors.teal[300], fgHover: colors.teal[400], bg: colors.teal[50], bgHover: colors.teal[100] },
600
+ { fg: misc.purple[500], fgHover: misc.purple[600], bg: misc.purple[100], bgHover: misc.purple[200] },
601
+ { fg: misc.orangeDark[400], fgHover: misc.orangeDark[500], bg: misc.orangeDark[100], bgHover: misc.orangeDark[200] },
602
+ { fg: misc.teal[300], fgHover: misc.teal[400], bg: misc.teal[50], bgHover: misc.teal[100] },
491
603
  { fg: colors.warning[400], fgHover: colors.warning[500], bg: colors.warning[100], bgHover: colors.warning[200] },
492
- { fg: colors.rose[400], fgHover: colors.rose[500], bg: colors.rose[100], bgHover: colors.rose[200] },
493
- { fg: colors.blueLight[400], fgHover: colors.blueLight[500], bg: colors.blueLight[100], bgHover: colors.blueLight[200] },
494
- { fg: colors.orange[300], fgHover: colors.orange[400], bg: colors.orange[100], bgHover: colors.orange[200] },
495
- { fg: colors.cyan[600], fgHover: colors.cyan[700], bg: colors.cyan[100], bgHover: colors.cyan[200] },
496
- { fg: colors.green[500], fgHover: colors.green[600], bg: colors.green[100], bgHover: colors.green[200] },
497
- { fg: colors.pink[400], fgHover: colors.pink[500], bg: colors.pink[100], bgHover: colors.pink[200] },
498
- { fg: colors.fuchsia[400], fgHover: colors.fuchsia[500], bg: colors.fuchsia[100], bgHover: colors.fuchsia[200] },
499
- { fg: colors.teal[600], fgHover: colors.teal[700], bg: colors.teal[100], bgHover: colors.teal[200] }
604
+ { fg: misc.rose[400], fgHover: misc.rose[500], bg: misc.rose[100], bgHover: misc.rose[200] },
605
+ { fg: misc.blueLight[400], fgHover: misc.blueLight[500], bg: misc.blueLight[100], bgHover: misc.blueLight[200] },
606
+ { fg: misc.orange[300], fgHover: misc.orange[400], bg: misc.orange[100], bgHover: misc.orange[200] },
607
+ { fg: misc.cyan[600], fgHover: misc.cyan[700], bg: misc.cyan[100], bgHover: misc.cyan[200] },
608
+ { fg: misc.green[500], fgHover: misc.green[600], bg: misc.green[100], bgHover: misc.green[200] },
609
+ { fg: misc.pink[400], fgHover: misc.pink[500], bg: misc.pink[100], bgHover: misc.pink[200] },
610
+ { fg: misc.fuchsia[400], fgHover: misc.fuchsia[500], bg: misc.fuchsia[100], bgHover: misc.fuchsia[200] },
611
+ { fg: misc.teal[600], fgHover: misc.teal[700], bg: misc.teal[100], bgHover: misc.teal[200] }
500
612
  ]
501
613
  };
502
614
  var alpha = {
@@ -532,16 +644,16 @@ function buildPalette(tokens) {
532
644
  const { colors: colors5, text: text5, bg: bg5, fg: fg5, border: border5 } = tokens;
533
645
  return {
534
646
  primary: {
535
- main: colors5.brand[600],
536
- light: colors5.brand[400],
537
- dark: colors5.brand[700],
538
- contrastText: colors5.base.white
647
+ main: violet[600],
648
+ light: violet[400],
649
+ dark: violet[700],
650
+ contrastText: tokens.colors.base.white
539
651
  },
540
652
  secondary: {
541
- main: colors5.gray[600],
542
- light: colors5.gray[400],
543
- dark: colors5.gray[700],
544
- contrastText: colors5.base.white
653
+ main: gray[600],
654
+ light: gray[400],
655
+ dark: gray[700],
656
+ contrastText: tokens.colors.base.white
545
657
  },
546
658
  error: {
547
659
  main: colors5.error[600],
@@ -562,10 +674,10 @@ function buildPalette(tokens) {
562
674
  contrastText: colors5.base.white
563
675
  },
564
676
  info: {
565
- main: colors5.blue[600],
566
- light: colors5.blue[300],
567
- dark: colors5.blue[700],
568
- contrastText: colors5.base.white
677
+ main: tokens.colors.info[600],
678
+ light: tokens.colors.info[300],
679
+ dark: tokens.colors.info[700],
680
+ contrastText: tokens.colors.base.white
569
681
  },
570
682
  background: {
571
683
  default: bg5.primary,
@@ -1036,7 +1148,7 @@ function buildComponents(tokens) {
1036
1148
  color: fg5.brandPrimary
1037
1149
  },
1038
1150
  "&.Mui-checked:hover": {
1039
- color: colors5.brand[700]
1151
+ color: violet[700]
1040
1152
  },
1041
1153
  "&.Mui-focusVisible": {
1042
1154
  outline: "none",
@@ -1066,7 +1178,7 @@ function buildComponents(tokens) {
1066
1178
  color: fg5.brandPrimary
1067
1179
  },
1068
1180
  "&.Mui-checked:hover": {
1069
- color: colors5.brand[700]
1181
+ color: violet[700]
1070
1182
  },
1071
1183
  "&.Mui-focusVisible": {
1072
1184
  outline: "none",
@@ -1101,7 +1213,7 @@ function buildComponents(tokens) {
1101
1213
  }
1102
1214
  },
1103
1215
  "&.Mui-checked:hover + .MuiSwitch-track": {
1104
- backgroundColor: colors5.brand[700]
1216
+ backgroundColor: violet[700]
1105
1217
  },
1106
1218
  "&.Mui-focusVisible .MuiSwitch-thumb": {
1107
1219
  boxShadow: focusRings5.brand
@@ -1372,23 +1484,23 @@ function buildComponents(tokens) {
1372
1484
  },
1373
1485
  colorDefault: {
1374
1486
  "&.MuiChip-filled": {
1375
- backgroundColor: colors5.gray[50],
1376
- color: colors5.gray[700],
1377
- "& .MuiChip-deleteIcon": { color: colors5.gray[400] }
1487
+ backgroundColor: gray[50],
1488
+ color: gray[700],
1489
+ "& .MuiChip-deleteIcon": { color: gray[400] }
1378
1490
  }
1379
1491
  },
1380
1492
  colorPrimary: {
1381
1493
  "&.MuiChip-filled": {
1382
- backgroundColor: colors5.brand[50],
1383
- color: colors5.brand[700],
1384
- "& .MuiChip-deleteIcon": { color: colors5.brand[400] }
1494
+ backgroundColor: violet[50],
1495
+ color: violet[700],
1496
+ "& .MuiChip-deleteIcon": { color: violet[400] }
1385
1497
  }
1386
1498
  },
1387
1499
  colorSecondary: {
1388
1500
  "&.MuiChip-filled": {
1389
- backgroundColor: colors5.gray[50],
1390
- color: colors5.gray[700],
1391
- "& .MuiChip-deleteIcon": { color: colors5.gray[400] }
1501
+ backgroundColor: gray[50],
1502
+ color: gray[700],
1503
+ "& .MuiChip-deleteIcon": { color: gray[400] }
1392
1504
  }
1393
1505
  },
1394
1506
  colorError: {
@@ -1414,9 +1526,9 @@ function buildComponents(tokens) {
1414
1526
  },
1415
1527
  colorInfo: {
1416
1528
  "&.MuiChip-filled": {
1417
- backgroundColor: colors5.blue[50],
1418
- color: colors5.blue[700],
1419
- "& .MuiChip-deleteIcon": { color: colors5.blue[400] }
1529
+ backgroundColor: info[50],
1530
+ color: info[700],
1531
+ "& .MuiChip-deleteIcon": { color: info[400] }
1420
1532
  }
1421
1533
  }
1422
1534
  }
@@ -1644,11 +1756,11 @@ function buildComponents(tokens) {
1644
1756
  }
1645
1757
  },
1646
1758
  standardInfo: {
1647
- backgroundColor: colors5.blue[50],
1648
- color: colors5.blue[700],
1649
- border: `1px solid ${colors5.blue[300]}`,
1759
+ backgroundColor: info[50],
1760
+ color: info[700],
1761
+ border: `1px solid ${info[300]}`,
1650
1762
  "& .MuiAlert-icon": {
1651
- color: colors5.blue[600]
1763
+ color: info[600]
1652
1764
  }
1653
1765
  },
1654
1766
  icon: {
@@ -1881,20 +1993,20 @@ function buildTheme(tokens) {
1881
1993
  // src/theme/presets/forest-external.ts
1882
1994
  var colors2 = {
1883
1995
  ...colors,
1884
- /** Brand scale — black-based for primary actions */
1996
+ /** Brand scale — purple for client-facing products (#9D5FFF) */
1885
1997
  brand: {
1886
- 25: "#fafafa",
1887
- 50: "#f5f5f5",
1888
- 100: "#ebebeb",
1889
- 200: "#d6d6d6",
1890
- 300: "#b0b0b0",
1891
- 400: "#737373",
1892
- 500: "#404040",
1893
- 600: "#1a1a1a",
1894
- 700: "#0d0d0d",
1895
- 800: "#050505",
1896
- 900: "#000000",
1897
- 950: "#000000"
1998
+ 25: "#faf8ff",
1999
+ 50: "#f5f0ff",
2000
+ 100: "#ebe0ff",
2001
+ 200: "#d6c0ff",
2002
+ 300: "#b090ff",
2003
+ 400: "#9D5FFF",
2004
+ 500: "#7c4de6",
2005
+ 600: "#5b3acc",
2006
+ 700: "#3a1aad",
2007
+ 800: "#190a8a",
2008
+ 900: "#000066",
2009
+ 950: "#000033"
1898
2010
  },
1899
2011
  /** Warm-neutral gray scale */
1900
2012
  gray: {
@@ -2130,18 +2242,18 @@ var chartColors2 = {
2130
2242
  crosshairFg: colors2.gray[500],
2131
2243
  legendFg: text2.tertiary,
2132
2244
  series: [
2133
- { fg: colors2.violet[500], fgHover: colors2.violet[600], bg: colors2.violet[100], bgHover: colors2.violet[200] },
2134
- { fg: colors2.orangeDark[400], fgHover: colors2.orangeDark[500], bg: colors2.orangeDark[100], bgHover: colors2.orangeDark[200] },
2135
- { fg: colors2.teal[300], fgHover: colors2.teal[400], bg: colors2.teal[50], bgHover: colors2.teal[100] },
2245
+ { fg: misc.purple[500], fgHover: misc.purple[600], bg: misc.purple[100], bgHover: misc.purple[200] },
2246
+ { fg: misc.orangeDark[400], fgHover: misc.orangeDark[500], bg: misc.orangeDark[100], bgHover: misc.orangeDark[200] },
2247
+ { fg: misc.teal[300], fgHover: misc.teal[400], bg: misc.teal[50], bgHover: misc.teal[100] },
2136
2248
  { fg: colors2.warning[400], fgHover: colors2.warning[500], bg: colors2.warning[100], bgHover: colors2.warning[200] },
2137
- { fg: colors2.rose[400], fgHover: colors2.rose[500], bg: colors2.rose[100], bgHover: colors2.rose[200] },
2138
- { fg: colors2.blueLight[400], fgHover: colors2.blueLight[500], bg: colors2.blueLight[100], bgHover: colors2.blueLight[200] },
2139
- { fg: colors2.orange[300], fgHover: colors2.orange[400], bg: colors2.orange[100], bgHover: colors2.orange[200] },
2140
- { fg: colors2.cyan[600], fgHover: colors2.cyan[700], bg: colors2.cyan[100], bgHover: colors2.cyan[200] },
2141
- { fg: colors2.green[500], fgHover: colors2.green[600], bg: colors2.green[100], bgHover: colors2.green[200] },
2142
- { fg: colors2.pink[400], fgHover: colors2.pink[500], bg: colors2.pink[100], bgHover: colors2.pink[200] },
2143
- { fg: colors2.fuchsia[400], fgHover: colors2.fuchsia[500], bg: colors2.fuchsia[100], bgHover: colors2.fuchsia[200] },
2144
- { fg: colors2.teal[600], fgHover: colors2.teal[700], bg: colors2.teal[100], bgHover: colors2.teal[200] }
2249
+ { fg: misc.rose[400], fgHover: misc.rose[500], bg: misc.rose[100], bgHover: misc.rose[200] },
2250
+ { fg: misc.blueLight[400], fgHover: misc.blueLight[500], bg: misc.blueLight[100], bgHover: misc.blueLight[200] },
2251
+ { fg: misc.orange[300], fgHover: misc.orange[400], bg: misc.orange[100], bgHover: misc.orange[200] },
2252
+ { fg: misc.cyan[600], fgHover: misc.cyan[700], bg: misc.cyan[100], bgHover: misc.cyan[200] },
2253
+ { fg: misc.green[500], fgHover: misc.green[600], bg: misc.green[100], bgHover: misc.green[200] },
2254
+ { fg: misc.pink[400], fgHover: misc.pink[500], bg: misc.pink[100], bgHover: misc.pink[200] },
2255
+ { fg: misc.fuchsia[400], fgHover: misc.fuchsia[500], bg: misc.fuchsia[100], bgHover: misc.fuchsia[200] },
2256
+ { fg: misc.teal[600], fgHover: misc.teal[700], bg: misc.teal[100], bgHover: misc.teal[200] }
2145
2257
  ]
2146
2258
  };
2147
2259
  var focusRings2 = {
@@ -2208,6 +2320,21 @@ var colors3 = {
2208
2320
  900: "#000000",
2209
2321
  950: "#000000"
2210
2322
  },
2323
+ /** Accent color — red/orange sparingly used (#FF2821) */
2324
+ accent: {
2325
+ 25: "#fff8f7",
2326
+ 50: "#fff0ee",
2327
+ 100: "#ffe0dd",
2328
+ 200: "#ffc0bb",
2329
+ 300: "#ff9090",
2330
+ 400: "#FF2821",
2331
+ 500: "#e61a1a",
2332
+ 600: "#cc1010",
2333
+ 700: "#a30808",
2334
+ 800: "#7a0000",
2335
+ 900: "#520000",
2336
+ 950: "#290000"
2337
+ },
2211
2338
  /** Warm-neutral gray scale */
2212
2339
  gray: {
2213
2340
  25: "#fdfcfc",
@@ -2442,18 +2569,18 @@ var chartColors3 = {
2442
2569
  crosshairFg: colors3.gray[500],
2443
2570
  legendFg: text3.tertiary,
2444
2571
  series: [
2445
- { fg: colors3.violet[500], fgHover: colors3.violet[600], bg: colors3.violet[100], bgHover: colors3.violet[200] },
2446
- { fg: colors3.orangeDark[400], fgHover: colors3.orangeDark[500], bg: colors3.orangeDark[100], bgHover: colors3.orangeDark[200] },
2447
- { fg: colors3.teal[300], fgHover: colors3.teal[400], bg: colors3.teal[50], bgHover: colors3.teal[100] },
2572
+ { fg: misc.purple[500], fgHover: misc.purple[600], bg: misc.purple[100], bgHover: misc.purple[200] },
2573
+ { fg: misc.orangeDark[400], fgHover: misc.orangeDark[500], bg: misc.orangeDark[100], bgHover: misc.orangeDark[200] },
2574
+ { fg: misc.teal[300], fgHover: misc.teal[400], bg: misc.teal[50], bgHover: misc.teal[100] },
2448
2575
  { fg: colors3.warning[400], fgHover: colors3.warning[500], bg: colors3.warning[100], bgHover: colors3.warning[200] },
2449
- { fg: colors3.rose[400], fgHover: colors3.rose[500], bg: colors3.rose[100], bgHover: colors3.rose[200] },
2450
- { fg: colors3.blueLight[400], fgHover: colors3.blueLight[500], bg: colors3.blueLight[100], bgHover: colors3.blueLight[200] },
2451
- { fg: colors3.orange[300], fgHover: colors3.orange[400], bg: colors3.orange[100], bgHover: colors3.orange[200] },
2452
- { fg: colors3.cyan[600], fgHover: colors3.cyan[700], bg: colors3.cyan[100], bgHover: colors3.cyan[200] },
2453
- { fg: colors3.green[500], fgHover: colors3.green[600], bg: colors3.green[100], bgHover: colors3.green[200] },
2454
- { fg: colors3.pink[400], fgHover: colors3.pink[500], bg: colors3.pink[100], bgHover: colors3.pink[200] },
2455
- { fg: colors3.fuchsia[400], fgHover: colors3.fuchsia[500], bg: colors3.fuchsia[100], bgHover: colors3.fuchsia[200] },
2456
- { fg: colors3.teal[600], fgHover: colors3.teal[700], bg: colors3.teal[100], bgHover: colors3.teal[200] }
2576
+ { fg: misc.rose[400], fgHover: misc.rose[500], bg: misc.rose[100], bgHover: misc.rose[200] },
2577
+ { fg: misc.blueLight[400], fgHover: misc.blueLight[500], bg: misc.blueLight[100], bgHover: misc.blueLight[200] },
2578
+ { fg: misc.orange[300], fgHover: misc.orange[400], bg: misc.orange[100], bgHover: misc.orange[200] },
2579
+ { fg: misc.cyan[600], fgHover: misc.cyan[700], bg: misc.cyan[100], bgHover: misc.cyan[200] },
2580
+ { fg: misc.green[500], fgHover: misc.green[600], bg: misc.green[100], bgHover: misc.green[200] },
2581
+ { fg: misc.pink[400], fgHover: misc.pink[500], bg: misc.pink[100], bgHover: misc.pink[200] },
2582
+ { fg: misc.fuchsia[400], fgHover: misc.fuchsia[500], bg: misc.fuchsia[100], bgHover: misc.fuchsia[200] },
2583
+ { fg: misc.teal[600], fgHover: misc.teal[700], bg: misc.teal[100], bgHover: misc.teal[200] }
2457
2584
  ]
2458
2585
  };
2459
2586
  var focusRings3 = {
@@ -2505,20 +2632,20 @@ var forestAgencyPreset = {
2505
2632
  // src/theme/presets/forest-internal.ts
2506
2633
  var colors4 = {
2507
2634
  ...colors,
2508
- /** Brand scale — black-based for primary actions */
2635
+ /** Brand scale — pink/magenta for internal tools (#FF78F3) */
2509
2636
  brand: {
2510
- 25: "#fafafa",
2511
- 50: "#f5f5f5",
2512
- 100: "#ebebeb",
2513
- 200: "#d6d6d6",
2514
- 300: "#b0b0b0",
2515
- 400: "#737373",
2516
- 500: "#404040",
2517
- 600: "#1a1a1a",
2518
- 700: "#0d0d0d",
2519
- 800: "#050505",
2520
- 900: "#000000",
2521
- 950: "#000000"
2637
+ 25: "#fff8fd",
2638
+ 50: "#fff0fa",
2639
+ 100: "#ffe0f5",
2640
+ 200: "#ffc0eb",
2641
+ 300: "#ff90d8",
2642
+ 400: "#FF78F3",
2643
+ 500: "#e650d4",
2644
+ 600: "#cc28b5",
2645
+ 700: "#a3008c",
2646
+ 800: "#7a0066",
2647
+ 900: "#520044",
2648
+ 950: "#290022"
2522
2649
  },
2523
2650
  /** Warm-neutral gray scale */
2524
2651
  gray: {
@@ -2754,18 +2881,18 @@ var chartColors4 = {
2754
2881
  crosshairFg: colors4.gray[500],
2755
2882
  legendFg: text4.tertiary,
2756
2883
  series: [
2757
- { fg: colors4.violet[500], fgHover: colors4.violet[600], bg: colors4.violet[100], bgHover: colors4.violet[200] },
2758
- { fg: colors4.orangeDark[400], fgHover: colors4.orangeDark[500], bg: colors4.orangeDark[100], bgHover: colors4.orangeDark[200] },
2759
- { fg: colors4.teal[300], fgHover: colors4.teal[400], bg: colors4.teal[50], bgHover: colors4.teal[100] },
2884
+ { fg: misc.purple[500], fgHover: misc.purple[600], bg: misc.purple[100], bgHover: misc.purple[200] },
2885
+ { fg: misc.orangeDark[400], fgHover: misc.orangeDark[500], bg: misc.orangeDark[100], bgHover: misc.orangeDark[200] },
2886
+ { fg: misc.teal[300], fgHover: misc.teal[400], bg: misc.teal[50], bgHover: misc.teal[100] },
2760
2887
  { fg: colors4.warning[400], fgHover: colors4.warning[500], bg: colors4.warning[100], bgHover: colors4.warning[200] },
2761
- { fg: colors4.rose[400], fgHover: colors4.rose[500], bg: colors4.rose[100], bgHover: colors4.rose[200] },
2762
- { fg: colors4.blueLight[400], fgHover: colors4.blueLight[500], bg: colors4.blueLight[100], bgHover: colors4.blueLight[200] },
2763
- { fg: colors4.orange[300], fgHover: colors4.orange[400], bg: colors4.orange[100], bgHover: colors4.orange[200] },
2764
- { fg: colors4.cyan[600], fgHover: colors4.cyan[700], bg: colors4.cyan[100], bgHover: colors4.cyan[200] },
2765
- { fg: colors4.green[500], fgHover: colors4.green[600], bg: colors4.green[100], bgHover: colors4.green[200] },
2766
- { fg: colors4.pink[400], fgHover: colors4.pink[500], bg: colors4.pink[100], bgHover: colors4.pink[200] },
2767
- { fg: colors4.fuchsia[400], fgHover: colors4.fuchsia[500], bg: colors4.fuchsia[100], bgHover: colors4.fuchsia[200] },
2768
- { fg: colors4.teal[600], fgHover: colors4.teal[700], bg: colors4.teal[100], bgHover: colors4.teal[200] }
2888
+ { fg: misc.rose[400], fgHover: misc.rose[500], bg: misc.rose[100], bgHover: misc.rose[200] },
2889
+ { fg: misc.blueLight[400], fgHover: misc.blueLight[500], bg: misc.blueLight[100], bgHover: misc.blueLight[200] },
2890
+ { fg: misc.orange[300], fgHover: misc.orange[400], bg: misc.orange[100], bgHover: misc.orange[200] },
2891
+ { fg: misc.cyan[600], fgHover: misc.cyan[700], bg: misc.cyan[100], bgHover: misc.cyan[200] },
2892
+ { fg: misc.green[500], fgHover: misc.green[600], bg: misc.green[100], bgHover: misc.green[200] },
2893
+ { fg: misc.pink[400], fgHover: misc.pink[500], bg: misc.pink[100], bgHover: misc.pink[200] },
2894
+ { fg: misc.fuchsia[400], fgHover: misc.fuchsia[500], bg: misc.fuchsia[100], bgHover: misc.fuchsia[200] },
2895
+ { fg: misc.teal[600], fgHover: misc.teal[700], bg: misc.teal[100], bgHover: misc.teal[200] }
2769
2896
  ]
2770
2897
  };
2771
2898
  var focusRings4 = {
@@ -2859,11 +2986,17 @@ exports.forestTheme = forestTheme;
2859
2986
  exports.forestThemeOptions = forestThemeOptions;
2860
2987
  exports.getAvailablePresets = getAvailablePresets;
2861
2988
  exports.getPreset = getPreset;
2989
+ exports.gray = gray;
2862
2990
  exports.iconColors = iconColors;
2991
+ exports.info = info;
2863
2992
  exports.lineHeight = lineHeight;
2993
+ exports.magenta = magenta;
2994
+ exports.misc = misc;
2864
2995
  exports.navColors = navColors;
2865
2996
  exports.palette = palette;
2866
2997
  exports.radius = radius;
2998
+ exports.radiusSharp = radiusSharp;
2999
+ exports.red = red;
2867
3000
  exports.registerPreset = registerPreset;
2868
3001
  exports.shadows = shadows2;
2869
3002
  exports.sliderColors = sliderColors;
@@ -2871,6 +3004,7 @@ exports.spacing = spacing;
2871
3004
  exports.text = text;
2872
3005
  exports.toggleColors = toggleColors;
2873
3006
  exports.typography = typography;
3007
+ exports.violet = violet;
2874
3008
  exports.widths = widths;
2875
3009
  //# sourceMappingURL=theme.js.map
2876
3010
  //# sourceMappingURL=theme.js.map