@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
|
@@ -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 grape50 = "#f1e6fb";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const grape100 = "#e4d3f8";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const grape200 = "#d4baf3";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const grape300 = "#bc92ed";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const grape400 = "#a66de8";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const grape500 = "#7b39c6";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const grape800 = "#2c094e";
|
|
@@ -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 grape50 = '#f1e6fb';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const grape100 = '#e4d3f8';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const grape200 = '#d4baf3';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const grape300 = '#bc92ed';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const grape400 = '#a66de8';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const grape500 = '#7b39c6';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const grape800 = '#2c094e';
|
|
@@ -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 = "#eefcf3";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const green100 = "#e0f5e8";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const green200 = "#bdead0";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const green300 = "#a3e1bf";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const green400 = "#2fb66d";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const green500 = "#1c874d";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const green600 = "#297f50";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const green700 = "#21693f";
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export declare const green800 = "#0a522c";
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export declare const green900 = "#003d1e";
|
|
@@ -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 = '#eefcf3';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const green100 = '#e0f5e8';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const green200 = '#bdead0';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const green300 = '#a3e1bf';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const green400 = '#2fb66d';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const green500 = '#1c874d';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const green600 = '#297f50';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const green700 = '#21693f';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export const green800 = '#0a522c';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export const green900 = '#003d1e';
|
|
@@ -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 = "#fafafa";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const grey50 = "#f5f5f5";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const grey75 = "#f0f0f0";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const grey100 = "#e3e3e3";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const grey150 = "#d8d8d8";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const grey175 = "#cccccc";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const grey200 = "#c1c1c1";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const grey300 = "#b8b8b8";
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export declare const grey400 = "#a0a0a0";
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export declare const grey500 = "#888888";
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
43
|
+
*/
|
|
44
|
+
export declare const grey600 = "#707070";
|
|
45
|
+
/**
|
|
46
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
47
|
+
*/
|
|
48
|
+
export declare const grey700 = "#585858";
|
|
49
|
+
/**
|
|
50
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
51
|
+
*/
|
|
52
|
+
export declare const grey800 = "#414141";
|
|
53
|
+
/**
|
|
54
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
55
|
+
*/
|
|
56
|
+
export declare const grey900 = "#242424";
|
|
57
|
+
/**
|
|
58
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
59
|
+
*/
|
|
60
|
+
export declare const grey1000 = "#121212";
|
|
@@ -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 = '#fafafa';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const grey50 = '#f5f5f5';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const grey75 = '#f0f0f0';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const grey100 = '#e3e3e3';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const grey150 = '#d8d8d8';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const grey175 = '#cccccc';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const grey200 = '#c1c1c1';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const grey300 = '#b8b8b8';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export const grey400 = '#a0a0a0';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export const grey500 = '#888888';
|
|
42
|
+
/**
|
|
43
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
44
|
+
*/
|
|
45
|
+
export const grey600 = '#707070';
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
48
|
+
*/
|
|
49
|
+
export const grey700 = '#585858';
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
52
|
+
*/
|
|
53
|
+
export const grey800 = '#414141';
|
|
54
|
+
/**
|
|
55
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
56
|
+
*/
|
|
57
|
+
export const grey900 = '#242424';
|
|
58
|
+
/**
|
|
59
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
60
|
+
*/
|
|
61
|
+
export const grey1000 = '#121212';
|
|
@@ -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 * from './red';
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export * from './pink';
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export * from './grey';
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export * from './apple';
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export * from './cyan';
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export * from './gold';
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export * from './green';
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export * from './grape';
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export * from './rose';
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export * from './purple';
|
|
@@ -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 * from './red';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export * from './pink';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export * from './grey';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export * from './apple';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export * from './cyan';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export * from './gold';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export * from './green';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export * from './grape';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export * from './rose';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export * from './purple';
|
|
@@ -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 pink50 = "#fde6fb";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const pink100 = "#fccff9";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const pink200 = "#f9bdfa";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const pink300 = "#f495f9";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const pink500 = "#c933d1";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const pink700 = "#8f248f";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const pink900 = "#48104b";
|
|
@@ -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 pink50 = '#fde6fb';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const pink100 = '#fccff9';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const pink200 = '#f9bdfa';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const pink300 = '#f495f9';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const pink500 = '#c933d1';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const pink700 = '#8f248f';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const pink900 = '#48104b';
|
|
@@ -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 purple50 = "#f8f5fe";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const purple75 = "#f1ebfe";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const purple100 = "#e5d7fe";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const purple200 = "#cfadff";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const purple300 = "#c08dfc";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const purple400 = "#b46ef7";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const purple500 = "#9d38f0";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const purple600 = "#8f23e7";
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export declare const purple700 = "#7415c1";
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export declare const purple800 = "#550091";
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
43
|
+
*/
|
|
44
|
+
export declare const purple900 = "#48007a";
|
|
45
|
+
/**
|
|
46
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
47
|
+
*/
|
|
48
|
+
export declare const purple1000 = "#35005c";
|
|
@@ -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 purple50 = '#f8f5fe';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const purple75 = '#f1ebfe';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const purple100 = '#e5d7fe';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const purple200 = '#cfadff';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const purple300 = '#c08dfc';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const purple400 = '#b46ef7';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const purple500 = '#9d38f0';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const purple600 = '#8f23e7';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export const purple700 = '#7415c1';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export const purple800 = '#550091';
|
|
42
|
+
/**
|
|
43
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
44
|
+
*/
|
|
45
|
+
export const purple900 = '#48007a';
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
48
|
+
*/
|
|
49
|
+
export const purple1000 = '#35005c';
|
|
@@ -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 red50 = "#ffebeb";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const red100 = "#ffd8d9";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const red200 = "#ffb3b4";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const red300 = "#f58e92";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const red400 = "#ec515d";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const red500 = "#df2a38";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const red600 = "#c31d2a";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const red700 = "#891e27";
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
35
|
+
*/
|
|
36
|
+
export declare const red800 = "#611a20";
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
39
|
+
*/
|
|
40
|
+
export declare const red900 = "#3b1216";
|
|
@@ -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 red50 = '#ffebeb';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const red100 = '#ffd8d9';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const red200 = '#ffb3b4';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const red300 = '#f58e92';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const red400 = '#ec515d';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const red500 = '#df2a38';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const red600 = '#c31d2a';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const red700 = '#891e27';
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
36
|
+
*/
|
|
37
|
+
export const red800 = '#611a20';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
40
|
+
*/
|
|
41
|
+
export const red900 = '#3b1216';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
3
|
+
*/
|
|
4
|
+
export declare const rose50 = "#fde2ec";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
7
|
+
*/
|
|
8
|
+
export declare const rose200 = "#f9b6d0";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
11
|
+
*/
|
|
12
|
+
export declare const rose300 = "#f586b1";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
15
|
+
*/
|
|
16
|
+
export declare const rose400 = "#f25192";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
19
|
+
*/
|
|
20
|
+
export declare const rose500 = "#ed176c";
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
23
|
+
*/
|
|
24
|
+
export declare const rose700 = "#c8185c";
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
27
|
+
*/
|
|
28
|
+
export declare const rose800 = "#9f1446";
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
31
|
+
*/
|
|
32
|
+
export declare const rose900 = "#4a1125";
|
|
@@ -0,0 +1,33 @@
|
|
|
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 rose50 = '#fde2ec';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
8
|
+
*/
|
|
9
|
+
export const rose200 = '#f9b6d0';
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
12
|
+
*/
|
|
13
|
+
export const rose300 = '#f586b1';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
16
|
+
*/
|
|
17
|
+
export const rose400 = '#f25192';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
20
|
+
*/
|
|
21
|
+
export const rose500 = '#ed176c';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
24
|
+
*/
|
|
25
|
+
export const rose700 = '#c8185c';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
28
|
+
*/
|
|
29
|
+
export const rose800 = '#9f1446';
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
32
|
+
*/
|
|
33
|
+
export const rose900 = '#4a1125';
|