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