@m4l/styles 0.0.3 → 0.0.5
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/config.d.ts +13 -0
- package/index.d.ts +2 -0
- package/index.js +949 -437
- package/package.json +1 -1
- package/theme/defaultThemeOptions.d.ts +1 -2
- package/theme/index.d.ts +4 -5
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +1 -8
- package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +0 -3
- package/theme/overrides/M4LExtendedComponents/M4LImageButton.d.ts +35 -1
- package/theme/overrides/M4LExtendedComponents/M4LNavLink.d.ts +10 -0
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +5 -1
- package/theme/overrides/M4LExtendedComponents/M4LTypography.d.ts +5 -2
- package/theme/overrides/M4LExtendedComponents/M4LanguagePopover.d.ts +1 -4
- package/theme/overrides/M4LExtendedComponents/M4LoadingButton.d.ts +6 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +10 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +10 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +52 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +1 -11
- package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +4 -4
- package/theme/overrides/MUIComponents/Autocomplete.d.ts +0 -3
- package/theme/overrides/MUIComponents/ButtonGroup.d.ts +8 -0
- package/theme/overrides/MUIComponents/Fab.d.ts +1 -1
- package/theme/overrides/MUIComponents/Paper.d.ts +43 -0
- package/theme/overrides/MUIComponents/Typography.d.ts +5 -0
- package/theme/palette.d.ts +167 -93
- package/theme/shadows.d.ts +5 -50
- package/theme/typography.d.ts +117 -18
- package/types/augmentations.d.ts +108 -0
- package/types/index.d.ts +2 -1
- package/types/types.d.ts +23 -0
- package/utils/getColorPresets.d.ts +9 -105
- package/utils/getColorState.d.ts +15 -0
- package/utils/getFontValue.d.ts +1 -1
- package/utils/index.d.ts +1 -0
package/index.js
CHANGED
|
@@ -1,46 +1,250 @@
|
|
|
1
|
-
import { alpha as
|
|
2
|
-
import {
|
|
1
|
+
import { alpha as t, useTheme as m } from "@mui/material/styles";
|
|
2
|
+
import { styled as yr } from "@mui/material/styles";
|
|
3
|
+
import { alpha as n } from "@mui/system";
|
|
3
4
|
import { alpha as F } from "@mui/material";
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
import { useResponsive as w } from "@m4l/graphics";
|
|
6
|
+
function c(o, e) {
|
|
7
|
+
return `linear-gradient(to bottom, ${o}, ${e})`;
|
|
6
8
|
}
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
9
|
+
const r = {
|
|
10
|
+
patronusBlue: {
|
|
11
|
+
10: "#CCE6FF",
|
|
12
|
+
20: "#88BCFF",
|
|
13
|
+
30: "#60A7FF",
|
|
14
|
+
40: "#3891FF",
|
|
15
|
+
50: "#0064FF",
|
|
16
|
+
60: "#0039D7",
|
|
17
|
+
70: "#001AA4",
|
|
18
|
+
80: "#00086A",
|
|
19
|
+
90: "#000033"
|
|
20
|
+
},
|
|
21
|
+
crayonBlue: {
|
|
22
|
+
10: "#A5C9FE",
|
|
23
|
+
20: "#88B7FC",
|
|
24
|
+
30: "#6AA4F9",
|
|
25
|
+
40: "#5494F3",
|
|
26
|
+
50: "#2774E6",
|
|
27
|
+
60: "#2367CC",
|
|
28
|
+
70: "#1F5AB3",
|
|
29
|
+
80: "#1A4D99",
|
|
30
|
+
90: "#113366"
|
|
31
|
+
},
|
|
32
|
+
middleYellow: {
|
|
33
|
+
10: "#FFFBCE",
|
|
34
|
+
20: "#FFF79C",
|
|
35
|
+
30: "#FFF46B",
|
|
36
|
+
40: "#FFF039",
|
|
37
|
+
50: "#FFEC08",
|
|
38
|
+
60: "#E5D400",
|
|
39
|
+
70: "#9E9200",
|
|
40
|
+
80: "#696100",
|
|
41
|
+
90: "#353100"
|
|
42
|
+
},
|
|
43
|
+
acidGreen: {
|
|
44
|
+
10: "#CDFFC2",
|
|
45
|
+
20: "#A8FF97",
|
|
46
|
+
30: "#83FF6B",
|
|
47
|
+
40: "#5EFF40",
|
|
48
|
+
50: "#39FF14",
|
|
49
|
+
60: "#47CC2D",
|
|
50
|
+
70: "#229E0A",
|
|
51
|
+
80: "#176E05",
|
|
52
|
+
90: "#0B3D00"
|
|
53
|
+
},
|
|
54
|
+
grassGreen: {
|
|
55
|
+
10: "#FDFFE6",
|
|
56
|
+
20: "#D0E4A3",
|
|
57
|
+
30: "#AFDA85",
|
|
58
|
+
40: "#87D06A",
|
|
59
|
+
50: "#4BB543",
|
|
60
|
+
60: "#438C2D",
|
|
61
|
+
70: "#3A631E",
|
|
62
|
+
80: "#2A3B11",
|
|
63
|
+
90: "#0F1206"
|
|
64
|
+
},
|
|
65
|
+
candyRed: {
|
|
66
|
+
10: "#FFD6D6",
|
|
67
|
+
20: "#EE9B9B",
|
|
68
|
+
30: "#EB7F7F",
|
|
69
|
+
40: "#E86463",
|
|
70
|
+
50: "#D73733",
|
|
71
|
+
60: "#AE1916",
|
|
72
|
+
70: "#850502",
|
|
73
|
+
80: "#5C0500",
|
|
74
|
+
90: "#330400"
|
|
75
|
+
},
|
|
76
|
+
turquiBlue: {
|
|
77
|
+
10: "#B5D9EA",
|
|
78
|
+
20: "#92BBCD",
|
|
79
|
+
30: "#709DB1 ",
|
|
80
|
+
40: "#4D7E94",
|
|
81
|
+
50: "#2A6077",
|
|
82
|
+
60: "#255569",
|
|
83
|
+
70: "#214A5A",
|
|
84
|
+
80: "#1C3E4C",
|
|
85
|
+
90: "#18333D"
|
|
86
|
+
},
|
|
87
|
+
blazeOrange: {
|
|
88
|
+
10: "#F8BE9F",
|
|
89
|
+
20: "#FAA777",
|
|
90
|
+
30: "#FC8F50",
|
|
91
|
+
40: "#FD7828",
|
|
92
|
+
50: "#FF6000",
|
|
93
|
+
60: "#DE5300",
|
|
94
|
+
70: "#BD4600",
|
|
95
|
+
80: "#9B3900",
|
|
96
|
+
90: "#6D2A00"
|
|
97
|
+
},
|
|
98
|
+
flameRed: {
|
|
99
|
+
10: "#F4BABA",
|
|
100
|
+
20: "#F59292",
|
|
101
|
+
30: "#F66A6A",
|
|
102
|
+
40: "#F64141",
|
|
103
|
+
50: "#F71919",
|
|
104
|
+
60: "#D31616",
|
|
105
|
+
70: "#AF1212",
|
|
106
|
+
80: "#8A0F0F",
|
|
107
|
+
90: "#660C0C"
|
|
108
|
+
},
|
|
109
|
+
coolGrey: {
|
|
110
|
+
10: "#BAC6CC",
|
|
111
|
+
20: "#A7B4B9",
|
|
112
|
+
30: "#94A1A6",
|
|
113
|
+
40: "#818F93",
|
|
114
|
+
50: "#6E7C80",
|
|
115
|
+
60: "#5C6A6C",
|
|
116
|
+
70: "#495859",
|
|
117
|
+
80: "#364546",
|
|
118
|
+
90: "#233333"
|
|
119
|
+
},
|
|
120
|
+
marbleLight: {
|
|
121
|
+
10: "#FEFFFF",
|
|
122
|
+
20: "#F9FBFB",
|
|
123
|
+
30: "#F4F7F7",
|
|
124
|
+
40: "#EFF3F4",
|
|
125
|
+
50: "#EAEFF0",
|
|
126
|
+
60: "#fff0",
|
|
127
|
+
70: "#fff0",
|
|
128
|
+
80: "#fff0",
|
|
129
|
+
90: "#fff0"
|
|
130
|
+
},
|
|
131
|
+
ashBlak: {
|
|
132
|
+
10: "#2F3737",
|
|
133
|
+
20: "#2A3232",
|
|
134
|
+
30: "#252C2C",
|
|
135
|
+
40: "#212727",
|
|
136
|
+
50: "#1C2121",
|
|
137
|
+
60: "#090A0A",
|
|
138
|
+
70: "#fff0",
|
|
139
|
+
80: "#fff0",
|
|
140
|
+
90: "#fff0"
|
|
141
|
+
}
|
|
142
|
+
}, $ = {
|
|
143
|
+
patronus: {
|
|
144
|
+
4: t(r.patronusBlue[50], 0.04),
|
|
145
|
+
12: t(r.patronusBlue[50], 0.12),
|
|
146
|
+
24: t(r.patronusBlue[50], 0.24),
|
|
147
|
+
36: t(r.patronusBlue[50], 0.36),
|
|
148
|
+
48: t(r.patronusBlue[50], 0.48),
|
|
149
|
+
60: t(r.patronusBlue[50], 0.6),
|
|
150
|
+
72: t(r.patronusBlue[50], 0.72)
|
|
151
|
+
},
|
|
152
|
+
turqui: {
|
|
153
|
+
4: t(r.turquiBlue[50], 0.04),
|
|
154
|
+
12: t(r.turquiBlue[50], 0.12),
|
|
155
|
+
24: t(r.turquiBlue[50], 0.24),
|
|
156
|
+
36: t(r.turquiBlue[50], 0.36),
|
|
157
|
+
48: t(r.turquiBlue[50], 0.48),
|
|
158
|
+
60: t(r.turquiBlue[50], 0.6),
|
|
159
|
+
72: t(r.turquiBlue[50], 0.72)
|
|
160
|
+
},
|
|
161
|
+
grass: {
|
|
162
|
+
4: t(r.grassGreen[50], 0.04),
|
|
163
|
+
12: t(r.grassGreen[50], 0.12),
|
|
164
|
+
24: t(r.grassGreen[50], 0.24),
|
|
165
|
+
36: t(r.grassGreen[50], 0.36),
|
|
166
|
+
48: t(r.grassGreen[50], 0.48),
|
|
167
|
+
60: t(r.grassGreen[50], 0.6),
|
|
168
|
+
72: t(r.grassGreen[50], 0.72)
|
|
169
|
+
},
|
|
170
|
+
candy: {
|
|
171
|
+
4: t(r.candyRed[50], 0.04),
|
|
172
|
+
12: t(r.candyRed[50], 0.12),
|
|
173
|
+
24: t(r.candyRed[50], 0.24),
|
|
174
|
+
36: t(r.candyRed[50], 0.36),
|
|
175
|
+
48: t(r.candyRed[50], 0.48),
|
|
176
|
+
60: t(r.candyRed[50], 0.6),
|
|
177
|
+
72: t(r.candyRed[50], 0.72)
|
|
178
|
+
},
|
|
179
|
+
blaze: {
|
|
180
|
+
4: t(r.blazeOrange[50], 0.04),
|
|
181
|
+
12: t(r.blazeOrange[50], 0.12),
|
|
182
|
+
24: t(r.blazeOrange[50], 0.24),
|
|
183
|
+
36: t(r.blazeOrange[50], 0.36),
|
|
184
|
+
48: t(r.blazeOrange[50], 0.48),
|
|
185
|
+
60: t(r.blazeOrange[50], 0.6),
|
|
186
|
+
72: t(r.blazeOrange[50], 0.72)
|
|
187
|
+
},
|
|
188
|
+
cool: {
|
|
189
|
+
4: t(r.coolGrey[70], 0.04),
|
|
190
|
+
12: t(r.coolGrey[70], 0.12),
|
|
191
|
+
24: t(r.coolGrey[70], 0.24),
|
|
192
|
+
36: t(r.coolGrey[70], 0.36),
|
|
193
|
+
48: t(r.coolGrey[70], 0.48),
|
|
194
|
+
60: t(r.coolGrey[70], 0.6),
|
|
195
|
+
72: t(r.coolGrey[70], 0.72)
|
|
196
|
+
},
|
|
197
|
+
marbel: {
|
|
198
|
+
4: t(r.marbleLight[10], 0.04),
|
|
199
|
+
12: t(r.marbleLight[10], 0.12),
|
|
200
|
+
24: t(r.marbleLight[10], 0.24),
|
|
201
|
+
36: t(r.marbleLight[10], 0.36),
|
|
202
|
+
48: t(r.marbleLight[10], 0.48),
|
|
203
|
+
60: t(r.marbleLight[10], 0.6),
|
|
204
|
+
72: t(r.marbleLight[10], 0.72)
|
|
205
|
+
}
|
|
25
206
|
}, b = {
|
|
26
|
-
lighter:
|
|
27
|
-
light:
|
|
28
|
-
main:
|
|
29
|
-
dark:
|
|
30
|
-
darker:
|
|
207
|
+
lighter: r.patronusBlue[70],
|
|
208
|
+
light: r.patronusBlue[60],
|
|
209
|
+
main: r.patronusBlue[50],
|
|
210
|
+
dark: r.patronusBlue[40],
|
|
211
|
+
darker: r.patronusBlue[20],
|
|
212
|
+
contrastText: r.marbleLight[10]
|
|
213
|
+
}, A = {
|
|
214
|
+
lighter: "#fff0",
|
|
215
|
+
light: "#fff0",
|
|
216
|
+
main: "#fff0",
|
|
217
|
+
dark: "#fff0",
|
|
218
|
+
darker: "#fff0"
|
|
31
219
|
}, y = {
|
|
32
|
-
lighter: "#
|
|
33
|
-
light: "#
|
|
34
|
-
main:
|
|
35
|
-
dark: "#
|
|
36
|
-
darker: "#
|
|
220
|
+
lighter: "#fff0",
|
|
221
|
+
light: "#fff0",
|
|
222
|
+
main: r.crayonBlue[50],
|
|
223
|
+
dark: "#fff0",
|
|
224
|
+
darker: "#fff0",
|
|
225
|
+
opacity: t(r.crayonBlue[50], 0.08)
|
|
37
226
|
}, f = {
|
|
38
|
-
lighter: "#
|
|
39
|
-
light: "#
|
|
40
|
-
main:
|
|
41
|
-
dark: "#
|
|
42
|
-
darker: "#
|
|
43
|
-
|
|
227
|
+
lighter: "#fff0",
|
|
228
|
+
light: "#fff0",
|
|
229
|
+
main: r.acidGreen[60],
|
|
230
|
+
dark: "#fff0",
|
|
231
|
+
darker: "#fff0",
|
|
232
|
+
opacity: t(r.acidGreen[60], 0.08)
|
|
233
|
+
}, h = {
|
|
234
|
+
lighter: "#fff0",
|
|
235
|
+
light: "#fff0",
|
|
236
|
+
main: r.middleYellow[60],
|
|
237
|
+
dark: "#fff0",
|
|
238
|
+
darker: "#fff0",
|
|
239
|
+
opacity: t(r.middleYellow[60], 0.08)
|
|
240
|
+
}, M = {
|
|
241
|
+
lighter: "#fff0",
|
|
242
|
+
light: "#fff0",
|
|
243
|
+
main: r.flameRed[40],
|
|
244
|
+
dark: "#fff0",
|
|
245
|
+
darker: "#fff0",
|
|
246
|
+
opacity: t(r.flameRed[40], 0.08)
|
|
247
|
+
}, x = {
|
|
44
248
|
0: "#FFFFFF",
|
|
45
249
|
100: "#F9FAFB",
|
|
46
250
|
200: "#F4F6F8",
|
|
@@ -51,334 +255,475 @@ const g = {
|
|
|
51
255
|
700: "#454F5B",
|
|
52
256
|
800: "#212B36",
|
|
53
257
|
900: "#161C24",
|
|
54
|
-
5008:
|
|
55
|
-
50012:
|
|
56
|
-
50016:
|
|
57
|
-
50024:
|
|
58
|
-
50032:
|
|
59
|
-
50048:
|
|
60
|
-
50056:
|
|
61
|
-
50080:
|
|
258
|
+
5008: t("#919EAB", 0.08),
|
|
259
|
+
50012: t("#919EAB", 0.12),
|
|
260
|
+
50016: t("#919EAB", 0.16),
|
|
261
|
+
50024: t("#919EAB", 0.24),
|
|
262
|
+
50032: t("#919EAB", 0.32),
|
|
263
|
+
50048: t("#919EAB", 0.48),
|
|
264
|
+
50056: t("#919EAB", 0.56),
|
|
265
|
+
50080: t("#919EAB", 0.8)
|
|
62
266
|
}, T = {
|
|
63
|
-
primary:
|
|
64
|
-
info:
|
|
65
|
-
success:
|
|
66
|
-
warning:
|
|
67
|
-
error:
|
|
267
|
+
primary: c(b.light, b.main),
|
|
268
|
+
info: c(y.light, y.main),
|
|
269
|
+
success: c(f.light, f.main),
|
|
270
|
+
warning: c(h.light, h.main),
|
|
271
|
+
error: c(M.light, M.main)
|
|
68
272
|
}, D = {
|
|
69
273
|
violet: ["#826AF9", "#9E86FF", "#D0AEFF", "#F7D2FF"],
|
|
70
274
|
blue: ["#2D99FF", "#83CFFF", "#A5F3FF", "#CCFAFF"],
|
|
71
275
|
green: ["#2CD9C5", "#60F1C8", "#A4F7CC", "#C0F2DC"],
|
|
72
276
|
yellow: ["#FFE700", "#FFEF5A", "#FFF7AE", "#FFF3D6"],
|
|
73
277
|
red: ["#FF6C40", "#FF8F6D", "#FFBD98", "#FFF2D4"]
|
|
74
|
-
},
|
|
278
|
+
}, I = {
|
|
279
|
+
normal: r.crayonBlue[50],
|
|
280
|
+
hover: r.crayonBlue[70]
|
|
281
|
+
}, z = {
|
|
282
|
+
normal: r.acidGreen[60],
|
|
283
|
+
hover: r.acidGreen[70]
|
|
284
|
+
}, G = {
|
|
285
|
+
normal: r.flameRed[40],
|
|
286
|
+
hover: r.flameRed[60]
|
|
287
|
+
}, E = {
|
|
288
|
+
normal: r.flameRed[60],
|
|
289
|
+
hover: r.flameRed[70]
|
|
290
|
+
}, H = {
|
|
291
|
+
default: t(r.coolGrey[50], 0.24),
|
|
292
|
+
transition: t(r.coolGrey[50], 0.08)
|
|
293
|
+
}, l = {
|
|
294
|
+
info: { ...I },
|
|
295
|
+
success: { ...z },
|
|
296
|
+
error: { ...G },
|
|
297
|
+
warning: { ...E },
|
|
298
|
+
skeleton: { ...H }
|
|
299
|
+
}, k = {
|
|
75
300
|
common: { black: "#000", white: "#fff" },
|
|
76
|
-
primary: { ...
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
301
|
+
primary: { ...b },
|
|
302
|
+
state: {
|
|
303
|
+
...l
|
|
304
|
+
},
|
|
305
|
+
patronus: { ...r },
|
|
306
|
+
opacity: { ...$ },
|
|
307
|
+
secondary: { ...A, contrastText: "#fff" },
|
|
308
|
+
info: { ...y, contrastText: "#fff" },
|
|
309
|
+
success: { ...f, contrastText: x[800] },
|
|
310
|
+
warning: { ...h, contrastText: x[800] },
|
|
311
|
+
error: { ...M, contrastText: "#fff" },
|
|
312
|
+
grey: x,
|
|
83
313
|
gradients: T,
|
|
84
314
|
chart: D,
|
|
85
|
-
divider:
|
|
315
|
+
divider: x[50024],
|
|
86
316
|
action: {
|
|
87
|
-
hover: a[5008],
|
|
88
|
-
selected: a[50016],
|
|
89
|
-
disabled: a[50080],
|
|
90
|
-
disabledBackground: a[50024],
|
|
91
|
-
focus: a[50024],
|
|
92
317
|
hoverOpacity: 0.08,
|
|
93
318
|
disabledOpacity: 0.48
|
|
94
319
|
}
|
|
95
|
-
},
|
|
320
|
+
}, d = {
|
|
96
321
|
light: {
|
|
97
|
-
...
|
|
322
|
+
...k,
|
|
98
323
|
mode: "light",
|
|
99
|
-
text: { primary:
|
|
324
|
+
text: { primary: r.ashBlak[10], secondary: r.coolGrey[40], disabled: r.coolGrey[10] },
|
|
100
325
|
background: {
|
|
101
|
-
paper: "#
|
|
102
|
-
default:
|
|
103
|
-
neutral:
|
|
104
|
-
|
|
105
|
-
header: "#F6F7F9"
|
|
326
|
+
paper: "#fff0",
|
|
327
|
+
default: r.marbleLight[10],
|
|
328
|
+
neutral: r.marbleLight[30],
|
|
329
|
+
background: r.marbleLight[50]
|
|
106
330
|
},
|
|
107
|
-
action: { active: a[600], ...c.action },
|
|
108
331
|
grid: { sectionHeader: "#F6F7F9", divider: "#EDEFF2", rowHover: "#FAFBFC" }
|
|
109
332
|
},
|
|
110
333
|
dark: {
|
|
111
|
-
...
|
|
334
|
+
...k,
|
|
112
335
|
mode: "dark",
|
|
113
|
-
text: { primary:
|
|
336
|
+
text: { primary: r.marbleLight[30], secondary: r.coolGrey[20], disabled: r.coolGrey[50] },
|
|
114
337
|
background: {
|
|
115
|
-
paper:
|
|
116
|
-
default:
|
|
117
|
-
neutral:
|
|
118
|
-
|
|
119
|
-
header: "#29313A"
|
|
338
|
+
paper: "#fff0",
|
|
339
|
+
default: r.ashBlak[10],
|
|
340
|
+
neutral: r.ashBlak[30],
|
|
341
|
+
background: r.ashBlak[50]
|
|
120
342
|
},
|
|
121
|
-
action: { active: a[500], ...c.action },
|
|
122
343
|
grid: { sectionHeader: "#29313A", divider: "#3E464F", rowHover: "#1F262F" }
|
|
123
344
|
}
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
name: "default",
|
|
127
|
-
...p.light.primary,
|
|
128
|
-
LightSelected: "#EBF9F1",
|
|
129
|
-
LightSelectedHover: "#D6F2E3",
|
|
130
|
-
DarkSelected: "#142827",
|
|
131
|
-
DarkSelectedHover: "#12342B"
|
|
132
|
-
},
|
|
345
|
+
}, g = [
|
|
133
346
|
{
|
|
134
|
-
name: "
|
|
135
|
-
lighter:
|
|
136
|
-
light:
|
|
137
|
-
main:
|
|
138
|
-
dark:
|
|
139
|
-
darker:
|
|
140
|
-
contrastText:
|
|
347
|
+
name: "patronus",
|
|
348
|
+
lighter: r.patronusBlue[70],
|
|
349
|
+
light: r.patronusBlue[60],
|
|
350
|
+
main: r.patronusBlue[50],
|
|
351
|
+
dark: r.patronusBlue[40],
|
|
352
|
+
darker: r.patronusBlue[20],
|
|
353
|
+
contrastText: r.marbleLight[10]
|
|
141
354
|
},
|
|
142
355
|
{
|
|
143
|
-
name: "
|
|
144
|
-
lighter:
|
|
145
|
-
light:
|
|
146
|
-
main:
|
|
147
|
-
dark:
|
|
148
|
-
darker:
|
|
149
|
-
contrastText:
|
|
356
|
+
name: "turqui",
|
|
357
|
+
lighter: r.turquiBlue[80],
|
|
358
|
+
light: r.turquiBlue[60],
|
|
359
|
+
main: r.turquiBlue[40],
|
|
360
|
+
dark: r.turquiBlue[50],
|
|
361
|
+
darker: r.turquiBlue[20],
|
|
362
|
+
contrastText: r.marbleLight[10]
|
|
150
363
|
},
|
|
151
364
|
{
|
|
152
|
-
name: "
|
|
153
|
-
lighter:
|
|
154
|
-
light:
|
|
155
|
-
main:
|
|
156
|
-
dark:
|
|
157
|
-
darker:
|
|
158
|
-
contrastText:
|
|
365
|
+
name: "grass",
|
|
366
|
+
lighter: r.grassGreen[80],
|
|
367
|
+
light: r.grassGreen[50],
|
|
368
|
+
main: r.grassGreen[60],
|
|
369
|
+
dark: r.grassGreen[40],
|
|
370
|
+
darker: r.grassGreen[20],
|
|
371
|
+
contrastText: r.marbleLight[10]
|
|
159
372
|
},
|
|
160
373
|
{
|
|
161
|
-
name: "
|
|
162
|
-
lighter:
|
|
163
|
-
light:
|
|
164
|
-
main:
|
|
165
|
-
dark:
|
|
166
|
-
darker:
|
|
167
|
-
contrastText:
|
|
374
|
+
name: "candy",
|
|
375
|
+
lighter: r.candyRed[70],
|
|
376
|
+
light: r.candyRed[60],
|
|
377
|
+
main: r.candyRed[50],
|
|
378
|
+
dark: r.candyRed[40],
|
|
379
|
+
darker: r.candyRed[30],
|
|
380
|
+
contrastText: r.marbleLight[10]
|
|
168
381
|
},
|
|
169
382
|
{
|
|
170
|
-
name: "
|
|
171
|
-
lighter:
|
|
172
|
-
light:
|
|
173
|
-
main:
|
|
174
|
-
dark:
|
|
175
|
-
darker:
|
|
176
|
-
contrastText:
|
|
383
|
+
name: "blaze",
|
|
384
|
+
lighter: r.blazeOrange[80],
|
|
385
|
+
light: r.blazeOrange[50],
|
|
386
|
+
main: r.blazeOrange[60],
|
|
387
|
+
dark: r.blazeOrange[40],
|
|
388
|
+
darker: r.blazeOrange[20],
|
|
389
|
+
contrastText: r.marbleLight[10]
|
|
177
390
|
}
|
|
178
|
-
],
|
|
179
|
-
function
|
|
391
|
+
], P = g[0], W = g[1], q = g[2], _ = g[3], N = g[4];
|
|
392
|
+
function ir(o) {
|
|
180
393
|
return {
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
default: A
|
|
394
|
+
patronus: P,
|
|
395
|
+
turqui: W,
|
|
396
|
+
grass: q,
|
|
397
|
+
candy: _,
|
|
398
|
+
blaze: N
|
|
187
399
|
}[o];
|
|
188
400
|
}
|
|
189
|
-
|
|
401
|
+
const nr = (o, e) => {
|
|
402
|
+
let a = {};
|
|
403
|
+
switch (o) {
|
|
404
|
+
case "patronus":
|
|
405
|
+
a = {
|
|
406
|
+
light: {
|
|
407
|
+
active12: n(r.patronusBlue[50], 0.12),
|
|
408
|
+
active: r.patronusBlue[50],
|
|
409
|
+
focus: r.patronusBlue[70],
|
|
410
|
+
hover: r.patronusBlue[60],
|
|
411
|
+
default: n(r.coolGrey[70], 0.12),
|
|
412
|
+
...l
|
|
413
|
+
},
|
|
414
|
+
dark: {
|
|
415
|
+
active12: n(r.patronusBlue[50], 0.12),
|
|
416
|
+
active: r.patronusBlue[50],
|
|
417
|
+
focus: r.patronusBlue[70],
|
|
418
|
+
hover: r.patronusBlue[60],
|
|
419
|
+
default: n(r.marbleLight[10], 0.12),
|
|
420
|
+
...l
|
|
421
|
+
}
|
|
422
|
+
};
|
|
423
|
+
break;
|
|
424
|
+
case "turqui":
|
|
425
|
+
a = {
|
|
426
|
+
light: {
|
|
427
|
+
active12: n(r.turquiBlue[50], 0.12),
|
|
428
|
+
active: r.turquiBlue[50],
|
|
429
|
+
focus: r.turquiBlue[70],
|
|
430
|
+
hover: r.turquiBlue[60],
|
|
431
|
+
default: n(r.coolGrey[70], 0.12),
|
|
432
|
+
...l
|
|
433
|
+
},
|
|
434
|
+
dark: {
|
|
435
|
+
active12: n(r.patronusBlue[50], 0.12),
|
|
436
|
+
active: r.patronusBlue[50],
|
|
437
|
+
focus: r.patronusBlue[30],
|
|
438
|
+
hover: r.patronusBlue[40],
|
|
439
|
+
default: n(r.marbleLight[10], 0.12),
|
|
440
|
+
...l
|
|
441
|
+
}
|
|
442
|
+
};
|
|
443
|
+
break;
|
|
444
|
+
case "grass":
|
|
445
|
+
a = {
|
|
446
|
+
light: {
|
|
447
|
+
active12: n(r.grassGreen[50], 0.12),
|
|
448
|
+
active: r.grassGreen[50],
|
|
449
|
+
focus: r.grassGreen[70],
|
|
450
|
+
hover: r.grassGreen[60],
|
|
451
|
+
default: n(r.coolGrey[70], 0.12),
|
|
452
|
+
...l
|
|
453
|
+
},
|
|
454
|
+
dark: {
|
|
455
|
+
active12: n(r.grassGreen[50], 0.12),
|
|
456
|
+
active: r.grassGreen[50],
|
|
457
|
+
focus: r.grassGreen[30],
|
|
458
|
+
hover: r.grassGreen[40],
|
|
459
|
+
default: n(r.marbleLight[10], 0.12),
|
|
460
|
+
...l
|
|
461
|
+
}
|
|
462
|
+
};
|
|
463
|
+
break;
|
|
464
|
+
case "candy":
|
|
465
|
+
a = {
|
|
466
|
+
light: {
|
|
467
|
+
active12: n(r.candyRed[50], 0.12),
|
|
468
|
+
active: r.candyRed[50],
|
|
469
|
+
focus: r.candyRed[70],
|
|
470
|
+
hover: r.candyRed[60],
|
|
471
|
+
default: n(r.coolGrey[70], 0.12),
|
|
472
|
+
...l
|
|
473
|
+
},
|
|
474
|
+
dark: {
|
|
475
|
+
active12: n(r.candyRed[50], 0.12),
|
|
476
|
+
active: r.candyRed[50],
|
|
477
|
+
focus: r.candyRed[30],
|
|
478
|
+
hover: r.candyRed[40],
|
|
479
|
+
default: n(r.marbleLight[10], 0.12),
|
|
480
|
+
...l
|
|
481
|
+
}
|
|
482
|
+
};
|
|
483
|
+
break;
|
|
484
|
+
case "blaze":
|
|
485
|
+
a = {
|
|
486
|
+
light: {
|
|
487
|
+
active12: n(r.blazeOrange[50], 0.12),
|
|
488
|
+
active: r.blazeOrange[50],
|
|
489
|
+
focus: r.blazeOrange[70],
|
|
490
|
+
hover: r.blazeOrange[60],
|
|
491
|
+
default: n(r.coolGrey[70], 0.12),
|
|
492
|
+
...l
|
|
493
|
+
},
|
|
494
|
+
dark: {
|
|
495
|
+
active12: n(r.patronusBlue[50], 0.12),
|
|
496
|
+
active: r.patronusBlue[50],
|
|
497
|
+
focus: r.patronusBlue[70],
|
|
498
|
+
hover: r.patronusBlue[60],
|
|
499
|
+
default: n(r.marbleLight[10], 0.12),
|
|
500
|
+
...l
|
|
501
|
+
}
|
|
502
|
+
};
|
|
503
|
+
break;
|
|
504
|
+
default:
|
|
505
|
+
a = {
|
|
506
|
+
light: {
|
|
507
|
+
active12: n(r.turquiBlue[50], 0.12),
|
|
508
|
+
active: r.turquiBlue[50],
|
|
509
|
+
focus: r.turquiBlue[70],
|
|
510
|
+
hover: r.turquiBlue[60],
|
|
511
|
+
default: n(r.coolGrey[70], 0.12),
|
|
512
|
+
...l
|
|
513
|
+
},
|
|
514
|
+
dark: {
|
|
515
|
+
active12: n(r.patronusBlue[50], 0.12),
|
|
516
|
+
active: r.patronusBlue[50],
|
|
517
|
+
focus: r.patronusBlue[30],
|
|
518
|
+
hover: r.patronusBlue[40],
|
|
519
|
+
default: n(r.marbleLight[10], 0.12),
|
|
520
|
+
...l
|
|
521
|
+
}
|
|
522
|
+
};
|
|
523
|
+
break;
|
|
524
|
+
}
|
|
525
|
+
return e === "light" ? { ...a.light } : { ...a.dark };
|
|
526
|
+
};
|
|
527
|
+
function Y(o) {
|
|
190
528
|
return Math.round(parseFloat(o) * 16);
|
|
191
529
|
}
|
|
192
|
-
function
|
|
530
|
+
function s(o) {
|
|
193
531
|
return `${o / 16}rem`;
|
|
194
532
|
}
|
|
195
|
-
function
|
|
533
|
+
function p({ sm: o, md: e, lg: a }) {
|
|
196
534
|
return {
|
|
197
|
-
"@media (min-width:
|
|
198
|
-
fontSize:
|
|
535
|
+
"@media (min-width:0px)": {
|
|
536
|
+
fontSize: `${o}px`
|
|
199
537
|
},
|
|
200
538
|
"@media (min-width:900px)": {
|
|
201
|
-
fontSize:
|
|
539
|
+
fontSize: `${e}px`
|
|
202
540
|
},
|
|
203
541
|
"@media (min-width:1200px)": {
|
|
204
|
-
fontSize:
|
|
542
|
+
fontSize: `${a}px`
|
|
205
543
|
}
|
|
206
544
|
};
|
|
207
545
|
}
|
|
208
|
-
function
|
|
209
|
-
return [...
|
|
210
|
-
const
|
|
211
|
-
return !
|
|
546
|
+
function j() {
|
|
547
|
+
return [...m().breakpoints.keys].reverse().reduce((a, i) => {
|
|
548
|
+
const v = w("up", i);
|
|
549
|
+
return !a && v ? i : a;
|
|
212
550
|
}, null) || "xs";
|
|
213
551
|
}
|
|
214
|
-
function
|
|
215
|
-
const
|
|
216
|
-
return { fontSize:
|
|
552
|
+
function pr(o) {
|
|
553
|
+
const e = m(), a = j(), i = e.breakpoints.up(a === "xl" ? "lg" : a), R = (o === "h1" || o === "h2" || o === "h3" || o === "h4" || o === "h5" || o === "h6") && e.typography[o][i] ? e.typography[o][i] : e.typography[o], B = Y(R.fontSize), S = Number(e.typography[o].lineHeight) * B, { fontWeight: L, letterSpacing: O } = e.typography[o];
|
|
554
|
+
return { fontSize: B, lineHeight: S, fontWeight: L, letterSpacing: O };
|
|
217
555
|
}
|
|
218
|
-
const
|
|
219
|
-
fontFamily:
|
|
556
|
+
const V = "Poppins, sans-serif", U = {
|
|
557
|
+
fontFamily: V,
|
|
220
558
|
fontWeightRegular: 400,
|
|
221
559
|
fontWeightMedium: 600,
|
|
222
560
|
fontWeightBold: 700,
|
|
223
561
|
h1: {
|
|
224
562
|
fontWeight: 700,
|
|
225
|
-
lineHeight:
|
|
226
|
-
|
|
227
|
-
letterSpacing: 2,
|
|
228
|
-
...d({ sm: 52, md: 58, lg: 64 })
|
|
563
|
+
lineHeight: 1.5,
|
|
564
|
+
...p({ sm: 40, md: 40, lg: 40 })
|
|
229
565
|
},
|
|
230
566
|
h2: {
|
|
231
567
|
fontWeight: 700,
|
|
232
|
-
lineHeight:
|
|
233
|
-
|
|
234
|
-
...d({ sm: 40, md: 44, lg: 48 })
|
|
568
|
+
lineHeight: 1,
|
|
569
|
+
...p({ sm: 40, md: 44, lg: 48 })
|
|
235
570
|
},
|
|
236
571
|
h3: {
|
|
237
|
-
fontWeight:
|
|
572
|
+
fontWeight: 600,
|
|
238
573
|
lineHeight: 1.5,
|
|
239
|
-
|
|
240
|
-
...d({ sm: 26, md: 30, lg: 32 })
|
|
574
|
+
...p({ sm: 32, md: 32, lg: 32 })
|
|
241
575
|
},
|
|
242
576
|
h4: {
|
|
243
577
|
fontWeight: 700,
|
|
244
578
|
lineHeight: 1.5,
|
|
245
|
-
|
|
246
|
-
...d({ sm: 20, md: 24, lg: 24 })
|
|
579
|
+
...p({ sm: 20, md: 24, lg: 24 })
|
|
247
580
|
},
|
|
248
581
|
h5: {
|
|
249
|
-
fontWeight:
|
|
582
|
+
fontWeight: 600,
|
|
250
583
|
lineHeight: 1.5,
|
|
251
|
-
|
|
252
|
-
...d({ sm: 19, md: 20, lg: 20 })
|
|
584
|
+
...p({ sm: 24, md: 24, lg: 24 })
|
|
253
585
|
},
|
|
254
586
|
h6: {
|
|
255
587
|
fontWeight: 700,
|
|
256
588
|
lineHeight: 28 / 18,
|
|
257
|
-
|
|
258
|
-
|
|
589
|
+
...p({ sm: 18, md: 18, lg: 18 })
|
|
590
|
+
},
|
|
591
|
+
subtitle: {
|
|
592
|
+
fontWeight: 400,
|
|
593
|
+
lineHeight: 1.5,
|
|
594
|
+
...p({ sm: 18, md: 16, lg: 16 })
|
|
595
|
+
},
|
|
596
|
+
subtitleDens: {
|
|
597
|
+
fontWeight: 700,
|
|
598
|
+
lineHeight: 1.5,
|
|
599
|
+
...p({ sm: 18, md: 16, lg: 16 })
|
|
600
|
+
},
|
|
601
|
+
paragraph: {
|
|
602
|
+
fontWeight: 400,
|
|
603
|
+
lineHeight: 1.429,
|
|
604
|
+
...p({ sm: 16, md: 20, lg: 20 })
|
|
605
|
+
},
|
|
606
|
+
paragraphDens: {
|
|
607
|
+
fontWeight: 600,
|
|
608
|
+
lineHeight: 1.429,
|
|
609
|
+
...p({ sm: 16, md: 14, lg: 14 })
|
|
259
610
|
},
|
|
260
611
|
subtitle1: {
|
|
261
612
|
fontWeight: 600,
|
|
262
613
|
lineHeight: 1.5,
|
|
263
|
-
fontSize:
|
|
614
|
+
fontSize: s(14)
|
|
264
615
|
},
|
|
265
616
|
subtitle2: {
|
|
266
617
|
fontWeight: 600,
|
|
267
618
|
lineHeight: 1.5,
|
|
268
|
-
fontSize:
|
|
619
|
+
fontSize: s(12)
|
|
620
|
+
},
|
|
621
|
+
body: {
|
|
622
|
+
fontWeight: 400,
|
|
623
|
+
lineHeight: 1.143,
|
|
624
|
+
...p({ sm: 14, md: 12, lg: 12 })
|
|
625
|
+
},
|
|
626
|
+
bodyDens: {
|
|
627
|
+
fontWeight: 700,
|
|
628
|
+
lineHeight: 1.143,
|
|
629
|
+
...p({ sm: 14, md: 12, lg: 12 })
|
|
269
630
|
},
|
|
270
631
|
body0: {
|
|
271
632
|
lineHeight: 1.5,
|
|
272
633
|
fontWeight: 400,
|
|
273
|
-
fontSize:
|
|
634
|
+
fontSize: s(16)
|
|
274
635
|
},
|
|
275
636
|
body1: {
|
|
276
637
|
lineHeight: 1.5,
|
|
277
638
|
fontWeight: 400,
|
|
278
|
-
fontSize:
|
|
639
|
+
fontSize: s(14)
|
|
279
640
|
},
|
|
280
641
|
body2: {
|
|
281
642
|
lineHeight: 1.5,
|
|
282
643
|
fontWeight: 400,
|
|
283
|
-
fontSize:
|
|
644
|
+
fontSize: s(12)
|
|
284
645
|
},
|
|
285
646
|
caption: {
|
|
286
647
|
lineHeight: 1.5,
|
|
287
|
-
fontSize:
|
|
648
|
+
fontSize: s(11)
|
|
288
649
|
},
|
|
289
650
|
overline: {
|
|
290
651
|
fontWeight: 700,
|
|
291
652
|
lineHeight: 1.5,
|
|
292
|
-
fontSize:
|
|
653
|
+
fontSize: s(12),
|
|
293
654
|
textTransform: "uppercase"
|
|
294
655
|
},
|
|
295
656
|
button: {
|
|
296
657
|
fontWeight: 700,
|
|
297
658
|
lineHeight: 24 / 14,
|
|
298
|
-
fontSize:
|
|
659
|
+
fontSize: s(14),
|
|
299
660
|
textTransform: "capitalize"
|
|
661
|
+
},
|
|
662
|
+
action: {
|
|
663
|
+
fontWeight: 500,
|
|
664
|
+
lineHeight: 1.667,
|
|
665
|
+
...p({ sm: 14, md: 12, lg: 12 })
|
|
300
666
|
}
|
|
301
|
-
},
|
|
302
|
-
|
|
667
|
+
}, lr = {
|
|
668
|
+
typography: U
|
|
669
|
+
}, K = d.light.grey[500], J = "#000000", C = (o) => {
|
|
670
|
+
const e = t(o, 0.2), a = t(o, 0.14), i = t(o, 0.12);
|
|
303
671
|
return [
|
|
304
672
|
"none",
|
|
305
|
-
`0px 2px 1px -1px ${
|
|
306
|
-
`0px 3px 1px -2px ${
|
|
307
|
-
`0px 3px 3px -2px ${
|
|
308
|
-
`0px 2px 4px -1px ${
|
|
309
|
-
`0px 3px 5px -1px ${
|
|
310
|
-
`0px 3px 5px -1px ${
|
|
311
|
-
`0px 4px 5px -2px ${
|
|
312
|
-
`0px 5px 5px -3px ${
|
|
313
|
-
`0px 5px 6px -3px ${
|
|
314
|
-
`0px 6px 6px -3px ${
|
|
315
|
-
`0px 6px 7px -4px ${
|
|
316
|
-
`0px 7px 8px -4px ${
|
|
317
|
-
`0px 7px 8px -4px ${
|
|
318
|
-
`0px 7px 9px -4px ${
|
|
319
|
-
`0px 8px 9px -5px ${
|
|
320
|
-
`0px 8px 10px -5px ${
|
|
321
|
-
`0px 8px 11px -5px ${
|
|
322
|
-
`0px 9px 11px -5px ${
|
|
323
|
-
`0px 9px 12px -6px ${
|
|
324
|
-
`0px 10px 13px -6px ${
|
|
325
|
-
`0px 10px 13px -6px ${
|
|
326
|
-
`0px 10px 14px -6px ${
|
|
327
|
-
`0px 11px 14px -7px ${
|
|
328
|
-
`0px 11px 15px -7px ${
|
|
673
|
+
`0px 2px 1px -1px ${e},0px 1px 1px 0px ${a},0px 1px 3px 0px ${i}`,
|
|
674
|
+
`0px 3px 1px -2px ${e},0px 2px 2px 0px ${a},0px 1px 5px 0px ${i}`,
|
|
675
|
+
`0px 3px 3px -2px ${e},0px 3px 4px 0px ${a},0px 1px 8px 0px ${i}`,
|
|
676
|
+
`0px 2px 4px -1px ${e},0px 4px 5px 0px ${a},0px 1px 10px 0px ${i}`,
|
|
677
|
+
`0px 3px 5px -1px ${e},0px 5px 8px 0px ${a},0px 1px 14px 0px ${i}`,
|
|
678
|
+
`0px 3px 5px -1px ${e},0px 6px 10px 0px ${a},0px 1px 18px 0px ${i}`,
|
|
679
|
+
`0px 4px 5px -2px ${e},0px 7px 10px 1px ${a},0px 2px 16px 1px ${i}`,
|
|
680
|
+
`0px 5px 5px -3px ${e},0px 8px 10px 1px ${a},0px 3px 14px 2px ${i}`,
|
|
681
|
+
`0px 5px 6px -3px ${e},0px 9px 12px 1px ${a},0px 3px 16px 2px ${i}`,
|
|
682
|
+
`0px 6px 6px -3px ${e},0px 10px 14px 1px ${a},0px 4px 18px 3px ${i}`,
|
|
683
|
+
`0px 6px 7px -4px ${e},0px 11px 15px 1px ${a},0px 4px 20px 3px ${i}`,
|
|
684
|
+
`0px 7px 8px -4px ${e},0px 12px 17px 2px ${a},0px 5px 22px 4px ${i}`,
|
|
685
|
+
`0px 7px 8px -4px ${e},0px 13px 19px 2px ${a},0px 5px 24px 4px ${i}`,
|
|
686
|
+
`0px 7px 9px -4px ${e},0px 14px 21px 2px ${a},0px 5px 26px 4px ${i}`,
|
|
687
|
+
`0px 8px 9px -5px ${e},0px 15px 22px 2px ${a},0px 6px 28px 5px ${i}`,
|
|
688
|
+
`0px 8px 10px -5px ${e},0px 16px 24px 2px ${a},0px 6px 30px 5px ${i}`,
|
|
689
|
+
`0px 8px 11px -5px ${e},0px 17px 26px 2px ${a},0px 6px 32px 5px ${i}`,
|
|
690
|
+
`0px 9px 11px -5px ${e},0px 18px 28px 2px ${a},0px 7px 34px 6px ${i}`,
|
|
691
|
+
`0px 9px 12px -6px ${e},0px 19px 29px 2px ${a},0px 7px 36px 6px ${i}`,
|
|
692
|
+
`0px 10px 13px -6px ${e},0px 20px 31px 3px ${a},0px 8px 38px 7px ${i}`,
|
|
693
|
+
`0px 10px 13px -6px ${e},0px 21px 33px 3px ${a},0px 8px 40px 7px ${i}`,
|
|
694
|
+
`0px 10px 14px -6px ${e},0px 22px 35px 3px ${a},0px 8px 42px 7px ${i}`,
|
|
695
|
+
`0px 11px 14px -7px ${e},0px 23px 36px 3px ${a},0px 9px 44px 8px ${i}`,
|
|
696
|
+
`0px 11px 15px -7px ${e},0px 24px 38px 3px ${a},0px 9px 46px 8px ${i}`
|
|
329
697
|
];
|
|
330
|
-
},
|
|
331
|
-
const
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
info: `0 8px 16px 0 ${e(p.light.info.main, 0.24)}`,
|
|
341
|
-
secondary: `0 8px 16px 0 ${e(p.light.secondary.main, 0.24)}`,
|
|
342
|
-
success: `0 8px 16px 0 ${e(p.light.success.main, 0.24)}`,
|
|
343
|
-
warning: `0 8px 16px 0 ${e(p.light.warning.main, 0.24)}`,
|
|
344
|
-
error: `0 8px 16px 0 ${e(p.light.error.main, 0.24)}`,
|
|
345
|
-
card: `0 0 2px 0 ${e(o, 0.2)}, 0 12px 24px -4px ${e(o, 0.12)}`,
|
|
346
|
-
dialog: `-40px 40px 80px -8px ${e(p.light.common.black, 0.24)}`,
|
|
347
|
-
dropdown: `0 0 2px 0 ${e(o, 0.24)}, -20px 20px 40px -4px ${e(o, 0.24)}`
|
|
698
|
+
}, sr = (o) => {
|
|
699
|
+
const e = {
|
|
700
|
+
info: `0px 2px 8px 0px ${t(r.patronusBlue[50], 0.2)}`,
|
|
701
|
+
secondary: `0px 2px 8px 0px ${t(d.light.secondary.main, 0.24)}`,
|
|
702
|
+
success: `0px 2px 8px 0px ${t(r.acidGreen[50], 0.2)}`,
|
|
703
|
+
warning: `0px 2px 8px 0px ${t(r.middleYellow[50], 0.2)}`,
|
|
704
|
+
error: `0px 2px 8px 0px ${t(r.flameRed[50], 0.2)}`,
|
|
705
|
+
card: `0 0 2px 0 ${t(d.light.grey[500], 0.2)}, 0 12px 24px -4px ${t(d.light.grey[500], 0.12)}`,
|
|
706
|
+
dialog: `-40px 40px 80px -8px ${t(d.light.common.black, 0.24)}`,
|
|
707
|
+
dropdown: `0 0 2px 0 ${t(d.light.grey[500], 0.24)}, -20px 20px 40px -4px ${t(d.light.grey[500], 0.24)}`
|
|
348
708
|
};
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
lighter: "#283829",
|
|
366
|
-
light: "#26372b",
|
|
367
|
-
main: "#00AB55",
|
|
368
|
-
dark: "#007B55",
|
|
369
|
-
darker: "#005249",
|
|
370
|
-
LightSelected: "#EBF9F1",
|
|
371
|
-
LightSelectedHover: "#D6F2E3",
|
|
372
|
-
DarkSelected: "#142827",
|
|
373
|
-
DarkSelectedHover: "#12342B"
|
|
374
|
-
},
|
|
375
|
-
text: { primary: a[800], secondary: a[700], disabled: a[500] },
|
|
376
|
-
secondary: {
|
|
377
|
-
main: "#34ac4e"
|
|
378
|
-
}
|
|
379
|
-
}
|
|
709
|
+
return o === "light" ? {
|
|
710
|
+
z1: `0px 1px 2px ${t(r.coolGrey[70], 0.12)}`,
|
|
711
|
+
z2: `0px 2px 2px 1px ${t(r.coolGrey[70], 0.12)}`,
|
|
712
|
+
z3: `0px 4px 8px ${t(r.coolGrey[70], 0.16)}`,
|
|
713
|
+
z4: `0px 8px 16px 1px ${t(r.coolGrey[70], 0.16)}`,
|
|
714
|
+
...e
|
|
715
|
+
} : {
|
|
716
|
+
z1: `0px 1px 2px ${t(r.ashBlak[50], 0.4)}`,
|
|
717
|
+
z2: `0px 2px 2px 1px ${t(r.ashBlak[50], 0.4)}`,
|
|
718
|
+
z3: `0px 4px 8px 1px ${t(r.ashBlak[60], 0.4)}`,
|
|
719
|
+
z4: `0px 8px 16px 4px ${t(r.ashBlak[60], 0.4)}`,
|
|
720
|
+
...e
|
|
721
|
+
};
|
|
722
|
+
}, dr = {
|
|
723
|
+
light: C(K),
|
|
724
|
+
dark: C(J)
|
|
380
725
|
};
|
|
381
|
-
function
|
|
726
|
+
function Q(o) {
|
|
382
727
|
return {
|
|
383
728
|
MuiAvatar: {
|
|
384
729
|
styleOverrides: {
|
|
@@ -403,7 +748,7 @@ function K(o) {
|
|
|
403
748
|
}
|
|
404
749
|
};
|
|
405
750
|
}
|
|
406
|
-
function
|
|
751
|
+
function X(o) {
|
|
407
752
|
return {
|
|
408
753
|
MuiButton: {
|
|
409
754
|
styleOverrides: {
|
|
@@ -424,7 +769,7 @@ function U(o) {
|
|
|
424
769
|
}
|
|
425
770
|
},
|
|
426
771
|
containedPrimary: {
|
|
427
|
-
boxShadow: o.customShadows.
|
|
772
|
+
boxShadow: o.customShadows.z4
|
|
428
773
|
},
|
|
429
774
|
containedSecondary: {
|
|
430
775
|
boxShadow: o.customShadows.secondary
|
|
@@ -456,7 +801,7 @@ function U(o) {
|
|
|
456
801
|
}
|
|
457
802
|
};
|
|
458
803
|
}
|
|
459
|
-
function
|
|
804
|
+
function Z(o) {
|
|
460
805
|
return {
|
|
461
806
|
MuiIconButton: {
|
|
462
807
|
styleOverrides: {
|
|
@@ -480,15 +825,15 @@ function q(o) {
|
|
|
480
825
|
}
|
|
481
826
|
};
|
|
482
827
|
}
|
|
483
|
-
function
|
|
484
|
-
return {
|
|
828
|
+
function oo(o) {
|
|
829
|
+
return console.log("test theme", o.palette), {
|
|
485
830
|
MuiFab: {
|
|
486
831
|
defaultProps: {
|
|
487
832
|
color: "primary"
|
|
488
833
|
},
|
|
489
834
|
styleOverrides: {
|
|
490
835
|
root: {
|
|
491
|
-
boxShadow: o.customShadows.
|
|
836
|
+
boxShadow: o.customShadows.z4,
|
|
492
837
|
"&:hover": {
|
|
493
838
|
boxShadow: "none",
|
|
494
839
|
backgroundColor: o.palette.grey[400]
|
|
@@ -515,7 +860,7 @@ function J(o) {
|
|
|
515
860
|
}
|
|
516
861
|
};
|
|
517
862
|
}
|
|
518
|
-
function
|
|
863
|
+
function ro(o) {
|
|
519
864
|
return {
|
|
520
865
|
MuiCard: {
|
|
521
866
|
styleOverrides: {
|
|
@@ -547,7 +892,7 @@ function Q(o) {
|
|
|
547
892
|
}
|
|
548
893
|
};
|
|
549
894
|
}
|
|
550
|
-
function
|
|
895
|
+
function to(o) {
|
|
551
896
|
return {
|
|
552
897
|
MuiTabs: {
|
|
553
898
|
styleOverrides: {
|
|
@@ -604,7 +949,7 @@ function X(o) {
|
|
|
604
949
|
}
|
|
605
950
|
};
|
|
606
951
|
}
|
|
607
|
-
function
|
|
952
|
+
function eo(o) {
|
|
608
953
|
return {
|
|
609
954
|
MuiMenuItem: {
|
|
610
955
|
styleOverrides: {
|
|
@@ -620,7 +965,7 @@ function Z(o) {
|
|
|
620
965
|
}
|
|
621
966
|
};
|
|
622
967
|
}
|
|
623
|
-
function
|
|
968
|
+
function ao(o) {
|
|
624
969
|
return {
|
|
625
970
|
MuiLink: {
|
|
626
971
|
defaultProps: {
|
|
@@ -636,7 +981,7 @@ function oo(o) {
|
|
|
636
981
|
}
|
|
637
982
|
};
|
|
638
983
|
}
|
|
639
|
-
function
|
|
984
|
+
function io(o) {
|
|
640
985
|
return {
|
|
641
986
|
MuiListItemIcon: {
|
|
642
987
|
styleOverrides: {
|
|
@@ -669,7 +1014,7 @@ function ro(o) {
|
|
|
669
1014
|
}
|
|
670
1015
|
};
|
|
671
1016
|
}
|
|
672
|
-
function
|
|
1017
|
+
function no(o) {
|
|
673
1018
|
return {
|
|
674
1019
|
MuiTableRow: {
|
|
675
1020
|
styleOverrides: {
|
|
@@ -755,7 +1100,7 @@ function to(o) {
|
|
|
755
1100
|
}
|
|
756
1101
|
};
|
|
757
1102
|
}
|
|
758
|
-
function
|
|
1103
|
+
function po(o) {
|
|
759
1104
|
return {
|
|
760
1105
|
MuiBadge: {
|
|
761
1106
|
styleOverrides: {
|
|
@@ -768,7 +1113,7 @@ function eo(o) {
|
|
|
768
1113
|
}
|
|
769
1114
|
};
|
|
770
1115
|
}
|
|
771
|
-
function
|
|
1116
|
+
function lo(o) {
|
|
772
1117
|
return {
|
|
773
1118
|
MuiPaper: {
|
|
774
1119
|
defaultProps: {
|
|
@@ -783,13 +1128,58 @@ function io(o) {
|
|
|
783
1128
|
styleOverrides: {
|
|
784
1129
|
root: {
|
|
785
1130
|
backgroundImage: "none",
|
|
786
|
-
|
|
1131
|
+
backgroundColor: o.palette.background.default,
|
|
1132
|
+
borderRadius: "2px",
|
|
1133
|
+
"& .MuiStack-root .MuiMenuItem-root": {
|
|
1134
|
+
color: o.palette.text.primary,
|
|
1135
|
+
transition: "all .5s",
|
|
1136
|
+
borderRadius: "4px",
|
|
1137
|
+
...o.typography.action
|
|
1138
|
+
},
|
|
1139
|
+
"& .MuiStack-root .MuiMenuItem-root:hover": {
|
|
1140
|
+
color: o.palette.state?.hover,
|
|
1141
|
+
transition: "all .5s",
|
|
1142
|
+
backgroundColor: o.palette.state?.active12
|
|
1143
|
+
},
|
|
1144
|
+
"& .MuiStack-root .MuiMenuItem-root.Mui-selected": {
|
|
1145
|
+
color: o.palette.state?.active,
|
|
1146
|
+
transition: "all .5s",
|
|
1147
|
+
backgroundColor: o.palette.state?.active12
|
|
1148
|
+
},
|
|
1149
|
+
"& .MuiStack-root .MuiMenuItem-root:focus": {
|
|
1150
|
+
color: o.palette.state?.focus,
|
|
1151
|
+
transition: "all .5s",
|
|
1152
|
+
backgroundColor: o.palette.background.default,
|
|
1153
|
+
boxShadow: `0 0 0 1px ${o.palette.state?.focus}`
|
|
1154
|
+
},
|
|
1155
|
+
"& .MuiAutocomplete-listbox .MuiAutocomplete-option": {
|
|
1156
|
+
color: o.palette.text.primary,
|
|
1157
|
+
transition: "all .5s",
|
|
1158
|
+
borderRadius: "4px",
|
|
1159
|
+
...o.typography.action
|
|
1160
|
+
},
|
|
1161
|
+
"& .MuiAutocomplete-listbox .MuiAutocomplete-option:hover": {
|
|
1162
|
+
color: o.palette.state?.hover,
|
|
1163
|
+
transition: "all .5s",
|
|
1164
|
+
backgroundColor: o.palette.state?.active12
|
|
1165
|
+
},
|
|
1166
|
+
"& .MuiAutocomplete-listbox .MuiAutocomplete-option.Mui-selected": {
|
|
1167
|
+
color: o.palette.state?.active,
|
|
1168
|
+
transition: "all .5s",
|
|
1169
|
+
backgroundColor: o.palette.state?.active12
|
|
1170
|
+
},
|
|
1171
|
+
"& .MuiAutocomplete-listbox .MuiAutocomplete-option:active": {
|
|
1172
|
+
color: o.palette.state?.focus,
|
|
1173
|
+
transition: "all .5s",
|
|
1174
|
+
backgroundColor: o.palette.background.default,
|
|
1175
|
+
boxShadow: `0 0 0 1px ${o.palette.state?.focus}`
|
|
1176
|
+
}
|
|
787
1177
|
}
|
|
788
1178
|
}
|
|
789
1179
|
}
|
|
790
1180
|
};
|
|
791
1181
|
}
|
|
792
|
-
function
|
|
1182
|
+
function so(o) {
|
|
793
1183
|
return {
|
|
794
1184
|
MuiFormControl: {
|
|
795
1185
|
styleOverrides: {
|
|
@@ -871,7 +1261,7 @@ function ao(o) {
|
|
|
871
1261
|
}
|
|
872
1262
|
};
|
|
873
1263
|
}
|
|
874
|
-
function
|
|
1264
|
+
function uo(o) {
|
|
875
1265
|
return {
|
|
876
1266
|
MuiInputLabel: {
|
|
877
1267
|
styleOverrides: {
|
|
@@ -886,7 +1276,7 @@ function no(o) {
|
|
|
886
1276
|
}
|
|
887
1277
|
};
|
|
888
1278
|
}
|
|
889
|
-
function
|
|
1279
|
+
function co(o) {
|
|
890
1280
|
return {
|
|
891
1281
|
MuiRadio: {
|
|
892
1282
|
styleOverrides: {
|
|
@@ -903,8 +1293,8 @@ function po(o) {
|
|
|
903
1293
|
}
|
|
904
1294
|
};
|
|
905
1295
|
}
|
|
906
|
-
function
|
|
907
|
-
const
|
|
1296
|
+
function go(o) {
|
|
1297
|
+
const e = o.palette.mode === "light";
|
|
908
1298
|
return {
|
|
909
1299
|
MuiDrawer: {
|
|
910
1300
|
styleOverrides: {
|
|
@@ -913,13 +1303,13 @@ function so(o) {
|
|
|
913
1303
|
"& .MuiDrawer-paperAnchorLeft": {
|
|
914
1304
|
boxShadow: `8px 24px 24px 12px ${F(
|
|
915
1305
|
o.palette.grey[900],
|
|
916
|
-
|
|
1306
|
+
e ? 0.16 : 0.48
|
|
917
1307
|
)}`
|
|
918
1308
|
},
|
|
919
1309
|
"& .MuiDrawer-paperAnchorRight": {
|
|
920
1310
|
boxShadow: `-8px 24px 24px 12px ${F(
|
|
921
1311
|
o.palette.grey[900],
|
|
922
|
-
|
|
1312
|
+
e ? 0.16 : 0.48
|
|
923
1313
|
)}`
|
|
924
1314
|
}
|
|
925
1315
|
}
|
|
@@ -928,7 +1318,7 @@ function so(o) {
|
|
|
928
1318
|
}
|
|
929
1319
|
};
|
|
930
1320
|
}
|
|
931
|
-
function
|
|
1321
|
+
function xo(o) {
|
|
932
1322
|
return {
|
|
933
1323
|
MuiDialog: {
|
|
934
1324
|
styleOverrides: {
|
|
@@ -984,8 +1374,8 @@ function lo(o) {
|
|
|
984
1374
|
}
|
|
985
1375
|
};
|
|
986
1376
|
}
|
|
987
|
-
function
|
|
988
|
-
const
|
|
1377
|
+
function bo(o) {
|
|
1378
|
+
const e = o.palette.mode === "light";
|
|
989
1379
|
return {
|
|
990
1380
|
MuiSlider: {
|
|
991
1381
|
defaultProps: {
|
|
@@ -1003,14 +1393,14 @@ function uo(o) {
|
|
|
1003
1393
|
},
|
|
1004
1394
|
valueLabel: {
|
|
1005
1395
|
borderRadius: 8,
|
|
1006
|
-
backgroundColor: o.palette.grey[
|
|
1396
|
+
backgroundColor: o.palette.grey[e ? 800 : 700]
|
|
1007
1397
|
}
|
|
1008
1398
|
}
|
|
1009
1399
|
}
|
|
1010
1400
|
};
|
|
1011
1401
|
}
|
|
1012
|
-
function
|
|
1013
|
-
const
|
|
1402
|
+
function yo(o) {
|
|
1403
|
+
const e = o.palette.mode === "light";
|
|
1014
1404
|
return {
|
|
1015
1405
|
MuiSwitch: {
|
|
1016
1406
|
styleOverrides: {
|
|
@@ -1025,10 +1415,10 @@ function co(o) {
|
|
|
1025
1415
|
left: 0,
|
|
1026
1416
|
right: "auto",
|
|
1027
1417
|
"&:not(:.Mui-checked)": {
|
|
1028
|
-
color: o.palette.grey[
|
|
1418
|
+
color: o.palette.grey[e ? 100 : 300]
|
|
1029
1419
|
},
|
|
1030
1420
|
"&.Mui-checked.Mui-disabled, &.Mui-disabled": {
|
|
1031
|
-
color: o.palette.grey[
|
|
1421
|
+
color: o.palette.grey[e ? 400 : 600]
|
|
1032
1422
|
},
|
|
1033
1423
|
"&.Mui-disabled+.MuiSwitch-track": {
|
|
1034
1424
|
opacity: 1,
|
|
@@ -1039,7 +1429,7 @@ function co(o) {
|
|
|
1039
1429
|
}
|
|
1040
1430
|
};
|
|
1041
1431
|
}
|
|
1042
|
-
function
|
|
1432
|
+
function fo(o) {
|
|
1043
1433
|
return {
|
|
1044
1434
|
MuiSvgIcon: {
|
|
1045
1435
|
styleOverrides: {
|
|
@@ -1057,22 +1447,22 @@ function go(o) {
|
|
|
1057
1447
|
}
|
|
1058
1448
|
};
|
|
1059
1449
|
}
|
|
1060
|
-
function
|
|
1061
|
-
const
|
|
1450
|
+
function ho(o) {
|
|
1451
|
+
const e = o.palette.mode === "light";
|
|
1062
1452
|
return {
|
|
1063
1453
|
MuiTooltip: {
|
|
1064
1454
|
styleOverrides: {
|
|
1065
1455
|
tooltip: {
|
|
1066
|
-
backgroundColor: o.palette.grey[
|
|
1456
|
+
backgroundColor: o.palette.grey[e ? 800 : 700]
|
|
1067
1457
|
},
|
|
1068
1458
|
arrow: {
|
|
1069
|
-
color: o.palette.grey[
|
|
1459
|
+
color: o.palette.grey[e ? 800 : 700]
|
|
1070
1460
|
}
|
|
1071
1461
|
}
|
|
1072
1462
|
}
|
|
1073
1463
|
};
|
|
1074
1464
|
}
|
|
1075
|
-
function
|
|
1465
|
+
function Mo(o) {
|
|
1076
1466
|
return {
|
|
1077
1467
|
MuiPopover: {
|
|
1078
1468
|
styleOverrides: {
|
|
@@ -1084,7 +1474,7 @@ function bo(o) {
|
|
|
1084
1474
|
}
|
|
1085
1475
|
};
|
|
1086
1476
|
}
|
|
1087
|
-
function
|
|
1477
|
+
function vo(o) {
|
|
1088
1478
|
return {
|
|
1089
1479
|
MuiStepConnector: {
|
|
1090
1480
|
styleOverrides: {
|
|
@@ -1095,7 +1485,7 @@ function yo(o) {
|
|
|
1095
1485
|
}
|
|
1096
1486
|
};
|
|
1097
1487
|
}
|
|
1098
|
-
function
|
|
1488
|
+
function Bo(o) {
|
|
1099
1489
|
return {
|
|
1100
1490
|
MuiDataGrid: {
|
|
1101
1491
|
styleOverrides: {
|
|
@@ -1132,7 +1522,7 @@ function fo(o) {
|
|
|
1132
1522
|
styleOverrides: {
|
|
1133
1523
|
root: {
|
|
1134
1524
|
"& .MuiDataGrid-gridMenuList": {
|
|
1135
|
-
boxShadow: o.customShadows.
|
|
1525
|
+
boxShadow: o.customShadows.z4,
|
|
1136
1526
|
borderRadius: o.shape.borderRadius
|
|
1137
1527
|
},
|
|
1138
1528
|
"& .MuiMenuItem-root": {
|
|
@@ -1192,7 +1582,7 @@ function fo(o) {
|
|
|
1192
1582
|
}
|
|
1193
1583
|
};
|
|
1194
1584
|
}
|
|
1195
|
-
function
|
|
1585
|
+
function Fo(o) {
|
|
1196
1586
|
return {
|
|
1197
1587
|
MuiSkeleton: {
|
|
1198
1588
|
defaultProps: {
|
|
@@ -1206,17 +1596,17 @@ function Mo(o) {
|
|
|
1206
1596
|
}
|
|
1207
1597
|
};
|
|
1208
1598
|
}
|
|
1209
|
-
function
|
|
1210
|
-
const
|
|
1599
|
+
function ko(o) {
|
|
1600
|
+
const e = t(o.palette.grey[900], 0.48), a = t(o.palette.grey[900], 1);
|
|
1211
1601
|
return {
|
|
1212
1602
|
MuiBackdrop: {
|
|
1213
1603
|
styleOverrides: {
|
|
1214
1604
|
root: {
|
|
1215
1605
|
background: [
|
|
1216
1606
|
"rgb(22,28,36)",
|
|
1217
|
-
`-moz-linear-gradient(75deg, ${
|
|
1218
|
-
`-webkit-linear-gradient(75deg, ${
|
|
1219
|
-
`linear-gradient(75deg, ${
|
|
1607
|
+
`-moz-linear-gradient(75deg, ${e} 0%, ${a} 100%)`,
|
|
1608
|
+
`-webkit-linear-gradient(75deg, ${e} 0%, ${a} 100%)`,
|
|
1609
|
+
`linear-gradient(75deg, ${e} 0%, ${a} 100%)`
|
|
1220
1610
|
],
|
|
1221
1611
|
"&.MuiBackdrop-invisible": {
|
|
1222
1612
|
background: "transparent"
|
|
@@ -1226,8 +1616,8 @@ function ho(o) {
|
|
|
1226
1616
|
}
|
|
1227
1617
|
};
|
|
1228
1618
|
}
|
|
1229
|
-
function
|
|
1230
|
-
const
|
|
1619
|
+
function Co(o) {
|
|
1620
|
+
const e = o.palette.mode === "light";
|
|
1231
1621
|
return {
|
|
1232
1622
|
MuiLinearProgress: {
|
|
1233
1623
|
styleOverrides: {
|
|
@@ -1239,7 +1629,7 @@ function Fo(o) {
|
|
|
1239
1629
|
borderRadius: 4
|
|
1240
1630
|
},
|
|
1241
1631
|
colorPrimary: {
|
|
1242
|
-
backgroundColor: o.palette.primary[
|
|
1632
|
+
backgroundColor: o.palette.primary[e ? "lighter" : "darker"]
|
|
1243
1633
|
},
|
|
1244
1634
|
buffer: {
|
|
1245
1635
|
backgroundColor: "transparent"
|
|
@@ -1248,7 +1638,7 @@ function Fo(o) {
|
|
|
1248
1638
|
}
|
|
1249
1639
|
};
|
|
1250
1640
|
}
|
|
1251
|
-
function
|
|
1641
|
+
function mo(o) {
|
|
1252
1642
|
return {
|
|
1253
1643
|
MuiTimelineDot: {
|
|
1254
1644
|
styleOverrides: {
|
|
@@ -1266,7 +1656,7 @@ function vo(o) {
|
|
|
1266
1656
|
}
|
|
1267
1657
|
};
|
|
1268
1658
|
}
|
|
1269
|
-
function
|
|
1659
|
+
function Ro(o) {
|
|
1270
1660
|
return {
|
|
1271
1661
|
MuiCheckbox: {
|
|
1272
1662
|
styleOverrides: {
|
|
@@ -1360,9 +1750,14 @@ function So(o) {
|
|
|
1360
1750
|
}
|
|
1361
1751
|
};
|
|
1362
1752
|
}
|
|
1363
|
-
function
|
|
1753
|
+
function Lo(o) {
|
|
1364
1754
|
return {
|
|
1365
1755
|
MuiTypography: {
|
|
1756
|
+
defaultProps: {
|
|
1757
|
+
variantMapping: {
|
|
1758
|
+
subtitleDens: "span"
|
|
1759
|
+
}
|
|
1760
|
+
},
|
|
1366
1761
|
styleOverrides: {
|
|
1367
1762
|
paragraph: {
|
|
1368
1763
|
marginBottom: o.spacing(2)
|
|
@@ -1374,7 +1769,7 @@ function Co(o) {
|
|
|
1374
1769
|
}
|
|
1375
1770
|
};
|
|
1376
1771
|
}
|
|
1377
|
-
function
|
|
1772
|
+
function Oo(o) {
|
|
1378
1773
|
return {
|
|
1379
1774
|
MuiPaginationItem: {
|
|
1380
1775
|
styleOverrides: {
|
|
@@ -1386,9 +1781,9 @@ function $o(o) {
|
|
|
1386
1781
|
textPrimary: {
|
|
1387
1782
|
"&.Mui-selected": {
|
|
1388
1783
|
color: o.palette.primary.main,
|
|
1389
|
-
backgroundColor:
|
|
1784
|
+
backgroundColor: t(o.palette.primary.main, 0.08),
|
|
1390
1785
|
"&:hover, &.Mui-focusVisible": {
|
|
1391
|
-
backgroundColor: `${
|
|
1786
|
+
backgroundColor: `${t(
|
|
1392
1787
|
o.palette.primary.main,
|
|
1393
1788
|
0.24
|
|
1394
1789
|
)} !important`
|
|
@@ -1400,8 +1795,8 @@ function $o(o) {
|
|
|
1400
1795
|
},
|
|
1401
1796
|
outlinedPrimary: {
|
|
1402
1797
|
"&.Mui-selected": {
|
|
1403
|
-
backgroundColor:
|
|
1404
|
-
border: `1px solid ${
|
|
1798
|
+
backgroundColor: t(o.palette.primary.main, 0.08),
|
|
1799
|
+
border: `1px solid ${t(o.palette.primary.main, 0.24)}`
|
|
1405
1800
|
}
|
|
1406
1801
|
}
|
|
1407
1802
|
}
|
|
@@ -1420,24 +1815,24 @@ function wo(o) {
|
|
|
1420
1815
|
}
|
|
1421
1816
|
};
|
|
1422
1817
|
}
|
|
1423
|
-
function
|
|
1424
|
-
const
|
|
1425
|
-
props: { variant: "contained", color:
|
|
1426
|
-
style: { boxShadow: o.customShadows
|
|
1818
|
+
function $o(o) {
|
|
1819
|
+
const e = (a) => ({
|
|
1820
|
+
props: { variant: "contained", color: a },
|
|
1821
|
+
style: { boxShadow: o.customShadows.primary }
|
|
1427
1822
|
});
|
|
1428
1823
|
return {
|
|
1429
1824
|
MuiButtonGroup: {
|
|
1430
1825
|
variants: [
|
|
1431
1826
|
{
|
|
1432
1827
|
props: { variant: "contained", color: "inherit" },
|
|
1433
|
-
style: { boxShadow: o.customShadows.
|
|
1434
|
-
},
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1828
|
+
style: { boxShadow: o.customShadows.z4 }
|
|
1829
|
+
},
|
|
1830
|
+
e("primary"),
|
|
1831
|
+
e("secondary"),
|
|
1832
|
+
e("info"),
|
|
1833
|
+
e("success"),
|
|
1834
|
+
e("warning"),
|
|
1835
|
+
e("error"),
|
|
1441
1836
|
{
|
|
1442
1837
|
props: { disabled: !0 },
|
|
1443
1838
|
style: {
|
|
@@ -1462,7 +1857,7 @@ function mo(o) {
|
|
|
1462
1857
|
}
|
|
1463
1858
|
};
|
|
1464
1859
|
}
|
|
1465
|
-
function
|
|
1860
|
+
function Ao(o) {
|
|
1466
1861
|
return {
|
|
1467
1862
|
MuiCssBaseline: {
|
|
1468
1863
|
styleOverrides: {
|
|
@@ -1505,16 +1900,13 @@ function Bo(o) {
|
|
|
1505
1900
|
}
|
|
1506
1901
|
};
|
|
1507
1902
|
}
|
|
1508
|
-
function
|
|
1903
|
+
function To(o) {
|
|
1509
1904
|
return {
|
|
1510
1905
|
MuiAutocomplete: {
|
|
1511
1906
|
styleOverrides: {
|
|
1512
1907
|
root: {
|
|
1513
1908
|
"& .MuiInputBase-root": {
|
|
1514
1909
|
padding: "0 39px 0px 0"
|
|
1515
|
-
},
|
|
1516
|
-
input: {
|
|
1517
|
-
padding: `${o.spacing(1.5, 1.5)}!important`
|
|
1518
1910
|
}
|
|
1519
1911
|
},
|
|
1520
1912
|
paper: {
|
|
@@ -1532,19 +1924,19 @@ function Oo(o) {
|
|
|
1532
1924
|
}
|
|
1533
1925
|
};
|
|
1534
1926
|
}
|
|
1535
|
-
const
|
|
1536
|
-
props: { color:
|
|
1927
|
+
const u = (o, e) => ({
|
|
1928
|
+
props: { color: e },
|
|
1537
1929
|
style: {
|
|
1538
1930
|
"&:hover": {
|
|
1539
|
-
borderColor:
|
|
1540
|
-
backgroundColor:
|
|
1931
|
+
borderColor: t(o.palette[e].main, 0.48),
|
|
1932
|
+
backgroundColor: t(o.palette[e].main, o.palette.action.hoverOpacity)
|
|
1541
1933
|
},
|
|
1542
1934
|
"&.Mui-selected": {
|
|
1543
|
-
borderColor:
|
|
1935
|
+
borderColor: t(o.palette[e].main, 0.48)
|
|
1544
1936
|
}
|
|
1545
1937
|
}
|
|
1546
1938
|
});
|
|
1547
|
-
function
|
|
1939
|
+
function Do(o) {
|
|
1548
1940
|
return {
|
|
1549
1941
|
MuiToggleButton: {
|
|
1550
1942
|
variants: [
|
|
@@ -1556,12 +1948,12 @@ function Lo(o) {
|
|
|
1556
1948
|
}
|
|
1557
1949
|
}
|
|
1558
1950
|
},
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1951
|
+
u(o, "primary"),
|
|
1952
|
+
u(o, "secondary"),
|
|
1953
|
+
u(o, "info"),
|
|
1954
|
+
u(o, "success"),
|
|
1955
|
+
u(o, "warning"),
|
|
1956
|
+
u(o, "error")
|
|
1565
1957
|
]
|
|
1566
1958
|
},
|
|
1567
1959
|
MuiToggleButtonGroup: {
|
|
@@ -1580,7 +1972,7 @@ function Lo(o) {
|
|
|
1580
1972
|
}
|
|
1581
1973
|
};
|
|
1582
1974
|
}
|
|
1583
|
-
function
|
|
1975
|
+
function Io(o) {
|
|
1584
1976
|
return {
|
|
1585
1977
|
MuiFormControlLabel: {
|
|
1586
1978
|
styleOverrides: {
|
|
@@ -1605,7 +1997,7 @@ function Ro(o) {
|
|
|
1605
1997
|
}
|
|
1606
1998
|
};
|
|
1607
1999
|
}
|
|
1608
|
-
function
|
|
2000
|
+
function zo(o) {
|
|
1609
2001
|
return {
|
|
1610
2002
|
MuiLoadingButton: {
|
|
1611
2003
|
styleOverrides: {
|
|
@@ -1629,42 +2021,32 @@ function To(o) {
|
|
|
1629
2021
|
}
|
|
1630
2022
|
};
|
|
1631
2023
|
}
|
|
1632
|
-
const
|
|
2024
|
+
const Go = (o) => ({
|
|
1633
2025
|
M4LBruceTest: {
|
|
1634
2026
|
styleOverrides: {}
|
|
1635
2027
|
}
|
|
1636
|
-
}),
|
|
2028
|
+
}), Eo = (o) => ({
|
|
1637
2029
|
M4LDynamicFilter: {
|
|
1638
2030
|
styleOverrides: {}
|
|
1639
2031
|
}
|
|
1640
|
-
}),
|
|
2032
|
+
}), Ho = (o) => ({
|
|
1641
2033
|
M4LRHFTextFieldPassword: {
|
|
1642
2034
|
styleOverrides: {
|
|
1643
2035
|
["&.M4LRHFTextFieldPassword-root"]: {
|
|
1644
2036
|
[".M4LRHFTextField-root .MuiTextField-root"]: {
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
gap:
|
|
2037
|
+
test: "root",
|
|
2038
|
+
display: "flex",
|
|
2039
|
+
flexDirection: "column",
|
|
2040
|
+
gap: o.spacing(1)
|
|
1649
2041
|
}
|
|
1650
2042
|
}
|
|
1651
2043
|
}
|
|
1652
2044
|
}
|
|
1653
|
-
}),
|
|
2045
|
+
}), Po = (o) => ({
|
|
1654
2046
|
M4LRHFTextField: {
|
|
1655
|
-
styleOverrides: {
|
|
1656
|
-
["&.M4LRHFTextField-root"]: {
|
|
1657
|
-
test: "root",
|
|
1658
|
-
".MuiTextField-root": {
|
|
1659
|
-
border: "1px solid purple"
|
|
1660
|
-
},
|
|
1661
|
-
".MuiFormLabel-root": {
|
|
1662
|
-
background: "orange"
|
|
1663
|
-
}
|
|
1664
|
-
}
|
|
1665
|
-
}
|
|
2047
|
+
styleOverrides: {}
|
|
1666
2048
|
}
|
|
1667
|
-
}),
|
|
2049
|
+
}), Wo = (o) => ({
|
|
1668
2050
|
M4LIcon: {
|
|
1669
2051
|
styleOverrides: {
|
|
1670
2052
|
["&.M4LIcon-root"]: {
|
|
@@ -1672,37 +2054,65 @@ const Do = (o) => ({
|
|
|
1672
2054
|
}
|
|
1673
2055
|
}
|
|
1674
2056
|
}
|
|
1675
|
-
}),
|
|
2057
|
+
}), qo = (o) => ({
|
|
1676
2058
|
M4LIconButton: {
|
|
1677
2059
|
styleOverrides: {
|
|
1678
2060
|
["&.M4LIconButton-root"]: {
|
|
1679
|
-
test: "root"
|
|
1680
|
-
".M4LIcon-root": {
|
|
1681
|
-
backgroundColor: "yellow"
|
|
1682
|
-
}
|
|
2061
|
+
test: "root"
|
|
1683
2062
|
}
|
|
1684
2063
|
}
|
|
1685
2064
|
}
|
|
1686
|
-
}),
|
|
2065
|
+
}), _o = (o) => ({
|
|
1687
2066
|
M4LanguagePopover: {
|
|
1688
2067
|
styleOverrides: {
|
|
1689
2068
|
["&.M4LanguagePopover-root"]: {
|
|
1690
|
-
test: "root"
|
|
1691
|
-
".MuiIconButton-sizeMedium": {
|
|
1692
|
-
border: "1px solid red"
|
|
1693
|
-
}
|
|
2069
|
+
test: "root"
|
|
1694
2070
|
}
|
|
1695
2071
|
}
|
|
1696
2072
|
}
|
|
1697
|
-
}),
|
|
2073
|
+
}), No = (o) => ({
|
|
1698
2074
|
M4LImageButton: {
|
|
1699
2075
|
styleOverrides: {
|
|
1700
2076
|
["&.M4LImageButton-root"]: {
|
|
1701
|
-
test: "root"
|
|
2077
|
+
test: "root",
|
|
2078
|
+
".MuiButtonBase-root": {
|
|
2079
|
+
display: "flex",
|
|
2080
|
+
padding: "4px",
|
|
2081
|
+
borderRadius: "6px",
|
|
2082
|
+
alignItems: "center",
|
|
2083
|
+
justifyContent: "center"
|
|
2084
|
+
},
|
|
2085
|
+
".M4LImage-root": {
|
|
2086
|
+
display: "flex",
|
|
2087
|
+
alignItems: "center",
|
|
2088
|
+
justifyContent: "center",
|
|
2089
|
+
objectFit: "cover",
|
|
2090
|
+
width: "100%",
|
|
2091
|
+
height: "100%"
|
|
2092
|
+
},
|
|
2093
|
+
".M4LImage-lazyLoad": {
|
|
2094
|
+
borderRadius: "4px",
|
|
2095
|
+
width: "100%",
|
|
2096
|
+
height: "100%",
|
|
2097
|
+
display: "flex",
|
|
2098
|
+
alignItems: "center",
|
|
2099
|
+
justifyContent: "center"
|
|
2100
|
+
},
|
|
2101
|
+
".M4LImage-img": {
|
|
2102
|
+
borderRadius: "4px"
|
|
2103
|
+
},
|
|
2104
|
+
".MuiButtonBase-root:hover": {
|
|
2105
|
+
backgroundColor: o.palette.state?.active12
|
|
2106
|
+
},
|
|
2107
|
+
".MuiButtonBase-root:focus": {
|
|
2108
|
+
backgroundColor: o.palette.state?.active12,
|
|
2109
|
+
border: "1px solid",
|
|
2110
|
+
borderColor: o.palette.state?.focus
|
|
2111
|
+
}
|
|
1702
2112
|
}
|
|
1703
2113
|
}
|
|
1704
2114
|
}
|
|
1705
|
-
}),
|
|
2115
|
+
}), Yo = (o) => ({
|
|
1706
2116
|
M4LImage: {
|
|
1707
2117
|
styleOverrides: {
|
|
1708
2118
|
["&.M4LImage-root"]: {
|
|
@@ -1710,26 +2120,83 @@ const Do = (o) => ({
|
|
|
1710
2120
|
}
|
|
1711
2121
|
}
|
|
1712
2122
|
}
|
|
1713
|
-
}),
|
|
2123
|
+
}), jo = (o) => ({
|
|
1714
2124
|
M4LPopover: {
|
|
1715
2125
|
styleOverrides: {
|
|
1716
2126
|
["&.M4LPopover-root"]: {
|
|
1717
2127
|
test: "root",
|
|
1718
2128
|
".MuiPaper-root": {
|
|
1719
|
-
background:
|
|
2129
|
+
background: o.palette.background.default,
|
|
2130
|
+
borderRadius: "6px",
|
|
2131
|
+
Padding: "8px",
|
|
2132
|
+
margin: "8px 0px 0px 8px",
|
|
2133
|
+
boxShadow: o.customShadows.z3
|
|
1720
2134
|
}
|
|
1721
2135
|
}
|
|
1722
2136
|
}
|
|
1723
2137
|
}
|
|
1724
|
-
}),
|
|
2138
|
+
}), Vo = (o) => ({
|
|
1725
2139
|
M4LRHFCheckbox: {
|
|
1726
2140
|
styleOverrides: {
|
|
1727
2141
|
["&.M4LRHFCheckbox-root"]: {
|
|
1728
|
-
test: "root"
|
|
2142
|
+
test: "root",
|
|
2143
|
+
".M4LRHFCheckbox-checkTypography": {
|
|
2144
|
+
display: "flex",
|
|
2145
|
+
gap: o.spacing(2),
|
|
2146
|
+
[o.breakpoints.down("sm")]: {
|
|
2147
|
+
gap: o.spacing(1),
|
|
2148
|
+
...o.typography.paragraph
|
|
2149
|
+
}
|
|
2150
|
+
},
|
|
2151
|
+
"& .MuiTypography-root": {
|
|
2152
|
+
color: o.palette.text.primary,
|
|
2153
|
+
...o.typography.body
|
|
2154
|
+
},
|
|
2155
|
+
".M4LRHFCheckbox-small .MuiButtonBase-root": {
|
|
2156
|
+
width: "20px",
|
|
2157
|
+
height: "20px"
|
|
2158
|
+
},
|
|
2159
|
+
".MuiCheckbox-root .MuiSvgIcon-fontSizeSmall": {
|
|
2160
|
+
width: "16px",
|
|
2161
|
+
height: "16px"
|
|
2162
|
+
},
|
|
2163
|
+
".M4LRHFCheckbox-medium .MuiButtonBase-root": {
|
|
2164
|
+
width: "24px",
|
|
2165
|
+
height: "24px"
|
|
2166
|
+
},
|
|
2167
|
+
".MuiCheckbox-root .MuiSvgIcon-fontSizeMedium": {
|
|
2168
|
+
width: "20px",
|
|
2169
|
+
height: "20px"
|
|
2170
|
+
},
|
|
2171
|
+
".MuiButtonBase-root": {
|
|
2172
|
+
borderRadius: "4px"
|
|
2173
|
+
},
|
|
2174
|
+
".MuiButtonBase-root:hover": {
|
|
2175
|
+
backgroundColor: o.palette.state?.active12
|
|
2176
|
+
},
|
|
2177
|
+
".Mui-focusVisible": {
|
|
2178
|
+
border: "1px solid",
|
|
2179
|
+
borderColor: o.palette.state?.focus
|
|
2180
|
+
},
|
|
2181
|
+
".MuiButtonBase-root:hover .MuiSvgIcon-root": {
|
|
2182
|
+
fill: o.palette.state?.hover
|
|
2183
|
+
},
|
|
2184
|
+
".M4LRHFCheckbox-checkTypography .MuiTypography-root": {
|
|
2185
|
+
...o.typography.body
|
|
2186
|
+
},
|
|
2187
|
+
".M4LRHFCheckbox-stateDisabled .MuiSvgIcon-root": {
|
|
2188
|
+
fill: o.palette.state?.default
|
|
2189
|
+
},
|
|
2190
|
+
".M4LRHFCheckbox-stateDisabled .MuiTypography-root": {
|
|
2191
|
+
color: o.palette.text.disabled
|
|
2192
|
+
},
|
|
2193
|
+
".MuiButtonBase-root .Mui-focusVisible:focus-visible": {
|
|
2194
|
+
outline: "#fff00"
|
|
2195
|
+
}
|
|
1729
2196
|
}
|
|
1730
2197
|
}
|
|
1731
2198
|
}
|
|
1732
|
-
}),
|
|
2199
|
+
}), Uo = (o) => ({
|
|
1733
2200
|
M4LErrorLabel: {
|
|
1734
2201
|
styleOverrides: {
|
|
1735
2202
|
["&.M4LErrorLabel-root"]: {
|
|
@@ -1737,99 +2204,144 @@ const Do = (o) => ({
|
|
|
1737
2204
|
}
|
|
1738
2205
|
}
|
|
1739
2206
|
}
|
|
1740
|
-
}),
|
|
2207
|
+
}), Ko = (o) => ({
|
|
1741
2208
|
M4LTypography: {
|
|
1742
2209
|
styleOverrides: {
|
|
1743
2210
|
["&.M4LTypography-root"]: {
|
|
1744
|
-
|
|
2211
|
+
display: "inline",
|
|
2212
|
+
"& .MuiTypography-root": {
|
|
2213
|
+
margin: "unset"
|
|
2214
|
+
}
|
|
1745
2215
|
}
|
|
1746
2216
|
}
|
|
1747
2217
|
}
|
|
1748
|
-
}),
|
|
2218
|
+
}), Jo = (o) => ({
|
|
1749
2219
|
M4LButton: {
|
|
2220
|
+
styleOverrides: {}
|
|
2221
|
+
}
|
|
2222
|
+
}), Qo = (o) => ({
|
|
2223
|
+
M4LRHFAutocomplete: {
|
|
1750
2224
|
styleOverrides: {
|
|
1751
|
-
"&.
|
|
1752
|
-
test: "root"
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
2225
|
+
["&.M4LRHFAutocomplete-root"]: {
|
|
2226
|
+
test: "root"
|
|
2227
|
+
}
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2230
|
+
}), Xo = (o) => ({
|
|
2231
|
+
M4LRHFAutocompleteAsync: {
|
|
2232
|
+
styleOverrides: {
|
|
2233
|
+
["&.M4LRHFAutocompleteAsync-root"]: {
|
|
2234
|
+
test: "root"
|
|
2235
|
+
}
|
|
2236
|
+
}
|
|
2237
|
+
}
|
|
2238
|
+
}), Zo = (o) => ({
|
|
2239
|
+
M4LoadingButton: {
|
|
2240
|
+
styleOverrides: {}
|
|
2241
|
+
}
|
|
2242
|
+
}), or = (o) => ({
|
|
2243
|
+
M4LNavLink: {
|
|
2244
|
+
styleOverrides: {
|
|
2245
|
+
["&.M4LNavLink-root"]: {
|
|
2246
|
+
test: "root"
|
|
1756
2247
|
}
|
|
1757
2248
|
}
|
|
1758
2249
|
}
|
|
1759
2250
|
});
|
|
1760
|
-
function
|
|
2251
|
+
function ur(o) {
|
|
1761
2252
|
return Object.assign(
|
|
1762
|
-
J(o),
|
|
1763
|
-
X(o),
|
|
1764
|
-
Q(o),
|
|
1765
|
-
Z(o),
|
|
1766
2253
|
oo(o),
|
|
1767
|
-
ao(o),
|
|
1768
|
-
no(),
|
|
1769
|
-
po(o),
|
|
1770
|
-
eo(),
|
|
1771
|
-
ro(o),
|
|
1772
2254
|
to(o),
|
|
1773
|
-
|
|
2255
|
+
ro(o),
|
|
2256
|
+
eo(o),
|
|
2257
|
+
ao(o),
|
|
2258
|
+
so(o),
|
|
2259
|
+
uo(),
|
|
1774
2260
|
co(o),
|
|
1775
|
-
|
|
1776
|
-
|
|
2261
|
+
po(),
|
|
2262
|
+
io(o),
|
|
2263
|
+
no(o),
|
|
1777
2264
|
lo(o),
|
|
1778
|
-
K(o),
|
|
1779
|
-
uo(o),
|
|
1780
|
-
so(o),
|
|
1781
2265
|
yo(o),
|
|
2266
|
+
X(o),
|
|
2267
|
+
Z(o),
|
|
1782
2268
|
xo(o),
|
|
2269
|
+
Q(o),
|
|
1783
2270
|
bo(o),
|
|
1784
|
-
go(),
|
|
1785
|
-
ko(o),
|
|
1786
|
-
fo(o),
|
|
1787
|
-
Mo(o),
|
|
2271
|
+
go(o),
|
|
1788
2272
|
vo(o),
|
|
1789
2273
|
ho(o),
|
|
2274
|
+
Mo(o),
|
|
2275
|
+
fo(),
|
|
2276
|
+
Ro(o),
|
|
2277
|
+
Bo(o),
|
|
1790
2278
|
Fo(o),
|
|
1791
|
-
|
|
2279
|
+
mo(o),
|
|
2280
|
+
ko(o),
|
|
1792
2281
|
Co(o),
|
|
2282
|
+
So(o),
|
|
2283
|
+
Lo(o),
|
|
2284
|
+
Oo(o),
|
|
1793
2285
|
$o(o),
|
|
1794
|
-
mo(o),
|
|
1795
2286
|
wo(o),
|
|
1796
|
-
Bo(),
|
|
1797
|
-
Oo(o),
|
|
1798
|
-
Ro(o),
|
|
1799
|
-
Lo(o),
|
|
1800
|
-
To(o),
|
|
1801
|
-
Do(),
|
|
1802
2287
|
Ao(),
|
|
1803
|
-
|
|
1804
|
-
Io(),
|
|
1805
|
-
|
|
2288
|
+
To(o),
|
|
2289
|
+
Io(o),
|
|
2290
|
+
Do(o),
|
|
2291
|
+
zo(o),
|
|
2292
|
+
Zo(),
|
|
2293
|
+
Go(),
|
|
1806
2294
|
Eo(),
|
|
1807
|
-
|
|
2295
|
+
Po(),
|
|
2296
|
+
Ho(o),
|
|
2297
|
+
Qo(),
|
|
2298
|
+
Xo(),
|
|
1808
2299
|
Wo(),
|
|
2300
|
+
qo(),
|
|
1809
2301
|
_o(),
|
|
1810
|
-
|
|
1811
|
-
|
|
2302
|
+
No(o),
|
|
2303
|
+
or(),
|
|
1812
2304
|
Yo(),
|
|
1813
|
-
jo(),
|
|
1814
|
-
Vo()
|
|
2305
|
+
jo(o),
|
|
2306
|
+
Vo(o),
|
|
2307
|
+
Uo(),
|
|
2308
|
+
Ko(),
|
|
2309
|
+
Jo()
|
|
1815
2310
|
);
|
|
1816
2311
|
}
|
|
2312
|
+
const cr = {
|
|
2313
|
+
values: {
|
|
2314
|
+
xs: 0,
|
|
2315
|
+
sm: 600,
|
|
2316
|
+
md: 900,
|
|
2317
|
+
lg: 1200,
|
|
2318
|
+
xl: 1400
|
|
2319
|
+
}
|
|
2320
|
+
}, gr = {
|
|
2321
|
+
mobile: 16,
|
|
2322
|
+
desktop: 8
|
|
2323
|
+
};
|
|
1817
2324
|
export {
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
2325
|
+
r as PATRONUSCOLORS,
|
|
2326
|
+
N as blaze,
|
|
2327
|
+
_ as candy,
|
|
2328
|
+
g as colorPresets,
|
|
2329
|
+
sr as createCustomShadows,
|
|
2330
|
+
P as defaultPreset,
|
|
2331
|
+
lr as defaultThemeOptions,
|
|
2332
|
+
ur as fnComponentsOverrides,
|
|
2333
|
+
ir as getColorPresets,
|
|
2334
|
+
nr as getColorState,
|
|
2335
|
+
pr as getFontValue,
|
|
2336
|
+
gr as globalRemSize,
|
|
2337
|
+
q as grass,
|
|
2338
|
+
cr as muiBreakpointsValues,
|
|
2339
|
+
d as palette,
|
|
2340
|
+
s as pxToRem,
|
|
2341
|
+
Y as remToPx,
|
|
2342
|
+
p as responsiveFontSizes,
|
|
2343
|
+
dr as shadows,
|
|
2344
|
+
yr as styled,
|
|
2345
|
+
W as turqui,
|
|
2346
|
+
U as typography
|
|
1835
2347
|
};
|