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