ece-docs-components 1.0.98 → 1.0.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Concertina.js +63 -52
- package/dist/cjs/components/Concertina.js.map +1 -1
- package/dist/cjs/themes/GPTheme.js +132 -125
- package/dist/cjs/themes/GPTheme.js.map +1 -1
- package/dist/esm/_virtual/index8.js +2 -2
- package/dist/esm/_virtual/index9.js +2 -2
- package/dist/esm/components/Concertina.d.ts +1 -1
- package/dist/esm/components/Concertina.js +63 -52
- package/dist/esm/components/Concertina.js.map +1 -1
- package/dist/esm/node_modules/domhandler/lib/index.js +1 -1
- package/dist/esm/node_modules/domutils/lib/index.js +1 -1
- package/dist/esm/node_modules/entities/lib/generated/decode-data-html.js +1 -1
- package/dist/esm/node_modules/entities/lib/generated/decode-data-xml.js +1 -1
- package/dist/esm/node_modules/html-dom-parser/lib/index.js +1 -1
- package/dist/esm/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js +1 -1
- package/dist/esm/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +1 -1
- package/dist/esm/node_modules/style-to-object/cjs/index.js +1 -1
- package/dist/esm/themes/GPTheme.js +132 -125
- package/dist/esm/themes/GPTheme.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,158 +2,165 @@ import { createTheme } from '@mui/material';
|
|
|
2
2
|
|
|
3
3
|
const GPTheme = createTheme({
|
|
4
4
|
palette: {
|
|
5
|
-
mode:
|
|
5
|
+
mode: "light",
|
|
6
6
|
primary: {
|
|
7
|
-
main:
|
|
8
|
-
light:
|
|
9
|
-
dark:
|
|
10
|
-
contrastText:
|
|
7
|
+
main: "#4871cf",
|
|
8
|
+
light: "#4871cf",
|
|
9
|
+
dark: "#4871cf",
|
|
10
|
+
contrastText: "#FFFFFF",
|
|
11
11
|
},
|
|
12
12
|
secondary: {
|
|
13
|
-
main:
|
|
14
|
-
light:
|
|
15
|
-
dark:
|
|
16
|
-
contrastText:
|
|
13
|
+
main: "#a4d6ff",
|
|
14
|
+
light: "#a4d6ff",
|
|
15
|
+
dark: "#a4d6ff",
|
|
16
|
+
contrastText: "#FFFFFF",
|
|
17
17
|
},
|
|
18
18
|
error: {
|
|
19
|
-
main:
|
|
20
|
-
light:
|
|
21
|
-
dark:
|
|
22
|
-
contrastText:
|
|
19
|
+
main: "#F56B6B",
|
|
20
|
+
light: "#F56B6B",
|
|
21
|
+
dark: "#F56B6B",
|
|
22
|
+
contrastText: "#FFFFFF",
|
|
23
23
|
},
|
|
24
24
|
warning: {
|
|
25
|
-
main:
|
|
26
|
-
light:
|
|
27
|
-
dark:
|
|
28
|
-
contrastText:
|
|
25
|
+
main: "#F5D76E",
|
|
26
|
+
light: "#F5D76E",
|
|
27
|
+
dark: "#F5D76E",
|
|
28
|
+
contrastText: "#FFFBFF",
|
|
29
29
|
},
|
|
30
30
|
info: {
|
|
31
|
-
main:
|
|
32
|
-
light:
|
|
33
|
-
dark:
|
|
34
|
-
contrastText:
|
|
31
|
+
main: "#F5A623",
|
|
32
|
+
light: "#F5A623",
|
|
33
|
+
dark: "#F5A623",
|
|
34
|
+
contrastText: "#FFFFFF",
|
|
35
35
|
},
|
|
36
36
|
success: {
|
|
37
|
-
main:
|
|
38
|
-
light:
|
|
39
|
-
dark:
|
|
40
|
-
contrastText:
|
|
37
|
+
main: "#A3D977",
|
|
38
|
+
light: "#A3D977",
|
|
39
|
+
dark: "#A3D977",
|
|
40
|
+
contrastText: "#FFFFFF",
|
|
41
41
|
},
|
|
42
42
|
background: {
|
|
43
|
-
default:
|
|
44
|
-
paper:
|
|
43
|
+
default: "#FDFCEE",
|
|
44
|
+
paper: "#FEFDF7",
|
|
45
45
|
},
|
|
46
46
|
text: {
|
|
47
|
-
primary:
|
|
48
|
-
secondary:
|
|
49
|
-
disabled:
|
|
47
|
+
primary: "#4D3019",
|
|
48
|
+
secondary: "#826E5C",
|
|
49
|
+
disabled: "#93908F",
|
|
50
50
|
},
|
|
51
|
-
divider:
|
|
51
|
+
divider: "#C6C7C0",
|
|
52
52
|
accent: {
|
|
53
|
-
main:
|
|
53
|
+
main: "#FF9ecb",
|
|
54
54
|
},
|
|
55
55
|
dark: {
|
|
56
|
-
main:
|
|
56
|
+
main: "#4D3019",
|
|
57
57
|
},
|
|
58
58
|
light: {
|
|
59
|
-
main:
|
|
59
|
+
main: "#FEFDF7",
|
|
60
60
|
},
|
|
61
61
|
markedRead: {
|
|
62
|
-
main:
|
|
62
|
+
main: "#A3D977",
|
|
63
63
|
},
|
|
64
64
|
custom: {
|
|
65
|
-
iconColor:
|
|
66
|
-
primaryButtonTextColor:
|
|
67
|
-
readByBackgroundColor:
|
|
68
|
-
stepIndicatorTextColor:
|
|
69
|
-
markAsReadBackgroundColor:
|
|
70
|
-
markAsReadBorderColor:
|
|
71
|
-
tabBackgroundColor:
|
|
72
|
-
statusBarBackgroundColor:
|
|
65
|
+
iconColor: "#4871cf",
|
|
66
|
+
primaryButtonTextColor: "#FFFFFF",
|
|
67
|
+
readByBackgroundColor: "#4871cf1a",
|
|
68
|
+
stepIndicatorTextColor: "#FFFFFF",
|
|
69
|
+
markAsReadBackgroundColor: "#4871cf1a",
|
|
70
|
+
markAsReadBorderColor: "#4871cf",
|
|
71
|
+
tabBackgroundColor: "#a4d6ff1e",
|
|
72
|
+
statusBarBackgroundColor: "#a4d6ff",
|
|
73
73
|
},
|
|
74
74
|
},
|
|
75
75
|
typography: {
|
|
76
|
-
fontFamily: [
|
|
76
|
+
fontFamily: [
|
|
77
|
+
"Inter",
|
|
78
|
+
"-apple-system",
|
|
79
|
+
"BlinkMacSystemFont",
|
|
80
|
+
"Segoe UI",
|
|
81
|
+
"Roboto",
|
|
82
|
+
"sans-serif",
|
|
83
|
+
].join(","),
|
|
77
84
|
h1: {
|
|
78
|
-
color:
|
|
85
|
+
color: "#4D3019",
|
|
79
86
|
fontWeight: 700,
|
|
80
|
-
fontSize:
|
|
87
|
+
fontSize: "2.5rem",
|
|
81
88
|
lineHeight: 1.2,
|
|
82
89
|
},
|
|
83
90
|
h2: {
|
|
84
|
-
color:
|
|
91
|
+
color: "#4D3019",
|
|
85
92
|
fontWeight: 700,
|
|
86
|
-
fontSize:
|
|
93
|
+
fontSize: "2rem",
|
|
87
94
|
lineHeight: 1.3,
|
|
88
95
|
},
|
|
89
96
|
h3: {
|
|
90
|
-
color:
|
|
97
|
+
color: "#4D3019",
|
|
91
98
|
fontWeight: 600,
|
|
92
|
-
fontSize:
|
|
99
|
+
fontSize: "1.75rem",
|
|
93
100
|
lineHeight: 1.3,
|
|
94
101
|
},
|
|
95
102
|
h4: {
|
|
96
|
-
color:
|
|
103
|
+
color: "#4D3019",
|
|
97
104
|
fontWeight: 600,
|
|
98
|
-
fontSize:
|
|
105
|
+
fontSize: "1.5rem",
|
|
99
106
|
lineHeight: 1.4,
|
|
100
107
|
},
|
|
101
108
|
h5: {
|
|
102
|
-
color:
|
|
109
|
+
color: "#4D3019",
|
|
103
110
|
fontWeight: 600,
|
|
104
|
-
fontSize:
|
|
111
|
+
fontSize: "1.25rem",
|
|
105
112
|
lineHeight: 1.4,
|
|
106
113
|
},
|
|
107
114
|
h6: {
|
|
108
|
-
color:
|
|
115
|
+
color: "#4D3019",
|
|
109
116
|
fontWeight: 600,
|
|
110
|
-
fontSize:
|
|
117
|
+
fontSize: "1rem",
|
|
111
118
|
lineHeight: 1.4,
|
|
112
119
|
},
|
|
113
120
|
body1: {
|
|
114
|
-
color:
|
|
121
|
+
color: "#4D3019",
|
|
115
122
|
fontWeight: 400,
|
|
116
|
-
fontSize:
|
|
123
|
+
fontSize: "1rem",
|
|
117
124
|
lineHeight: 1.5,
|
|
118
125
|
},
|
|
119
126
|
body2: {
|
|
120
|
-
color:
|
|
127
|
+
color: "#826E5C",
|
|
121
128
|
fontWeight: 400,
|
|
122
|
-
fontSize:
|
|
129
|
+
fontSize: "0.875rem",
|
|
123
130
|
lineHeight: 1.5,
|
|
124
131
|
},
|
|
125
132
|
subtitle1: {
|
|
126
|
-
color:
|
|
133
|
+
color: "#4D3019",
|
|
127
134
|
fontWeight: 500,
|
|
128
|
-
fontSize:
|
|
135
|
+
fontSize: "1rem",
|
|
129
136
|
lineHeight: 1.5,
|
|
130
137
|
},
|
|
131
138
|
subtitle2: {
|
|
132
|
-
color:
|
|
139
|
+
color: "#826E5C",
|
|
133
140
|
fontWeight: 500,
|
|
134
|
-
fontSize:
|
|
141
|
+
fontSize: "0.875rem",
|
|
135
142
|
lineHeight: 1.5,
|
|
136
143
|
},
|
|
137
144
|
button: {
|
|
138
|
-
color:
|
|
145
|
+
color: "#4D3019",
|
|
139
146
|
fontWeight: 500,
|
|
140
|
-
fontSize:
|
|
147
|
+
fontSize: "0.875rem",
|
|
141
148
|
lineHeight: 1.75,
|
|
142
|
-
textTransform:
|
|
149
|
+
textTransform: "none",
|
|
143
150
|
},
|
|
144
151
|
caption: {
|
|
145
|
-
color:
|
|
152
|
+
color: "#826E5C",
|
|
146
153
|
fontWeight: 400,
|
|
147
|
-
fontSize:
|
|
154
|
+
fontSize: "0.75rem",
|
|
148
155
|
lineHeight: 1.66,
|
|
149
156
|
},
|
|
150
157
|
overline: {
|
|
151
|
-
color:
|
|
158
|
+
color: "#826E5C",
|
|
152
159
|
fontWeight: 500,
|
|
153
|
-
fontSize:
|
|
160
|
+
fontSize: "0.75rem",
|
|
154
161
|
lineHeight: 2.66,
|
|
155
|
-
textTransform:
|
|
156
|
-
letterSpacing:
|
|
162
|
+
textTransform: "uppercase",
|
|
163
|
+
letterSpacing: "0.08em",
|
|
157
164
|
},
|
|
158
165
|
},
|
|
159
166
|
shape: {
|
|
@@ -172,89 +179,89 @@ const GPTheme = createTheme({
|
|
|
172
179
|
MuiLink: {
|
|
173
180
|
styleOverrides: {
|
|
174
181
|
root: {
|
|
175
|
-
color:
|
|
176
|
-
textDecorationColor:
|
|
177
|
-
|
|
178
|
-
color:
|
|
179
|
-
textDecorationColor:
|
|
182
|
+
color: "#4871cf",
|
|
183
|
+
textDecorationColor: "#4871cf",
|
|
184
|
+
"&:hover": {
|
|
185
|
+
color: "#4871cf",
|
|
186
|
+
textDecorationColor: "#4871cf",
|
|
180
187
|
},
|
|
181
|
-
|
|
182
|
-
color:
|
|
188
|
+
"&:active": {
|
|
189
|
+
color: "#FFEDD1",
|
|
190
|
+
},
|
|
191
|
+
"&:visited": {
|
|
192
|
+
color: "#2d4783",
|
|
183
193
|
},
|
|
184
|
-
'&:visited': {
|
|
185
|
-
color: '#2d4783',
|
|
186
|
-
}
|
|
187
194
|
},
|
|
188
195
|
underlineAlways: {
|
|
189
|
-
color:
|
|
190
|
-
textDecorationColor:
|
|
191
|
-
}
|
|
196
|
+
color: "#4871cf",
|
|
197
|
+
textDecorationColor: "#4871cf",
|
|
198
|
+
},
|
|
192
199
|
},
|
|
193
200
|
},
|
|
194
201
|
MuiTypography: {
|
|
195
202
|
defaultProps: {
|
|
196
203
|
variantMapping: {
|
|
197
|
-
h1:
|
|
198
|
-
h2:
|
|
199
|
-
h3:
|
|
200
|
-
h4:
|
|
201
|
-
h5:
|
|
202
|
-
h6:
|
|
203
|
-
subtitle1:
|
|
204
|
-
subtitle2:
|
|
205
|
-
body1:
|
|
206
|
-
body2:
|
|
204
|
+
h1: "h1",
|
|
205
|
+
h2: "h2",
|
|
206
|
+
h3: "h3",
|
|
207
|
+
h4: "h4",
|
|
208
|
+
h5: "h5",
|
|
209
|
+
h6: "h6",
|
|
210
|
+
subtitle1: "p",
|
|
211
|
+
subtitle2: "p",
|
|
212
|
+
body1: "p",
|
|
213
|
+
body2: "p",
|
|
207
214
|
},
|
|
208
215
|
},
|
|
209
216
|
},
|
|
210
217
|
MuiCssBaseline: {
|
|
211
218
|
styleOverrides: {
|
|
212
219
|
body: {
|
|
213
|
-
WebkitFontSmoothing:
|
|
214
|
-
MozOsxFontSmoothing:
|
|
215
|
-
backgroundColor:
|
|
216
|
-
color:
|
|
220
|
+
WebkitFontSmoothing: "antialiased",
|
|
221
|
+
MozOsxFontSmoothing: "grayscale",
|
|
222
|
+
backgroundColor: "#FDFCEE",
|
|
223
|
+
color: "#4D3019",
|
|
217
224
|
},
|
|
218
225
|
'input[type="checkbox"], input[type="radio"]': {
|
|
219
|
-
accentColor:
|
|
226
|
+
accentColor: "#FF9ecb",
|
|
220
227
|
},
|
|
221
|
-
|
|
222
|
-
fontWeight:
|
|
228
|
+
"h1, h2, h3, h4, h5, h6": {
|
|
229
|
+
fontWeight: "inherit !important",
|
|
223
230
|
},
|
|
224
|
-
|
|
225
|
-
fontWeight:
|
|
231
|
+
".MuiTypography-h1": {
|
|
232
|
+
fontWeight: "700 !important",
|
|
226
233
|
},
|
|
227
|
-
|
|
228
|
-
fontWeight:
|
|
234
|
+
".MuiTypography-h2": {
|
|
235
|
+
fontWeight: "700 !important",
|
|
229
236
|
},
|
|
230
|
-
|
|
231
|
-
fontWeight:
|
|
237
|
+
".MuiTypography-h3": {
|
|
238
|
+
fontWeight: "600 !important",
|
|
232
239
|
},
|
|
233
|
-
|
|
234
|
-
fontWeight:
|
|
240
|
+
".MuiTypography-h4": {
|
|
241
|
+
fontWeight: "600 !important",
|
|
235
242
|
},
|
|
236
|
-
|
|
237
|
-
fontWeight:
|
|
243
|
+
".MuiTypography-h5": {
|
|
244
|
+
fontWeight: "600 !important",
|
|
238
245
|
},
|
|
239
|
-
|
|
240
|
-
fontWeight:
|
|
246
|
+
".MuiTypography-h6": {
|
|
247
|
+
fontWeight: "600 !important",
|
|
241
248
|
},
|
|
242
|
-
|
|
243
|
-
color:
|
|
244
|
-
|
|
245
|
-
color:
|
|
249
|
+
"a, a.MuiLink-root": {
|
|
250
|
+
color: "#4871cf !important",
|
|
251
|
+
"&:hover": {
|
|
252
|
+
color: "#4871cf !important",
|
|
253
|
+
},
|
|
254
|
+
"&:visited": {
|
|
255
|
+
color: "#2d4783 !important",
|
|
246
256
|
},
|
|
247
|
-
'&:visited': {
|
|
248
|
-
color: '#2d4783 !important',
|
|
249
|
-
}
|
|
250
257
|
},
|
|
251
258
|
},
|
|
252
259
|
},
|
|
253
260
|
},
|
|
254
|
-
appName:
|
|
261
|
+
appName: "GPDocs",
|
|
255
262
|
contact: {
|
|
256
|
-
email:
|
|
257
|
-
}
|
|
263
|
+
email: "team@gpdocs.co.nz",
|
|
264
|
+
},
|
|
258
265
|
});
|
|
259
266
|
|
|
260
267
|
export { GPTheme as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GPTheme.js","sources":["../../../../src/themes/GPTheme.tsx"],"sourcesContent":["import { createTheme } from \"@mui/material\";\r\n\r\nconst GPTheme = createTheme({\r\n palette: {\r\n mode: 'light',\r\n primary: {\r\n main: '#4871cf',\r\n light: '#4871cf',\r\n dark: '#4871cf',\r\n contrastText: '#FFFFFF',\r\n },\r\n secondary: {\r\n main: '#a4d6ff',\r\n light: '#a4d6ff',\r\n dark: '#a4d6ff',\r\n contrastText: '#FFFFFF',\r\n },\r\n error: {\r\n main: '#F56B6B',\r\n light: '#F56B6B',\r\n dark: '#F56B6B',\r\n contrastText: '#FFFFFF',\r\n },\r\n warning: {\r\n main: '#F5D76E',\r\n light: '#F5D76E',\r\n dark: '#F5D76E',\r\n contrastText: '#FFFBFF',\r\n },\r\n info: {\r\n main: '#F5A623',\r\n light: '#F5A623',\r\n dark: '#F5A623',\r\n contrastText: '#FFFFFF',\r\n },\r\n success: {\r\n main: '#A3D977',\r\n light: '#A3D977',\r\n dark: '#A3D977',\r\n contrastText: '#FFFFFF',\r\n },\r\n background: {\r\n default: '#FDFCEE',\r\n paper: '#FEFDF7',\r\n },\r\n text: {\r\n primary: '#4D3019',\r\n secondary: '#826E5C',\r\n disabled: '#93908F',\r\n },\r\n divider: '#C6C7C0',\r\n accent: {\r\n main: '#FF9ecb',\r\n },\r\n dark: {\r\n main: '#4D3019',\r\n },\r\n light: {\r\n main: '#FEFDF7',\r\n },\r\n markedRead: {\r\n main: '#A3D977',\r\n },\r\n custom: {\r\n iconColor: '#4871cf',\r\n primaryButtonTextColor: '#FFFFFF',\r\n readByBackgroundColor: '#4871cf1a',\r\n stepIndicatorTextColor: '#FFFFFF',\r\n markAsReadBackgroundColor: '#4871cf1a',\r\n markAsReadBorderColor: '#4871cf',\r\n tabBackgroundColor: '#4871cf1a',\r\n statusBarBackgroundColor: '#a4d6ff',\r\n },\r\n },\r\n typography: {\r\n fontFamily: ['Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'].join(','),\r\n h1: {\r\n color: '#4D3019',\r\n fontWeight: 700,\r\n fontSize: '2.5rem',\r\n lineHeight: 1.2,\r\n },\r\n h2: {\r\n color: '#4D3019',\r\n fontWeight: 700,\r\n fontSize: '2rem',\r\n lineHeight: 1.3,\r\n },\r\n h3: {\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '1.75rem',\r\n lineHeight: 1.3,\r\n },\r\n h4: {\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '1.5rem',\r\n lineHeight: 1.4,\r\n },\r\n h5: {\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '1.25rem',\r\n lineHeight: 1.4,\r\n },\r\n h6: {\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '1rem',\r\n lineHeight: 1.4,\r\n },\r\n body1: {\r\n color: '#4D3019',\r\n fontWeight: 400,\r\n fontSize: '1rem',\r\n lineHeight: 1.5,\r\n },\r\n body2: {\r\n color: '#826E5C',\r\n fontWeight: 400,\r\n fontSize: '0.875rem',\r\n lineHeight: 1.5,\r\n },\r\n subtitle1: {\r\n color: '#4D3019',\r\n fontWeight: 500,\r\n fontSize: '1rem',\r\n lineHeight: 1.5,\r\n },\r\n subtitle2: {\r\n color: '#826E5C',\r\n fontWeight: 500,\r\n fontSize: '0.875rem',\r\n lineHeight: 1.5,\r\n },\r\n button: {\r\n color: '#4D3019',\r\n fontWeight: 500,\r\n fontSize: '0.875rem',\r\n lineHeight: 1.75,\r\n textTransform: 'none',\r\n },\r\n caption: {\r\n color: '#826E5C',\r\n fontWeight: 400,\r\n fontSize: '0.75rem',\r\n lineHeight: 1.66,\r\n },\r\n overline: {\r\n color: '#826E5C',\r\n fontWeight: 500,\r\n fontSize: '0.75rem',\r\n lineHeight: 2.66,\r\n textTransform: 'uppercase',\r\n letterSpacing: '0.08em',\r\n },\r\n },\r\n shape: {\r\n borderRadius: 4,\r\n },\r\n breakpoints: {\r\n values: {\r\n xs: 320,\r\n sm: 640,\r\n md: 768,\r\n lg: 1024,\r\n xl: 1280,\r\n },\r\n },\r\n components: {\r\n MuiLink: {\r\n styleOverrides: {\r\n root: {\r\n color: '#4871cf',\r\n textDecorationColor: '#4871cf',\r\n '&:hover': {\r\n color: '#4871cf',\r\n textDecorationColor: '#4871cf',\r\n },\r\n '&:active': {\r\n color: '#FFEDD1',\r\n },\r\n '&:visited': {\r\n color: '#2d4783',\r\n }\r\n },\r\n underlineAlways: {\r\n color: '#4871cf',\r\n textDecorationColor: '#4871cf',\r\n }\r\n },\r\n },\r\n MuiTypography: {\r\n defaultProps: {\r\n variantMapping: {\r\n h1: 'h1',\r\n h2: 'h2',\r\n h3: 'h3',\r\n h4: 'h4',\r\n h5: 'h5',\r\n h6: 'h6',\r\n subtitle1: 'p',\r\n subtitle2: 'p',\r\n body1: 'p',\r\n body2: 'p',\r\n },\r\n },\r\n },\r\n MuiCssBaseline: {\r\n styleOverrides: {\r\n body: {\r\n WebkitFontSmoothing: 'antialiased',\r\n MozOsxFontSmoothing: 'grayscale',\r\n backgroundColor: '#FDFCEE',\r\n color: '#4D3019',\r\n },\r\n 'input[type=\"checkbox\"], input[type=\"radio\"]': {\r\n accentColor: '#FF9ecb',\r\n },\r\n 'h1, h2, h3, h4, h5, h6': {\r\n fontWeight: 'inherit !important',\r\n },\r\n '.MuiTypography-h1': {\r\n fontWeight: '700 !important',\r\n },\r\n '.MuiTypography-h2': {\r\n fontWeight: '700 !important',\r\n },\r\n '.MuiTypography-h3': {\r\n fontWeight: '600 !important',\r\n },\r\n '.MuiTypography-h4': {\r\n fontWeight: '600 !important',\r\n },\r\n '.MuiTypography-h5': {\r\n fontWeight: '600 !important',\r\n },\r\n '.MuiTypography-h6': {\r\n fontWeight: '600 !important',\r\n },\r\n 'a, a.MuiLink-root': {\r\n color: '#4871cf !important',\r\n '&:hover': {\r\n color: '#4871cf !important',\r\n },\r\n '&:visited': {\r\n color: '#2d4783 !important',\r\n }\r\n },\r\n },\r\n },\r\n },\r\n appName: 'GPDocs',\r\n contact: {\r\n email: 'team@gpdocs.co.nz'\r\n }\r\n});\r\n\r\nexport default GPTheme"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"GPTheme.js","sources":["../../../../src/themes/GPTheme.tsx"],"sourcesContent":["import { createTheme } from \"@mui/material\";\r\n\r\nconst GPTheme = createTheme({\r\n palette: {\r\n mode: \"light\",\r\n primary: {\r\n main: \"#4871cf\",\r\n light: \"#4871cf\",\r\n dark: \"#4871cf\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n secondary: {\r\n main: \"#a4d6ff\",\r\n light: \"#a4d6ff\",\r\n dark: \"#a4d6ff\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n error: {\r\n main: \"#F56B6B\",\r\n light: \"#F56B6B\",\r\n dark: \"#F56B6B\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n warning: {\r\n main: \"#F5D76E\",\r\n light: \"#F5D76E\",\r\n dark: \"#F5D76E\",\r\n contrastText: \"#FFFBFF\",\r\n },\r\n info: {\r\n main: \"#F5A623\",\r\n light: \"#F5A623\",\r\n dark: \"#F5A623\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n success: {\r\n main: \"#A3D977\",\r\n light: \"#A3D977\",\r\n dark: \"#A3D977\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n background: {\r\n default: \"#FDFCEE\",\r\n paper: \"#FEFDF7\",\r\n },\r\n text: {\r\n primary: \"#4D3019\",\r\n secondary: \"#826E5C\",\r\n disabled: \"#93908F\",\r\n },\r\n divider: \"#C6C7C0\",\r\n accent: {\r\n main: \"#FF9ecb\",\r\n },\r\n dark: {\r\n main: \"#4D3019\",\r\n },\r\n light: {\r\n main: \"#FEFDF7\",\r\n },\r\n markedRead: {\r\n main: \"#A3D977\",\r\n },\r\n custom: {\r\n iconColor: \"#4871cf\",\r\n primaryButtonTextColor: \"#FFFFFF\",\r\n readByBackgroundColor: \"#4871cf1a\",\r\n stepIndicatorTextColor: \"#FFFFFF\",\r\n markAsReadBackgroundColor: \"#4871cf1a\",\r\n markAsReadBorderColor: \"#4871cf\",\r\n tabBackgroundColor: \"#a4d6ff1e\",\r\n statusBarBackgroundColor: \"#a4d6ff\",\r\n },\r\n },\r\n typography: {\r\n fontFamily: [\r\n \"Inter\",\r\n \"-apple-system\",\r\n \"BlinkMacSystemFont\",\r\n \"Segoe UI\",\r\n \"Roboto\",\r\n \"sans-serif\",\r\n ].join(\",\"),\r\n h1: {\r\n color: \"#4D3019\",\r\n fontWeight: 700,\r\n fontSize: \"2.5rem\",\r\n lineHeight: 1.2,\r\n },\r\n h2: {\r\n color: \"#4D3019\",\r\n fontWeight: 700,\r\n fontSize: \"2rem\",\r\n lineHeight: 1.3,\r\n },\r\n h3: {\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"1.75rem\",\r\n lineHeight: 1.3,\r\n },\r\n h4: {\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"1.5rem\",\r\n lineHeight: 1.4,\r\n },\r\n h5: {\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"1.25rem\",\r\n lineHeight: 1.4,\r\n },\r\n h6: {\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"1rem\",\r\n lineHeight: 1.4,\r\n },\r\n body1: {\r\n color: \"#4D3019\",\r\n fontWeight: 400,\r\n fontSize: \"1rem\",\r\n lineHeight: 1.5,\r\n },\r\n body2: {\r\n color: \"#826E5C\",\r\n fontWeight: 400,\r\n fontSize: \"0.875rem\",\r\n lineHeight: 1.5,\r\n },\r\n subtitle1: {\r\n color: \"#4D3019\",\r\n fontWeight: 500,\r\n fontSize: \"1rem\",\r\n lineHeight: 1.5,\r\n },\r\n subtitle2: {\r\n color: \"#826E5C\",\r\n fontWeight: 500,\r\n fontSize: \"0.875rem\",\r\n lineHeight: 1.5,\r\n },\r\n button: {\r\n color: \"#4D3019\",\r\n fontWeight: 500,\r\n fontSize: \"0.875rem\",\r\n lineHeight: 1.75,\r\n textTransform: \"none\",\r\n },\r\n caption: {\r\n color: \"#826E5C\",\r\n fontWeight: 400,\r\n fontSize: \"0.75rem\",\r\n lineHeight: 1.66,\r\n },\r\n overline: {\r\n color: \"#826E5C\",\r\n fontWeight: 500,\r\n fontSize: \"0.75rem\",\r\n lineHeight: 2.66,\r\n textTransform: \"uppercase\",\r\n letterSpacing: \"0.08em\",\r\n },\r\n },\r\n shape: {\r\n borderRadius: 4,\r\n },\r\n breakpoints: {\r\n values: {\r\n xs: 320,\r\n sm: 640,\r\n md: 768,\r\n lg: 1024,\r\n xl: 1280,\r\n },\r\n },\r\n components: {\r\n MuiLink: {\r\n styleOverrides: {\r\n root: {\r\n color: \"#4871cf\",\r\n textDecorationColor: \"#4871cf\",\r\n \"&:hover\": {\r\n color: \"#4871cf\",\r\n textDecorationColor: \"#4871cf\",\r\n },\r\n \"&:active\": {\r\n color: \"#FFEDD1\",\r\n },\r\n \"&:visited\": {\r\n color: \"#2d4783\",\r\n },\r\n },\r\n underlineAlways: {\r\n color: \"#4871cf\",\r\n textDecorationColor: \"#4871cf\",\r\n },\r\n },\r\n },\r\n MuiTypography: {\r\n defaultProps: {\r\n variantMapping: {\r\n h1: \"h1\",\r\n h2: \"h2\",\r\n h3: \"h3\",\r\n h4: \"h4\",\r\n h5: \"h5\",\r\n h6: \"h6\",\r\n subtitle1: \"p\",\r\n subtitle2: \"p\",\r\n body1: \"p\",\r\n body2: \"p\",\r\n },\r\n },\r\n },\r\n MuiCssBaseline: {\r\n styleOverrides: {\r\n body: {\r\n WebkitFontSmoothing: \"antialiased\",\r\n MozOsxFontSmoothing: \"grayscale\",\r\n backgroundColor: \"#FDFCEE\",\r\n color: \"#4D3019\",\r\n },\r\n 'input[type=\"checkbox\"], input[type=\"radio\"]': {\r\n accentColor: \"#FF9ecb\",\r\n },\r\n \"h1, h2, h3, h4, h5, h6\": {\r\n fontWeight: \"inherit !important\",\r\n },\r\n \".MuiTypography-h1\": {\r\n fontWeight: \"700 !important\",\r\n },\r\n \".MuiTypography-h2\": {\r\n fontWeight: \"700 !important\",\r\n },\r\n \".MuiTypography-h3\": {\r\n fontWeight: \"600 !important\",\r\n },\r\n \".MuiTypography-h4\": {\r\n fontWeight: \"600 !important\",\r\n },\r\n \".MuiTypography-h5\": {\r\n fontWeight: \"600 !important\",\r\n },\r\n \".MuiTypography-h6\": {\r\n fontWeight: \"600 !important\",\r\n },\r\n \"a, a.MuiLink-root\": {\r\n color: \"#4871cf !important\",\r\n \"&:hover\": {\r\n color: \"#4871cf !important\",\r\n },\r\n \"&:visited\": {\r\n color: \"#2d4783 !important\",\r\n },\r\n },\r\n },\r\n },\r\n },\r\n appName: \"GPDocs\",\r\n contact: {\r\n email: \"team@gpdocs.co.nz\",\r\n },\r\n});\r\n\r\nexport default GPTheme;\r\n"],"names":[],"mappings":"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"}
|