@react-pakistan/util-functions 1.17.0 → 1.18.3
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/hooks/index.d.ts +2 -0
- package/hooks/index.js +2 -0
- package/hooks/use-ip-geo-location.d.ts +5 -0
- package/hooks/use-ip-geo-location.js +44 -0
- package/hooks/use-is-mobile.d.ts +1 -0
- package/hooks/use-is-mobile.js +22 -0
- package/package.json +20 -20
- package/storybook/react-emoji-story-template.js +3 -3
- package/storybook/react-icon-story-template.js +3 -3
- package/storybook/react-logo-story-template.js +3 -3
- package/storybook/theme.d.ts +8 -0
- package/storybook/theme.js +664 -0
package/hooks/index.d.ts
CHANGED
package/hooks/index.js
CHANGED
|
@@ -16,6 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./use-change"), exports);
|
|
18
18
|
__exportStar(require("./use-force-render"), exports);
|
|
19
|
+
__exportStar(require("./use-ip-geo-location"), exports);
|
|
20
|
+
__exportStar(require("./use-is-mobile"), exports);
|
|
19
21
|
__exportStar(require("./use-selector"), exports);
|
|
20
22
|
__exportStar(require("./use-sticky"), exports);
|
|
21
23
|
__exportStar(require("./use-toggle-state"), exports);
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.useIPGeoLocation = void 0;
|
|
13
|
+
const react_1 = require("react");
|
|
14
|
+
const useIPGeoLocation = () => {
|
|
15
|
+
const [country, setCountry] = (0, react_1.useState)(null);
|
|
16
|
+
const [error, setError] = (0, react_1.useState)(null);
|
|
17
|
+
const [isLoading, setIsLoading] = (0, react_1.useState)(true);
|
|
18
|
+
const apiEndpoint = 'https://api.country.is';
|
|
19
|
+
(0, react_1.useEffect)(() => {
|
|
20
|
+
if (country)
|
|
21
|
+
return;
|
|
22
|
+
function fetchAPI() {
|
|
23
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
24
|
+
setIsLoading(true);
|
|
25
|
+
yield fetch(apiEndpoint)
|
|
26
|
+
.then((res) => {
|
|
27
|
+
if (!res.ok) {
|
|
28
|
+
throw Error(res.statusText);
|
|
29
|
+
}
|
|
30
|
+
return res.json();
|
|
31
|
+
})
|
|
32
|
+
.then((res) => {
|
|
33
|
+
if (res && res.country)
|
|
34
|
+
setCountry(res.country);
|
|
35
|
+
})
|
|
36
|
+
.catch((err) => setError(err))
|
|
37
|
+
.finally(() => setIsLoading(false));
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
fetchAPI();
|
|
41
|
+
}, [country]);
|
|
42
|
+
return { country, error, isLoading };
|
|
43
|
+
};
|
|
44
|
+
exports.useIPGeoLocation = useIPGeoLocation;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useIsMobile: () => boolean;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useIsMobile = void 0;
|
|
4
|
+
const react_1 = require("react");
|
|
5
|
+
const useIsMobile = () => {
|
|
6
|
+
const [isMobile, setIsMobile] = (0, react_1.useState)(false);
|
|
7
|
+
const handleResize = () => {
|
|
8
|
+
if (window.innerWidth < 767) {
|
|
9
|
+
setIsMobile(true);
|
|
10
|
+
}
|
|
11
|
+
else {
|
|
12
|
+
setIsMobile(false);
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
(0, react_1.useEffect)(() => {
|
|
16
|
+
window.addEventListener('resize', handleResize);
|
|
17
|
+
handleResize();
|
|
18
|
+
return () => window.removeEventListener('resize', handleResize);
|
|
19
|
+
}, []);
|
|
20
|
+
return isMobile;
|
|
21
|
+
};
|
|
22
|
+
exports.useIsMobile = useIsMobile;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-pakistan/util-functions",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.3",
|
|
4
4
|
"description": "A library of all util functions",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -39,33 +39,33 @@
|
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://github.com/react-pakistan/util-functions#readme",
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@babel/core": "^7.
|
|
43
|
-
"@babel/eslint-parser": "^7.
|
|
44
|
-
"@babel/preset-typescript": "^7.
|
|
42
|
+
"@babel/core": "^7.23.5",
|
|
43
|
+
"@babel/eslint-parser": "^7.23.3",
|
|
44
|
+
"@babel/preset-typescript": "^7.23.3",
|
|
45
45
|
"@microsoft/tsdoc": "^0.14.2",
|
|
46
|
-
"@react-pakistan/eslint-config-shared": "^1.
|
|
47
|
-
"@types/jest": "^29.5.
|
|
48
|
-
"@types/lodash.curry": "^4.1.
|
|
49
|
-
"@types/node": "^20.
|
|
50
|
-
"@types/react-redux": "^7.1.
|
|
51
|
-
"@types/styled-components": "^5.1.
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
53
|
-
"@typescript-eslint/parser": "^6.
|
|
46
|
+
"@react-pakistan/eslint-config-shared": "^1.10.1",
|
|
47
|
+
"@types/jest": "^29.5.10",
|
|
48
|
+
"@types/lodash.curry": "^4.1.9",
|
|
49
|
+
"@types/node": "^20.10.3",
|
|
50
|
+
"@types/react-redux": "^7.1.31",
|
|
51
|
+
"@types/styled-components": "^5.1.32",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
53
|
+
"@typescript-eslint/parser": "^6.13.1",
|
|
54
54
|
"date-fns": "^2.30.0",
|
|
55
55
|
"date-fns-tz": "^2.0.0",
|
|
56
|
-
"eslint": "^8.
|
|
57
|
-
"eslint-plugin-import": "^2.
|
|
56
|
+
"eslint": "^8.55.0",
|
|
57
|
+
"eslint-plugin-import": "^2.29.0",
|
|
58
58
|
"husky": "^8.0.3",
|
|
59
|
-
"jest": "^29.
|
|
60
|
-
"lint-staged": "^
|
|
59
|
+
"jest": "^29.7.0",
|
|
60
|
+
"lint-staged": "^15.2.0",
|
|
61
61
|
"lodash.curry": "^4.1.1",
|
|
62
62
|
"lodash.isequal": "^4.5.0",
|
|
63
63
|
"react": "^18.2.0",
|
|
64
|
-
"react-redux": "^
|
|
65
|
-
"rimraf": "^5.0.
|
|
64
|
+
"react-redux": "^9.0.0",
|
|
65
|
+
"rimraf": "^5.0.5",
|
|
66
66
|
"ts-jest": "^29.1.1",
|
|
67
|
-
"ts-loader": "^9.
|
|
68
|
-
"typescript": "^5.
|
|
67
|
+
"ts-loader": "^9.5.1",
|
|
68
|
+
"typescript": "^5.3.2"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"@types/react-redux": "^7.1.25",
|
|
@@ -25,8 +25,8 @@ import { EMOJI_LIST } from './${emojiListDirName}';
|
|
|
25
25
|
const emojiStyle = { width: '7rem', height: '7rem' };
|
|
26
26
|
|
|
27
27
|
const renderItem = (
|
|
28
|
-
item
|
|
29
|
-
)
|
|
28
|
+
item: { emoji: React.FC<React.SVGProps<SVGSVGElement>>, name: string }
|
|
29
|
+
): ReactElement => {
|
|
30
30
|
const Emoji = item.emoji;
|
|
31
31
|
return (
|
|
32
32
|
<EmojiItem
|
|
@@ -42,7 +42,7 @@ const renderItem = (
|
|
|
42
42
|
|
|
43
43
|
const emojis = EMOJI_LIST.map(renderItem);
|
|
44
44
|
|
|
45
|
-
export const ${subCategory} = ()
|
|
45
|
+
export const ${subCategory} = (): ReactElement => (
|
|
46
46
|
<StyledStory>
|
|
47
47
|
<EmojiWrapper>
|
|
48
48
|
{emojis}
|
|
@@ -24,8 +24,8 @@ import { ICON_LIST } from './${iconListDirName}';
|
|
|
24
24
|
const iconStyle = { width: '7rem', height: '7rem' };
|
|
25
25
|
|
|
26
26
|
const renderItem = (
|
|
27
|
-
item
|
|
28
|
-
)
|
|
27
|
+
item: { icon: React.FC<React.SVGProps<SVGSVGElement>>, name: string }
|
|
28
|
+
): ReactElement => {
|
|
29
29
|
const Icon = item.icon;
|
|
30
30
|
return (
|
|
31
31
|
<IconItem
|
|
@@ -41,7 +41,7 @@ const renderItem = (
|
|
|
41
41
|
|
|
42
42
|
const icons = ICON_LIST.map(renderItem);
|
|
43
43
|
|
|
44
|
-
export const ${category} = ()
|
|
44
|
+
export const ${category} = (): ReactElement => (
|
|
45
45
|
<StyledStory>
|
|
46
46
|
<IconWrapper>
|
|
47
47
|
{icons}
|
|
@@ -24,8 +24,8 @@ import { LOGO_LIST } from './${logoListDirName}';
|
|
|
24
24
|
const logoStyle = { width: '7rem', height: '7rem' };
|
|
25
25
|
|
|
26
26
|
const renderItem = (
|
|
27
|
-
item
|
|
28
|
-
)
|
|
27
|
+
item: { logo: React.FC<React.SVGProps<SVGSVGElement>>, name: string }
|
|
28
|
+
): ReactElement => {
|
|
29
29
|
const Logo = item.logo;
|
|
30
30
|
return (
|
|
31
31
|
<LogoItem
|
|
@@ -41,7 +41,7 @@ const renderItem = (
|
|
|
41
41
|
|
|
42
42
|
const logos = LOGO_LIST.map(renderItem);
|
|
43
43
|
|
|
44
|
-
export const ${category} = ()
|
|
44
|
+
export const ${category} = (): ReactElement => (
|
|
45
45
|
<StyledStory>
|
|
46
46
|
<LogoWrapper>
|
|
47
47
|
{logos}
|
package/storybook/theme.d.ts
CHANGED
|
@@ -17,6 +17,12 @@ export interface IColors {
|
|
|
17
17
|
export interface IMisc {
|
|
18
18
|
[key: string]: string | number | boolean;
|
|
19
19
|
}
|
|
20
|
+
export interface ILight {
|
|
21
|
+
[key: string]: string;
|
|
22
|
+
}
|
|
23
|
+
export interface IDark {
|
|
24
|
+
[key: string]: string;
|
|
25
|
+
}
|
|
20
26
|
export interface IHeadingStyle {
|
|
21
27
|
fontFamily: string;
|
|
22
28
|
fontSize: string;
|
|
@@ -80,6 +86,8 @@ export interface ITheme {
|
|
|
80
86
|
shadow: IShadow;
|
|
81
87
|
spacing: ISpacing;
|
|
82
88
|
typography: ITypography;
|
|
89
|
+
light: ILight;
|
|
90
|
+
dark: IDark;
|
|
83
91
|
zIndex: IZindex;
|
|
84
92
|
}
|
|
85
93
|
export declare const theme: ITheme;
|
package/storybook/theme.js
CHANGED
|
@@ -129,6 +129,418 @@ exports.theme = {
|
|
|
129
129
|
desktop: 'only screen and (min-width: 2560px)',
|
|
130
130
|
},
|
|
131
131
|
colors: {
|
|
132
|
+
absoluteWhite: '#FFFFFF',
|
|
133
|
+
absoluteBlack: '#000000',
|
|
134
|
+
ash50: '#FBFBFD',
|
|
135
|
+
ash100: '#EFF0F3',
|
|
136
|
+
ash200: '#DBDBDE',
|
|
137
|
+
ash300: '#BFC0C2',
|
|
138
|
+
ash400: '#A0A1A4',
|
|
139
|
+
ash500: '#828285',
|
|
140
|
+
ash600: '#656669',
|
|
141
|
+
ash700: '#434346',
|
|
142
|
+
ash800: '#2A2A2C',
|
|
143
|
+
ash900: '#1E1E21',
|
|
144
|
+
graphite50: '#FCFCFF',
|
|
145
|
+
graphite100: '#EEF1F6',
|
|
146
|
+
graphite200: '#DCDFE8',
|
|
147
|
+
graphite300: '#C0C3D0',
|
|
148
|
+
graphite400: '#9DA0B0',
|
|
149
|
+
graphite500: '#828593',
|
|
150
|
+
graphite600: '#636473',
|
|
151
|
+
graphite700: '#41414F',
|
|
152
|
+
graphite800: '#2D2D38',
|
|
153
|
+
graphite900: '#1D1E26',
|
|
154
|
+
slate50: '#F7F7F7',
|
|
155
|
+
slate100: '#EDEEF3',
|
|
156
|
+
slate200: '#E1E3EE',
|
|
157
|
+
slate300: '#CCD0DE',
|
|
158
|
+
slate400: '#A7ACC1',
|
|
159
|
+
slate500: '#6B6F8C',
|
|
160
|
+
slate600: '#4D5168',
|
|
161
|
+
slate700: '#4D5168',
|
|
162
|
+
slate800: '#2D2D38',
|
|
163
|
+
slate900: '#1E2028',
|
|
164
|
+
steel50: '#FAFBFF',
|
|
165
|
+
steel100: '#ECF1FC',
|
|
166
|
+
steel200: '#D5DEF2',
|
|
167
|
+
steel300: '#D5DEF2',
|
|
168
|
+
steel400: '#8696BF',
|
|
169
|
+
steel500: '#617098',
|
|
170
|
+
steel600: '#4A5879',
|
|
171
|
+
steel700: '#313C58',
|
|
172
|
+
steel800: '#202940',
|
|
173
|
+
steel900: '#12192E',
|
|
174
|
+
charcoal50: '#FBFBFE',
|
|
175
|
+
charcoal100: '#EEEFF9',
|
|
176
|
+
charcoal200: '#D0DBEB',
|
|
177
|
+
charcoal300: '#B6C3D9',
|
|
178
|
+
charcoal400: '#8E9FBA',
|
|
179
|
+
charcoal500: '#607390',
|
|
180
|
+
charcoal600: '#43546D',
|
|
181
|
+
charcoal700: '#314157',
|
|
182
|
+
charcoal800: '#314157',
|
|
183
|
+
charcoal900: '#181F29',
|
|
184
|
+
sage50: '#F9FCF7',
|
|
185
|
+
sage100: '#F9FCF7',
|
|
186
|
+
sage200: '#DAE5DC',
|
|
187
|
+
sage300: '#C1D0C7',
|
|
188
|
+
sage400: '#95A59C',
|
|
189
|
+
sage500: '#718279',
|
|
190
|
+
sage600: '#50645B',
|
|
191
|
+
sage700: '#50645B',
|
|
192
|
+
sage800: '#25392F',
|
|
193
|
+
sage900: '#16251C',
|
|
194
|
+
sand50: '#FFFCF9',
|
|
195
|
+
sand100: '#ECE5DE',
|
|
196
|
+
sand200: '#ECE5DE',
|
|
197
|
+
sand300: '#D7CEC5',
|
|
198
|
+
sand400: '#BDB5AB',
|
|
199
|
+
sand500: '#9E958B',
|
|
200
|
+
sand600: '#71685E',
|
|
201
|
+
sand700: '#4E4740',
|
|
202
|
+
sand800: '#3D362F',
|
|
203
|
+
sand900: '#24201B',
|
|
204
|
+
granite50: '#F9F8F9',
|
|
205
|
+
granite100: '#F1EDEF',
|
|
206
|
+
granite200: '#E9E1E4',
|
|
207
|
+
granite300: '#CEC2C7',
|
|
208
|
+
granite400: '#B2A4A9',
|
|
209
|
+
granite500: '#948489',
|
|
210
|
+
granite600: '#736267',
|
|
211
|
+
granite700: '#5A494F',
|
|
212
|
+
granite800: '#47383D',
|
|
213
|
+
granite900: '#47383D',
|
|
214
|
+
quartz50: '#FFF9FD',
|
|
215
|
+
quartz100: '#F1EDEF',
|
|
216
|
+
quartz200: '#E9E1E4',
|
|
217
|
+
quartz300: '#CEC2C7',
|
|
218
|
+
quartz400: '#B2A4A9',
|
|
219
|
+
quartz500: '#948489',
|
|
220
|
+
quartz600: '#736267',
|
|
221
|
+
quartz700: '#5A494F',
|
|
222
|
+
quartz800: '#5A494F',
|
|
223
|
+
quartz900: '#2B1F23',
|
|
224
|
+
obsidian50: '#FCF9FF',
|
|
225
|
+
obsidian100: '#F6F2FA',
|
|
226
|
+
obsidian200: '#E6E0ED',
|
|
227
|
+
obsidian300: '#D0C6DB',
|
|
228
|
+
obsidian400: '#B2A4C0',
|
|
229
|
+
obsidian500: '#8F809F',
|
|
230
|
+
obsidian600: '#746485',
|
|
231
|
+
obsidian700: '#584969',
|
|
232
|
+
obsidian800: '#3F334E',
|
|
233
|
+
obsidian900: '#1F1728',
|
|
234
|
+
coral50: '#FFF3F0',
|
|
235
|
+
coral100: '#FFE6E0',
|
|
236
|
+
coral200: '#F9D3CA',
|
|
237
|
+
coral300: '#F6BDAF',
|
|
238
|
+
coral400: '#F0AD9D',
|
|
239
|
+
coral500: '#E4907C',
|
|
240
|
+
coral600: '#C07462',
|
|
241
|
+
coral700: '#905749',
|
|
242
|
+
coral800: '#603A31',
|
|
243
|
+
coral900: '#301D18',
|
|
244
|
+
red50: '#FFF5F5',
|
|
245
|
+
red100: '#FFDEDE',
|
|
246
|
+
red200: '#FFC2C2',
|
|
247
|
+
red300: '#FFA3A3',
|
|
248
|
+
red400: '#FF6464',
|
|
249
|
+
red500: '#FF2828',
|
|
250
|
+
red600: '#D20909',
|
|
251
|
+
red700: '#940202',
|
|
252
|
+
red800: '#940202',
|
|
253
|
+
red900: '#3D0000',
|
|
254
|
+
scarlet50: '#FFF4F2',
|
|
255
|
+
scarlet100: '#FFDEDE',
|
|
256
|
+
scarlet200: '#FFC2C2',
|
|
257
|
+
scarlet300: '#FFA3A3',
|
|
258
|
+
scarlet400: '#FF725F',
|
|
259
|
+
scarlet500: '#FF371C',
|
|
260
|
+
scarlet600: '#D71A00',
|
|
261
|
+
scarlet700: '#BF1100',
|
|
262
|
+
scarlet800: '#600B00',
|
|
263
|
+
scarlet900: '#390700',
|
|
264
|
+
persimmon50: '#FFF5EF',
|
|
265
|
+
persimmon100: '#FFE1D0',
|
|
266
|
+
persimmon200: '#FFC8A9',
|
|
267
|
+
persimmon300: '#FFAD8A',
|
|
268
|
+
persimmon400: '#FF824D',
|
|
269
|
+
persimmon500: '#F8510A',
|
|
270
|
+
persimmon600: '#CD3E00',
|
|
271
|
+
persimmon700: '#872800',
|
|
272
|
+
persimmon800: '#872800',
|
|
273
|
+
persimmon900: '#872800',
|
|
274
|
+
orange50: '#FFF8F2',
|
|
275
|
+
orange100: '#FFEAD9',
|
|
276
|
+
orange200: '#FFD3AD',
|
|
277
|
+
orange300: '#FFBC84',
|
|
278
|
+
orange400: '#FF9F4F',
|
|
279
|
+
orange500: '#F97607',
|
|
280
|
+
orange600: '#D46100',
|
|
281
|
+
orange700: '#994000',
|
|
282
|
+
orange800: '#602200',
|
|
283
|
+
orange900: '#3E0F00',
|
|
284
|
+
carrot50: '#FFFBF5',
|
|
285
|
+
carrot100: '#FFEEDA',
|
|
286
|
+
carrot200: '#FFDAAF',
|
|
287
|
+
carrot300: '#FFC37D',
|
|
288
|
+
carrot400: '#FFAC4B',
|
|
289
|
+
carrot500: '#FFAC4B',
|
|
290
|
+
carrot600: '#D67300',
|
|
291
|
+
carrot700: '#985200',
|
|
292
|
+
carrot800: '#5E3200',
|
|
293
|
+
carrot900: '#3C2000',
|
|
294
|
+
honey50: '#FFFDEE',
|
|
295
|
+
honey100: '#FFF9CC',
|
|
296
|
+
honey200: '#FBEFA4',
|
|
297
|
+
honey300: '#FBEFA4',
|
|
298
|
+
honey400: '#F4C519',
|
|
299
|
+
honey500: '#EAAD00',
|
|
300
|
+
honey600: '#D1870A',
|
|
301
|
+
honey700: '#A15E00',
|
|
302
|
+
honey800: '#653A01',
|
|
303
|
+
honey900: '#271500',
|
|
304
|
+
gold50: '#FFFEF5',
|
|
305
|
+
gold100: '#FFF9D4',
|
|
306
|
+
gold200: '#FFF0A9',
|
|
307
|
+
gold300: '#FFE67E',
|
|
308
|
+
gold400: '#FFD950',
|
|
309
|
+
gold500: '#FFD950',
|
|
310
|
+
gold600: '#DBA91D',
|
|
311
|
+
gold700: '#AA7901',
|
|
312
|
+
gold800: '#6B4900',
|
|
313
|
+
gold900: '#352300',
|
|
314
|
+
lemon50: '#FFFEF4',
|
|
315
|
+
lemon100: '#FFFBD6',
|
|
316
|
+
lemon200: '#FFF0A9',
|
|
317
|
+
lemon300: '#FBED72',
|
|
318
|
+
lemon400: '#F5E232',
|
|
319
|
+
lemon500: '#EAD200',
|
|
320
|
+
lemon600: '#C5B100',
|
|
321
|
+
lemon700: '#928300',
|
|
322
|
+
lemon800: '#5B5200',
|
|
323
|
+
lemon900: '#322D00',
|
|
324
|
+
pear50: '#FFFFF4',
|
|
325
|
+
pear100: '#FEFFB9',
|
|
326
|
+
pear200: '#F4F67F',
|
|
327
|
+
pear300: '#ECEF52',
|
|
328
|
+
pear400: '#ECEF52',
|
|
329
|
+
pear500: '#CACE00',
|
|
330
|
+
pear600: '#A6A900',
|
|
331
|
+
pear700: '#777902',
|
|
332
|
+
pear800: '#4D4F00',
|
|
333
|
+
pear900: '#2A2C00',
|
|
334
|
+
avacado50: '#FCFFF3',
|
|
335
|
+
avacado100: '#F5FFCE',
|
|
336
|
+
avacado200: '#E6F9A1',
|
|
337
|
+
avacado300: '#D2EC6F',
|
|
338
|
+
avacado400: '#BEDB4A',
|
|
339
|
+
avacado500: '#A0C317',
|
|
340
|
+
avacado600: '#8CA710',
|
|
341
|
+
avacado700: '#657701',
|
|
342
|
+
avacado800: '#404E00',
|
|
343
|
+
avacado900: '#202F00',
|
|
344
|
+
grass50: '#FBFEF3',
|
|
345
|
+
grass100: '#ECFBCF',
|
|
346
|
+
grass200: '#D5F8A1',
|
|
347
|
+
grass300: '#B3EB70',
|
|
348
|
+
grass400: '#8FD84A',
|
|
349
|
+
grass500: '#60BF18',
|
|
350
|
+
grass600: '#48A411',
|
|
351
|
+
grass700: '#277A00',
|
|
352
|
+
grass800: '#154F00',
|
|
353
|
+
grass900: '#0B3300',
|
|
354
|
+
emerald50: '#F4FCF6',
|
|
355
|
+
emerald100: '#DDF2E1',
|
|
356
|
+
emerald200: '#B9E9C3',
|
|
357
|
+
emerald300: '#7ED890',
|
|
358
|
+
emerald400: '#41B057',
|
|
359
|
+
emerald500: '#0F860F',
|
|
360
|
+
emerald600: '#08711D',
|
|
361
|
+
emerald700: '#095A19',
|
|
362
|
+
emerald800: '#05320E',
|
|
363
|
+
emerald900: '#021105',
|
|
364
|
+
cucumber50: '#F4FFF5',
|
|
365
|
+
cucumber100: '#E0FFE1',
|
|
366
|
+
cucumber200: '#C1FFC4',
|
|
367
|
+
cucumber300: '#8EF492',
|
|
368
|
+
cucumber400: '#63E768',
|
|
369
|
+
cucumber500: '#2DC233',
|
|
370
|
+
cucumber600: '#16A825',
|
|
371
|
+
cucumber700: '#00760C',
|
|
372
|
+
cucumber800: '#005108',
|
|
373
|
+
cucumber900: '#003005',
|
|
374
|
+
mint50: '#F3FFF9',
|
|
375
|
+
mint100: '#DBFFED',
|
|
376
|
+
mint200: '#B1FFDA',
|
|
377
|
+
mint300: '#68FFB6',
|
|
378
|
+
mint400: '#37EB94',
|
|
379
|
+
mint500: '#03D670',
|
|
380
|
+
mint600: '#00AF5B',
|
|
381
|
+
mint700: '#007C40',
|
|
382
|
+
mint800: '#00512A',
|
|
383
|
+
mint900: '#002E17',
|
|
384
|
+
seafoam50: '#F3FFFB',
|
|
385
|
+
seafoam100: '#DAFFF1',
|
|
386
|
+
seafoam200: '#ADFFE2',
|
|
387
|
+
seafoam300: '#66FFC8',
|
|
388
|
+
seafoam400: '#46EDB1',
|
|
389
|
+
seafoam500: '#2FD79A',
|
|
390
|
+
seafoam600: '#1BB980',
|
|
391
|
+
seafoam700: '#007C40',
|
|
392
|
+
seafoam800: '#005738',
|
|
393
|
+
seafoam900: '#00301F',
|
|
394
|
+
aqua50: '#F2FFFD',
|
|
395
|
+
aqua100: '#CFFFFC',
|
|
396
|
+
aqua200: '#94FFF9',
|
|
397
|
+
aqua300: '#47F9EE',
|
|
398
|
+
aqua400: '#0DECDE',
|
|
399
|
+
aqua500: '#00CFC3',
|
|
400
|
+
aqua600: '#00AFAF',
|
|
401
|
+
aqua700: '#007A7A',
|
|
402
|
+
aqua800: '#004F4F',
|
|
403
|
+
aqua900: '#002929',
|
|
404
|
+
sky50: '#F2FEFF',
|
|
405
|
+
sky100: '#CCFBFE',
|
|
406
|
+
sky200: '#9FF4FF',
|
|
407
|
+
sky300: '#5CEBFF',
|
|
408
|
+
sky400: '#22DCFE',
|
|
409
|
+
sky500: '#00C3E7',
|
|
410
|
+
sky600: '#009AC8',
|
|
411
|
+
sky700: '#006998',
|
|
412
|
+
sky800: '#003E66',
|
|
413
|
+
sky900: '#00213D',
|
|
414
|
+
azure50: '#F2FDFF',
|
|
415
|
+
azure100: '#CCF5FE',
|
|
416
|
+
azure200: '#9AE6FE',
|
|
417
|
+
azure300: '#67D1FC',
|
|
418
|
+
azure400: '#41B9FA',
|
|
419
|
+
azure500: '#0494F7',
|
|
420
|
+
azure600: '#0272D4',
|
|
421
|
+
azure700: '#004DA3',
|
|
422
|
+
azure800: '#003176',
|
|
423
|
+
azure900: '#001944',
|
|
424
|
+
blue50: '#F8FBFF',
|
|
425
|
+
blue100: '#DAE9FF',
|
|
426
|
+
blue200: '#AFCFFF',
|
|
427
|
+
blue300: '#86B6FF',
|
|
428
|
+
blue400: '#5B9DFF',
|
|
429
|
+
blue500: '#1F78FF',
|
|
430
|
+
blue600: '#085FE3',
|
|
431
|
+
blue700: '#0045AB',
|
|
432
|
+
blue800: '#002E72',
|
|
433
|
+
blue900: '#001D47',
|
|
434
|
+
info50: '#F2F7FF',
|
|
435
|
+
info100: '#E2ECFE',
|
|
436
|
+
info200: '#B6CFFC',
|
|
437
|
+
info300: '#8AACF7',
|
|
438
|
+
info400: '#8488FF',
|
|
439
|
+
info500: '#365EED',
|
|
440
|
+
info600: '#1B3CCE',
|
|
441
|
+
info700: '#0D26AB',
|
|
442
|
+
info800: '#0A1B7A',
|
|
443
|
+
info900: '#071356',
|
|
444
|
+
indigo50: '#F4F4FF',
|
|
445
|
+
indigo100: '#D8D1FA',
|
|
446
|
+
indigo200: '#B19FFF',
|
|
447
|
+
indigo300: '#886FFF',
|
|
448
|
+
indigo400: '#6545FF',
|
|
449
|
+
indigo500: '#4F2BFF',
|
|
450
|
+
indigo600: '#3D1BDE',
|
|
451
|
+
indigo700: '#2806C8',
|
|
452
|
+
indigo800: '#19018C',
|
|
453
|
+
indigo900: '#0F0053',
|
|
454
|
+
purple50: '#F3ECFF',
|
|
455
|
+
purple100: '#DCC9FD',
|
|
456
|
+
purple200: '#B58CF7',
|
|
457
|
+
purple300: '#965CF4',
|
|
458
|
+
purple400: '#7B34F2',
|
|
459
|
+
purple500: '#610BEF',
|
|
460
|
+
purple600: '#5109C7',
|
|
461
|
+
purple700: '#5109C7',
|
|
462
|
+
purple800: '#5109C7',
|
|
463
|
+
purple900: '#1B0049',
|
|
464
|
+
lavender50: '#F9F2FE',
|
|
465
|
+
lavender100: '#F3E6FE',
|
|
466
|
+
lavender200: '#E8CFFC',
|
|
467
|
+
lavender300: '#D8AFFA',
|
|
468
|
+
lavender400: '#B179F4',
|
|
469
|
+
lavender500: '#803CF2',
|
|
470
|
+
lavender600: '#551BCD',
|
|
471
|
+
lavender700: '#360A9A',
|
|
472
|
+
lavender800: '#220863',
|
|
473
|
+
lavender900: '#170346',
|
|
474
|
+
grape50: '#F9F2FF',
|
|
475
|
+
grape100: '#E7CEFF',
|
|
476
|
+
grape200: '#CB97FF',
|
|
477
|
+
grape300: '#B163FF',
|
|
478
|
+
grape400: '#9B37FF',
|
|
479
|
+
grape500: '#7D0BEF',
|
|
480
|
+
grape600: '#6800D0',
|
|
481
|
+
grape700: '#4E009C',
|
|
482
|
+
grape800: '#3C0077',
|
|
483
|
+
grape900: '#27004E',
|
|
484
|
+
violet50: '#FAF0FF',
|
|
485
|
+
violet100: '#EFCCFF',
|
|
486
|
+
violet200: '#E1A1FF',
|
|
487
|
+
violet300: '#D377FF',
|
|
488
|
+
violet400: '#C548FF',
|
|
489
|
+
violet500: '#AD04FD',
|
|
490
|
+
violet600: '#8800CA',
|
|
491
|
+
violet700: '#5E009C',
|
|
492
|
+
violet800: '#3D0073',
|
|
493
|
+
violet900: '#22004A',
|
|
494
|
+
orchid50: '#FDF1FF',
|
|
495
|
+
orchid100: '#F8CFFF',
|
|
496
|
+
orchid200: '#F19FFF',
|
|
497
|
+
orchid300: '#EB72FF',
|
|
498
|
+
orchid400: '#EB72FF',
|
|
499
|
+
orchid500: '#CA08EA',
|
|
500
|
+
orchid600: '#9E00C6',
|
|
501
|
+
orchid700: '#9E00C6',
|
|
502
|
+
orchid800: '#500064',
|
|
503
|
+
orchid900: '#500064',
|
|
504
|
+
magenta50: '#FFF3FC',
|
|
505
|
+
magenta100: '#FECEEE',
|
|
506
|
+
magenta200: '#FD9DE2',
|
|
507
|
+
magenta300: '#F96BD1',
|
|
508
|
+
magenta400: '#F346C5',
|
|
509
|
+
magenta500: '#EC0DC5',
|
|
510
|
+
magenta600: '#CA09BB',
|
|
511
|
+
magenta700: '#8D018E',
|
|
512
|
+
magenta800: '#8D018E',
|
|
513
|
+
magenta900: '#2F003C',
|
|
514
|
+
fuchsia50: '#FFF6FA',
|
|
515
|
+
fuchsia100: '#FFDFEC',
|
|
516
|
+
fuchsia200: '#FF87D5',
|
|
517
|
+
fuchsia300: '#FF96C2',
|
|
518
|
+
fuchsia400: '#FF60A3',
|
|
519
|
+
fuchsia500: '#FF3087',
|
|
520
|
+
fuchsia600: '#DB1668',
|
|
521
|
+
fuchsia700: '#9E0546',
|
|
522
|
+
fuchsia800: '#66002B',
|
|
523
|
+
fuchsia900: '#340016',
|
|
524
|
+
crimson50: '#FFF6FA',
|
|
525
|
+
crimson100: '#FCE8F1',
|
|
526
|
+
crimson200: '#F7CDE0',
|
|
527
|
+
crimson300: '#F39CC6',
|
|
528
|
+
crimson400: '#F6649D',
|
|
529
|
+
crimson500: '#DB195A',
|
|
530
|
+
crimson600: '#AB0F3E',
|
|
531
|
+
crimson700: '#880B2D',
|
|
532
|
+
crimson800: '#58071E',
|
|
533
|
+
crimson900: '#3D0514',
|
|
534
|
+
ruby50: '#FFF6FA',
|
|
535
|
+
ruby100: '#FFE5EA',
|
|
536
|
+
ruby200: '#FFC2CD',
|
|
537
|
+
ruby300: '#FF98AA',
|
|
538
|
+
ruby400: '#FF6A85',
|
|
539
|
+
ruby500: '#FF3B5E',
|
|
540
|
+
ruby600: '#AB0F3E',
|
|
541
|
+
ruby700: '#960A23',
|
|
542
|
+
ruby800: '#630012',
|
|
543
|
+
ruby900: '#39000B',
|
|
132
544
|
black: '#2E2E2E',
|
|
133
545
|
cherryRed: '#F62F5E',
|
|
134
546
|
darkGrey: '#EFEFEF',
|
|
@@ -142,6 +554,258 @@ exports.theme = {
|
|
|
142
554
|
skyBlue: '#1E90FF',
|
|
143
555
|
white: '#FFFFFF',
|
|
144
556
|
},
|
|
557
|
+
light: {
|
|
558
|
+
neutral0: '',
|
|
559
|
+
get neutral0Val() { return this.colors.white; },
|
|
560
|
+
neutral50: '',
|
|
561
|
+
get neutral50Val() { return this.colors.slate900; },
|
|
562
|
+
neutral100: '',
|
|
563
|
+
get neutral100Val() { return this.colors.slate100; },
|
|
564
|
+
neutral200: '',
|
|
565
|
+
get neutral200Val() { return this.colors.slate200; },
|
|
566
|
+
neutral300: '',
|
|
567
|
+
get neutral300Val() { return this.colors.slate300; },
|
|
568
|
+
neutral400: '',
|
|
569
|
+
get neutral400Val() { return this.colors.slate400; },
|
|
570
|
+
neutral500: '',
|
|
571
|
+
get neutral500Val() { return this.colors.slate500; },
|
|
572
|
+
neutral600: '',
|
|
573
|
+
get neutral600Val() { return this.colors.slate600; },
|
|
574
|
+
neutral700: '',
|
|
575
|
+
get neutral700Val() { return this.colors.slate700; },
|
|
576
|
+
neutral800: '',
|
|
577
|
+
get neutral800Val() { return this.colors.slate800; },
|
|
578
|
+
neutral900: '',
|
|
579
|
+
get neutral900Val() { return this.colors.slate900; },
|
|
580
|
+
neutral1000: '',
|
|
581
|
+
get neutral1000Val() { return this.colors.black; },
|
|
582
|
+
brand50: '',
|
|
583
|
+
get brand50Val() { return this.colors.lavender50; },
|
|
584
|
+
brand100: '',
|
|
585
|
+
get brand100Val() { return this.colors.lavender100; },
|
|
586
|
+
brand200: '',
|
|
587
|
+
get brand200Val() { return this.colors.lavender200; },
|
|
588
|
+
brand300: '',
|
|
589
|
+
get brand300Val() { return this.colors.lavender300; },
|
|
590
|
+
brand400: '',
|
|
591
|
+
get brand400Val() { return this.colors.lavender400; },
|
|
592
|
+
brand500: '',
|
|
593
|
+
get brand500Val() { return this.colors.lavender500; },
|
|
594
|
+
brand600: '',
|
|
595
|
+
get brand600Val() { return this.colors.lavender600; },
|
|
596
|
+
brand700: '',
|
|
597
|
+
get brand700Val() { return this.colors.lavender700; },
|
|
598
|
+
brand800: '',
|
|
599
|
+
get brand800Val() { return this.colors.lavender800; },
|
|
600
|
+
brand900: '',
|
|
601
|
+
get brand900Val() { return this.colors.lavender900; },
|
|
602
|
+
info50: '',
|
|
603
|
+
get info50Val() { return this.colors.info50; },
|
|
604
|
+
info100: '',
|
|
605
|
+
get info100Val() { return this.colors.info100; },
|
|
606
|
+
info200: '',
|
|
607
|
+
get info200Val() { return this.colors.info200; },
|
|
608
|
+
info300: '',
|
|
609
|
+
get info300Val() { return this.colors.info300; },
|
|
610
|
+
info400: '',
|
|
611
|
+
get info400Val() { return this.colors.info400; },
|
|
612
|
+
info500: '',
|
|
613
|
+
get info500Val() { return this.colors.info500; },
|
|
614
|
+
info600: '',
|
|
615
|
+
get info600Val() { return this.colors.info600; },
|
|
616
|
+
info700: '',
|
|
617
|
+
get info700Val() { return this.colors.info700; },
|
|
618
|
+
info800: '',
|
|
619
|
+
get info800Val() { return this.colors.info800; },
|
|
620
|
+
info900: '',
|
|
621
|
+
get info900Val() { return this.colors.info900; },
|
|
622
|
+
success50: '',
|
|
623
|
+
get success50Val() { return this.colors.emerald50; },
|
|
624
|
+
success100: '',
|
|
625
|
+
get success100Val() { return this.colors.emerald100; },
|
|
626
|
+
success200: '',
|
|
627
|
+
get success200Val() { return this.colors.emerald200; },
|
|
628
|
+
success300: '',
|
|
629
|
+
get success300Val() { return this.colors.emerald300; },
|
|
630
|
+
success400: '',
|
|
631
|
+
get success400Val() { return this.colors.emerald400; },
|
|
632
|
+
success500: '',
|
|
633
|
+
get success500Val() { return this.colors.emerald500; },
|
|
634
|
+
success600: '',
|
|
635
|
+
get success600Val() { return this.colors.emerald600; },
|
|
636
|
+
success700: '',
|
|
637
|
+
get success700Val() { return this.colors.emerald700; },
|
|
638
|
+
success800: '',
|
|
639
|
+
get success800Val() { return this.colors.emerald800; },
|
|
640
|
+
success900: '',
|
|
641
|
+
get success900Val() { return this.colors.emerald900; },
|
|
642
|
+
warning50: '',
|
|
643
|
+
get warning50Val() { return this.colors.honey50; },
|
|
644
|
+
warning100: '',
|
|
645
|
+
get warning100Val() { return this.colors.honey100; },
|
|
646
|
+
warning200: '',
|
|
647
|
+
get warning200Val() { return this.colors.honey200; },
|
|
648
|
+
warning300: '',
|
|
649
|
+
get warning300Val() { return this.colors.honey300; },
|
|
650
|
+
warning400: '',
|
|
651
|
+
get warning400Val() { return this.colors.honey400; },
|
|
652
|
+
warning500: '',
|
|
653
|
+
get warning500Val() { return this.colors.honey500; },
|
|
654
|
+
warning600: '',
|
|
655
|
+
get warning600Val() { return this.colors.honey600; },
|
|
656
|
+
warning700: '',
|
|
657
|
+
get warning700Val() { return this.colors.honey700; },
|
|
658
|
+
warning800: '',
|
|
659
|
+
get warning800Val() { return this.colors.honey800; },
|
|
660
|
+
warning900: '',
|
|
661
|
+
get warning900Val() { return this.colors.honey900; },
|
|
662
|
+
critical50: '',
|
|
663
|
+
get critical50Val() { return this.colors.fuchsia50; },
|
|
664
|
+
critical100: '',
|
|
665
|
+
get critical100Val() { return this.colors.fuchsia100; },
|
|
666
|
+
critical200: '',
|
|
667
|
+
get critical200Val() { return this.colors.fuchsia200; },
|
|
668
|
+
critical300: '',
|
|
669
|
+
get critical300Val() { return this.colors.fuchsia300; },
|
|
670
|
+
critical400: '',
|
|
671
|
+
get critical400Val() { return this.colors.fuchsia400; },
|
|
672
|
+
critical500: '',
|
|
673
|
+
get critical500Val() { return this.colors.fuchsia500; },
|
|
674
|
+
critical600: '',
|
|
675
|
+
get critical600Val() { return this.colors.fuchsia600; },
|
|
676
|
+
critical700: '',
|
|
677
|
+
get critical700Val() { return this.colors.fuchsia700; },
|
|
678
|
+
critical800: '',
|
|
679
|
+
get critical800Val() { return this.colors.fuchsia800; },
|
|
680
|
+
critical900: '',
|
|
681
|
+
get critical900Val() { return this.colors.fuchsia900; },
|
|
682
|
+
},
|
|
683
|
+
dark: {
|
|
684
|
+
neutral0: '',
|
|
685
|
+
get neutral0Val() { return this.colors.black; },
|
|
686
|
+
neutral50: '',
|
|
687
|
+
get neutral50Val() { return this.colors.slate900; },
|
|
688
|
+
neutral100: '',
|
|
689
|
+
get neutral100Val() { return this.colors.slate800; },
|
|
690
|
+
neutral200: '',
|
|
691
|
+
get neutral200Val() { return this.colors.slate700; },
|
|
692
|
+
neutral300: '',
|
|
693
|
+
get neutral300Val() { return this.colors.slate600; },
|
|
694
|
+
neutral400: '',
|
|
695
|
+
get neutral400Val() { return this.colors.slate500; },
|
|
696
|
+
neutral500: '',
|
|
697
|
+
get neutral500Val() { return this.colors.slate400; },
|
|
698
|
+
neutral600: '',
|
|
699
|
+
get neutral600Val() { return this.colors.slate300; },
|
|
700
|
+
neutral700: '',
|
|
701
|
+
get neutral700Val() { return this.colors.slate200; },
|
|
702
|
+
neutral800: '',
|
|
703
|
+
get neutral800Val() { return this.colors.slate100; },
|
|
704
|
+
neutral900: '',
|
|
705
|
+
get neutral900Val() { return this.colors.slate50; },
|
|
706
|
+
neutral1000: '',
|
|
707
|
+
get neutral1000Val() { return this.colors.white; },
|
|
708
|
+
brand50: '',
|
|
709
|
+
get brand50Val() { return this.colors.lavender50; },
|
|
710
|
+
brand100: '',
|
|
711
|
+
get brand100Val() { return this.colors.lavender100; },
|
|
712
|
+
brand200: '',
|
|
713
|
+
get brand200Val() { return this.colors.lavender200; },
|
|
714
|
+
brand300: '',
|
|
715
|
+
get brand300Val() { return this.colors.lavender300; },
|
|
716
|
+
brand400: '',
|
|
717
|
+
get brand400Val() { return this.colors.lavender400; },
|
|
718
|
+
brand500: '',
|
|
719
|
+
get brand500Val() { return this.colors.lavender500; },
|
|
720
|
+
brand600: '',
|
|
721
|
+
get brand600Val() { return this.colors.lavender600; },
|
|
722
|
+
brand700: '',
|
|
723
|
+
get brand700Val() { return this.colors.lavender700; },
|
|
724
|
+
brand800: '',
|
|
725
|
+
get brand800Val() { return this.colors.lavender800; },
|
|
726
|
+
brand900: '',
|
|
727
|
+
get brand900Val() { return this.colors.lavender900; },
|
|
728
|
+
info50: '',
|
|
729
|
+
get info50Val() { return this.colors.info50; },
|
|
730
|
+
info100: '',
|
|
731
|
+
get info100Val() { return this.colors.info100; },
|
|
732
|
+
info200: '',
|
|
733
|
+
get info200Val() { return this.colors.info200; },
|
|
734
|
+
info300: '',
|
|
735
|
+
get info300Val() { return this.colors.info300; },
|
|
736
|
+
info400: '',
|
|
737
|
+
get info400Val() { return this.colors.info400; },
|
|
738
|
+
info500: '',
|
|
739
|
+
get info500Val() { return this.colors.info500; },
|
|
740
|
+
info600: '',
|
|
741
|
+
get info600Val() { return this.colors.info600; },
|
|
742
|
+
info700: '',
|
|
743
|
+
get info700Val() { return this.colors.info700; },
|
|
744
|
+
info800: '',
|
|
745
|
+
get info800Val() { return this.colors.info800; },
|
|
746
|
+
info900: '',
|
|
747
|
+
get info900Val() { return this.colors.info900; },
|
|
748
|
+
success50: '',
|
|
749
|
+
get success50Val() { return this.colors.emerald50; },
|
|
750
|
+
success100: '',
|
|
751
|
+
get success100Val() { return this.colors.emerald100; },
|
|
752
|
+
success200: '',
|
|
753
|
+
get success200Val() { return this.colors.emerald200; },
|
|
754
|
+
success300: '',
|
|
755
|
+
get success300Val() { return this.colors.emerald300; },
|
|
756
|
+
success400: '',
|
|
757
|
+
get success400Val() { return this.colors.emerald400; },
|
|
758
|
+
success500: '',
|
|
759
|
+
get success500Val() { return this.colors.emerald500; },
|
|
760
|
+
success600: '',
|
|
761
|
+
get success600Val() { return this.colors.emerald600; },
|
|
762
|
+
success700: '',
|
|
763
|
+
get success700Val() { return this.colors.emerald700; },
|
|
764
|
+
success800: '',
|
|
765
|
+
get success800Val() { return this.colors.emerald800; },
|
|
766
|
+
success900: '',
|
|
767
|
+
get success900Val() { return this.colors.emerald900; },
|
|
768
|
+
warning50: '',
|
|
769
|
+
get warning50Val() { return this.colors.honey50; },
|
|
770
|
+
warning100: '',
|
|
771
|
+
get warning100Val() { return this.colors.honey100; },
|
|
772
|
+
warning200: '',
|
|
773
|
+
get warning200Val() { return this.colors.honey200; },
|
|
774
|
+
warning300: '',
|
|
775
|
+
get warning300Val() { return this.colors.honey300; },
|
|
776
|
+
warning400: '',
|
|
777
|
+
get warning400Val() { return this.colors.honey400; },
|
|
778
|
+
warning500: '',
|
|
779
|
+
get warning500Val() { return this.colors.honey500; },
|
|
780
|
+
warning600: '',
|
|
781
|
+
get warning600Val() { return this.colors.honey600; },
|
|
782
|
+
warning700: '',
|
|
783
|
+
get warning700Val() { return this.colors.honey700; },
|
|
784
|
+
warning800: '',
|
|
785
|
+
get warning800Val() { return this.colors.honey800; },
|
|
786
|
+
warning900: '',
|
|
787
|
+
get warning900Val() { return this.colors.honey900; },
|
|
788
|
+
critical50: '',
|
|
789
|
+
get critical50Val() { return this.colors.fuchsia50; },
|
|
790
|
+
critical100: '',
|
|
791
|
+
get critical100Val() { return this.colors.fuchsia100; },
|
|
792
|
+
critical200: '',
|
|
793
|
+
get critical200Val() { return this.colors.fuchsia200; },
|
|
794
|
+
critical300: '',
|
|
795
|
+
get critical300Val() { return this.colors.fuchsia300; },
|
|
796
|
+
critical400: '',
|
|
797
|
+
get critical400Val() { return this.colors.fuchsia400; },
|
|
798
|
+
critical500: '',
|
|
799
|
+
get critical500Val() { return this.colors.fuchsia500; },
|
|
800
|
+
critical600: '',
|
|
801
|
+
get critical600Val() { return this.colors.fuchsia600; },
|
|
802
|
+
critical700: '',
|
|
803
|
+
get critical700Val() { return this.colors.fuchsia700; },
|
|
804
|
+
critical800: '',
|
|
805
|
+
get critical800Val() { return this.colors.fuchsia800; },
|
|
806
|
+
critical900: '',
|
|
807
|
+
get critical900Val() { return this.colors.fuchsia900; },
|
|
808
|
+
},
|
|
145
809
|
misc: {
|
|
146
810
|
darkMode: false,
|
|
147
811
|
wrapperWidth: '90%',
|