@utilitywarehouse/hearth-react-native 0.4.0 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +1 -1
- package/CHANGELOG.md +16 -0
- package/build/components/Checkbox/CheckboxTextContent.d.ts +1 -1
- package/build/components/Checkbox/CheckboxTextContent.js +9 -2
- package/build/components/CurrencyInput/CurrencyInput.d.ts +1 -1
- package/build/components/CurrencyInput/CurrencyInput.js +3 -3
- package/build/components/CurrencyInput/CurrencyInput.props.d.ts +2 -2
- package/build/components/Radio/RadioTextContent.d.ts +1 -1
- package/build/components/Radio/RadioTextContent.js +9 -2
- package/build/core/themes.d.ts +482 -0
- package/build/core/themes.js +31 -0
- package/build/legacyTokens/common/brand.d.ts +16 -0
- package/build/legacyTokens/common/brand.js +17 -0
- package/build/legacyTokens/common/index.d.ts +8 -0
- package/build/legacyTokens/common/index.js +9 -0
- package/build/legacyTokens/common/service.d.ts +20 -0
- package/build/legacyTokens/common/service.js +21 -0
- package/build/legacyTokens/dark/apple.d.ts +28 -0
- package/build/legacyTokens/dark/apple.js +29 -0
- package/build/legacyTokens/dark/cyan.d.ts +48 -0
- package/build/legacyTokens/dark/cyan.js +49 -0
- package/build/legacyTokens/dark/gold.d.ts +44 -0
- package/build/legacyTokens/dark/gold.js +45 -0
- package/build/legacyTokens/dark/grape.d.ts +28 -0
- package/build/legacyTokens/dark/grape.js +29 -0
- package/build/legacyTokens/dark/green.d.ts +40 -0
- package/build/legacyTokens/dark/green.js +41 -0
- package/build/legacyTokens/dark/grey.d.ts +60 -0
- package/build/legacyTokens/dark/grey.js +61 -0
- package/build/legacyTokens/dark/index.d.ts +40 -0
- package/build/legacyTokens/dark/index.js +41 -0
- package/build/legacyTokens/dark/pink.d.ts +28 -0
- package/build/legacyTokens/dark/pink.js +29 -0
- package/build/legacyTokens/dark/purple.d.ts +48 -0
- package/build/legacyTokens/dark/purple.js +49 -0
- package/build/legacyTokens/dark/red.d.ts +40 -0
- package/build/legacyTokens/dark/red.js +41 -0
- package/build/legacyTokens/dark/rose.d.ts +28 -0
- package/build/legacyTokens/dark/rose.js +29 -0
- package/build/legacyTokens/index.d.ts +12 -0
- package/build/legacyTokens/index.js +13 -0
- package/build/legacyTokens/light/apple.d.ts +28 -0
- package/build/legacyTokens/light/apple.js +29 -0
- package/build/legacyTokens/light/cyan.d.ts +48 -0
- package/build/legacyTokens/light/cyan.js +49 -0
- package/build/legacyTokens/light/gold.d.ts +44 -0
- package/build/legacyTokens/light/gold.js +45 -0
- package/build/legacyTokens/light/grape.d.ts +28 -0
- package/build/legacyTokens/light/grape.js +29 -0
- package/build/legacyTokens/light/green.d.ts +40 -0
- package/build/legacyTokens/light/green.js +41 -0
- package/build/legacyTokens/light/grey.d.ts +60 -0
- package/build/legacyTokens/light/grey.js +61 -0
- package/build/legacyTokens/light/index.d.ts +40 -0
- package/build/legacyTokens/light/index.js +41 -0
- package/build/legacyTokens/light/pink.d.ts +28 -0
- package/build/legacyTokens/light/pink.js +29 -0
- package/build/legacyTokens/light/purple.d.ts +48 -0
- package/build/legacyTokens/light/purple.js +49 -0
- package/build/legacyTokens/light/red.d.ts +40 -0
- package/build/legacyTokens/light/red.js +41 -0
- package/build/legacyTokens/light/rose.d.ts +32 -0
- package/build/legacyTokens/light/rose.js +33 -0
- package/build/utils/getFlattenedColorValue.js +2 -19
- package/build/utils/index.d.ts +1 -0
- package/build/utils/index.js +1 -0
- package/build/utils/styleUtils.d.ts +0 -4
- package/build/utils/styleUtils.js +0 -50
- package/build/utils/themeValueHelpers.d.ts +17 -0
- package/build/utils/themeValueHelpers.js +54 -0
- package/docs/getting-started.mdx +13 -5
- package/docs/introduction.mdx +50 -5
- package/package.json +4 -4
- package/src/components/Checkbox/CheckboxTextContent.tsx +11 -3
- package/src/components/CurrencyInput/CurrencyInput.docs.mdx +4 -4
- package/src/components/CurrencyInput/CurrencyInput.props.ts +2 -2
- package/src/components/CurrencyInput/CurrencyInput.stories.tsx +17 -15
- package/src/components/CurrencyInput/CurrencyInput.tsx +3 -3
- package/src/components/Radio/RadioTextContent.tsx +11 -3
- package/src/core/themes.ts +31 -0
- package/src/legacyTokens/common/brand.ts +18 -0
- package/src/legacyTokens/common/index.ts +10 -0
- package/src/legacyTokens/common/service.ts +22 -0
- package/src/legacyTokens/dark/apple.ts +30 -0
- package/src/legacyTokens/dark/cyan.ts +50 -0
- package/src/legacyTokens/dark/gold.ts +46 -0
- package/src/legacyTokens/dark/grape.ts +30 -0
- package/src/legacyTokens/dark/green.ts +42 -0
- package/src/legacyTokens/dark/grey.ts +62 -0
- package/src/legacyTokens/dark/index.ts +42 -0
- package/src/legacyTokens/dark/pink.ts +30 -0
- package/src/legacyTokens/dark/purple.ts +50 -0
- package/src/legacyTokens/dark/red.ts +42 -0
- package/src/legacyTokens/dark/rose.ts +30 -0
- package/src/legacyTokens/index.ts +14 -0
- package/src/legacyTokens/light/apple.ts +30 -0
- package/src/legacyTokens/light/cyan.ts +50 -0
- package/src/legacyTokens/light/gold.ts +46 -0
- package/src/legacyTokens/light/grape.ts +30 -0
- package/src/legacyTokens/light/green.ts +42 -0
- package/src/legacyTokens/light/grey.ts +62 -0
- package/src/legacyTokens/light/index.ts +42 -0
- package/src/legacyTokens/light/pink.ts +30 -0
- package/src/legacyTokens/light/purple.ts +50 -0
- package/src/legacyTokens/light/red.ts +42 -0
- package/src/legacyTokens/light/rose.ts +34 -0
- package/src/utils/getFlattenedColorValue.ts +2 -21
- package/src/utils/getStyleValue.ts +0 -3
- package/src/utils/index.ts +1 -0
- package/src/utils/styleUtils.ts +0 -57
- package/src/utils/themeValueHelpers.ts +60 -0
package/build/core/themes.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Platform } from 'react-native';
|
|
2
|
+
import { colors, colorsCommon, colorsDark } from '../legacyTokens';
|
|
2
3
|
import { borderRadius, borderWidth, color, components, font, layout, letterSpacing, lineHeight, shadow, space, typography, } from '../tokens';
|
|
3
4
|
import { breakpoints } from './breakpoints';
|
|
4
5
|
const { light, dark, ...restOfColors } = color;
|
|
@@ -264,6 +265,15 @@ export const lightTheme = {
|
|
|
264
265
|
colorMode: 'light',
|
|
265
266
|
isLight: true,
|
|
266
267
|
isDark: false,
|
|
268
|
+
/**
|
|
269
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility
|
|
270
|
+
*/
|
|
271
|
+
colors: {
|
|
272
|
+
...colors,
|
|
273
|
+
...colorsCommon,
|
|
274
|
+
white: '#ffffff',
|
|
275
|
+
black: '#000000',
|
|
276
|
+
},
|
|
267
277
|
color: {
|
|
268
278
|
...restOfColors,
|
|
269
279
|
...light,
|
|
@@ -287,10 +297,31 @@ export const darkTheme = {
|
|
|
287
297
|
colorMode: 'dark',
|
|
288
298
|
isLight: false,
|
|
289
299
|
isDark: true,
|
|
300
|
+
/**
|
|
301
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
302
|
+
*/
|
|
303
|
+
colors: {
|
|
304
|
+
...colorsDark,
|
|
305
|
+
...colorsCommon,
|
|
306
|
+
/**
|
|
307
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
308
|
+
*/
|
|
309
|
+
white: '#ffffff',
|
|
310
|
+
/**
|
|
311
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
312
|
+
*/
|
|
313
|
+
black: '#000000',
|
|
314
|
+
},
|
|
290
315
|
color: {
|
|
291
316
|
...restOfColors,
|
|
292
317
|
...dark,
|
|
318
|
+
/**
|
|
319
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
320
|
+
*/
|
|
293
321
|
white: '#ffffff',
|
|
322
|
+
/**
|
|
323
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
324
|
+
*/
|
|
294
325
|
black: '#000000',
|
|
295
326
|
},
|
|
296
327
|
components: components.dark,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const brandMidnight = "#1e0a46";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const brandWhite = "#ffffff";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const brandPink = "#f495f9";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const brandPrimaryPurple = "#550091";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export const brandMidnight = '#1e0a46';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const brandWhite = '#ffffff';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const brandPink = '#f495f9';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const brandPrimaryPurple = '#550091';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export * from './brand';
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export * from './service';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export * from './brand';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export * from './service';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const serviceGas = "#75A7FD";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const serviceElectricity = "#62DD99";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const serviceInsurance = "#F25192";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const serviceMobile = "#FFD76F";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const serviceLandline = "#A66DE8";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export const serviceGas = '#75A7FD';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const serviceElectricity = '#62DD99';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const serviceInsurance = '#F25192';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const serviceMobile = '#FFD76F';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const serviceLandline = '#A66DE8';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const apple100 = "#03361b";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const apple200 = "#087a3c";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const apple300 = "#10b259";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const apple600 = "#62dd99";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const apple700 = "#96e6b7";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const apple800 = "#c1f0d3";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const apple950 = "#e5f9ed";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export const apple100 = '#03361b';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const apple200 = '#087a3c';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const apple300 = '#10b259';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const apple600 = '#62dd99';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const apple700 = '#96e6b7';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const apple800 = '#c1f0d3';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const apple950 = '#e5f9ed';
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const cyan50 = "#010a19";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const cyan75 = "#001333";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const cyan100 = "#011537";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const cyan200 = "#00225c";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const cyan300 = "#002d80";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const cyan400 = "#013992";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const cyan500 = "#0658e5";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const cyan600 = "#5692fb";
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export declare const cyan700 = "#75a7fd";
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export declare const cyan800 = "#a6c8fc";
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
43
|
+
*/
|
|
44
|
+
export declare const cyan900 = "#dbeaff";
|
|
45
|
+
/**
|
|
46
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
47
|
+
*/
|
|
48
|
+
export declare const cyan1000 = "#ecf4fe";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export const cyan50 = '#010a19';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const cyan75 = '#001333';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const cyan100 = '#011537';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const cyan200 = '#00225c';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const cyan300 = '#002d80';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const cyan400 = '#013992';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const cyan500 = '#0658e5';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const cyan600 = '#5692fb';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export const cyan700 = '#75a7fd';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export const cyan800 = '#a6c8fc';
|
|
42
|
+
/**
|
|
43
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
44
|
+
*/
|
|
45
|
+
export const cyan900 = '#dbeaff';
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
48
|
+
*/
|
|
49
|
+
export const cyan1000 = '#ecf4fe';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const gold50 = "#2e1103";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const gold75 = "#411907";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const gold100 = "#52210c";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const gold200 = "#743711";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const gold300 = "#925317";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const gold400 = "#cd7d04";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const gold500 = "#f7b51d";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const gold600 = "#fbc64b";
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export declare const gold700 = "#ffd76f";
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export declare const gold800 = "#ffe6a8";
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
43
|
+
*/
|
|
44
|
+
export declare const gold900 = "#fff6e0";
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export const gold50 = '#2e1103';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const gold75 = '#411907';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const gold100 = '#52210c';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const gold200 = '#743711';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const gold300 = '#925317';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const gold400 = '#cd7d04';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const gold500 = '#f7b51d';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const gold600 = '#fbc64b';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export const gold700 = '#ffd76f';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export const gold800 = '#ffe6a8';
|
|
42
|
+
/**
|
|
43
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
44
|
+
*/
|
|
45
|
+
export const gold900 = '#fff6e0';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const grape100 = "#240444";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const grape200 = "#2d025e";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const grape500 = "#7b39c6";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const grape600 = "#a66de8";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const grape700 = "#bc92ed";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const grape800 = "#d4baf3";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const grape950 = "#f1e6fb";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export const grape100 = '#240444';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const grape200 = '#2d025e';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const grape500 = '#7b39c6';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const grape600 = '#a66de8';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const grape700 = '#bc92ed';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const grape800 = '#d4baf3';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const grape950 = '#f1e6fb';
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const green50 = "#133922";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const green100 = "#164429";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const green200 = "#1b5533";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const green300 = "#21693f";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const green400 = "#34a868";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const green500 = "#55ce8b";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const green600 = "#76d5a1";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const green700 = "#90dab2";
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export declare const green800 = "#bae8cf";
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export declare const green900 = "#e3faeb";
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export const green50 = '#133922';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const green100 = '#164429';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const green200 = '#1b5533';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const green300 = '#21693f';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const green400 = '#34a868';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const green500 = '#55ce8b';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const green600 = '#76d5a1';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const green700 = '#90dab2';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export const green800 = '#bae8cf';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export const green900 = '#e3faeb';
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const grey25 = "#050505";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const grey50 = "#0b0b0b";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const grey75 = "#121212";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const grey100 = "#1d1d1d";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const grey150 = "#242424";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const grey175 = "#2c2c2c";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const grey200 = "#323232";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const grey300 = "#414141";
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export declare const grey400 = "#585858";
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export declare const grey500 = "#707070";
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
43
|
+
*/
|
|
44
|
+
export declare const grey600 = "#b8b8b8";
|
|
45
|
+
/**
|
|
46
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
47
|
+
*/
|
|
48
|
+
export declare const grey700 = "#c1c1c1";
|
|
49
|
+
/**
|
|
50
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
51
|
+
*/
|
|
52
|
+
export declare const grey800 = "#e3e3e3";
|
|
53
|
+
/**
|
|
54
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
55
|
+
*/
|
|
56
|
+
export declare const grey900 = "#f0f0f0";
|
|
57
|
+
/**
|
|
58
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
59
|
+
*/
|
|
60
|
+
export declare const grey1000 = "#fafafa";
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
4
|
+
*/
|
|
5
|
+
export const grey25 = '#050505';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const grey50 = '#0b0b0b';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const grey75 = '#121212';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const grey100 = '#1d1d1d';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const grey150 = '#242424';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const grey175 = '#2c2c2c';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const grey200 = '#323232';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const grey300 = '#414141';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export const grey400 = '#585858';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export const grey500 = '#707070';
|
|
42
|
+
/**
|
|
43
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
44
|
+
*/
|
|
45
|
+
export const grey600 = '#b8b8b8';
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
48
|
+
*/
|
|
49
|
+
export const grey700 = '#c1c1c1';
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
52
|
+
*/
|
|
53
|
+
export const grey800 = '#e3e3e3';
|
|
54
|
+
/**
|
|
55
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
56
|
+
*/
|
|
57
|
+
export const grey900 = '#f0f0f0';
|
|
58
|
+
/**
|
|
59
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
60
|
+
*/
|
|
61
|
+
export const grey1000 = '#fafafa';
|