@utilitywarehouse/hearth-react-native 0.4.0 → 0.4.1
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 +6 -0
- 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/package.json +2 -2
- 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
|
@@ -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';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utilitywarehouse/hearth-react-native",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Utility Warehouse React Native UI library",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@utilitywarehouse/hearth-fonts": "^0.0.3",
|
|
57
57
|
"@utilitywarehouse/hearth-react-icons": "^0.5.0",
|
|
58
58
|
"@utilitywarehouse/hearth-react-native-icons": "^0.5.0",
|
|
59
|
-
"@utilitywarehouse/hearth-tokens": "^0.1.
|
|
59
|
+
"@utilitywarehouse/hearth-tokens": "^0.1.1"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"@gorhom/bottom-sheet": "^5.0.0",
|
package/src/core/themes.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DimensionValue, Platform } from 'react-native';
|
|
2
|
+
import { colors, colorsCommon, colorsDark } from '../legacyTokens';
|
|
2
3
|
import {
|
|
3
4
|
borderRadius,
|
|
4
5
|
borderWidth,
|
|
@@ -280,6 +281,15 @@ export const lightTheme = {
|
|
|
280
281
|
colorMode: 'light',
|
|
281
282
|
isLight: true,
|
|
282
283
|
isDark: false,
|
|
284
|
+
/**
|
|
285
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility
|
|
286
|
+
*/
|
|
287
|
+
colors: {
|
|
288
|
+
...colors,
|
|
289
|
+
...colorsCommon,
|
|
290
|
+
white: '#ffffff',
|
|
291
|
+
black: '#000000',
|
|
292
|
+
},
|
|
283
293
|
color: {
|
|
284
294
|
...restOfColors,
|
|
285
295
|
...light,
|
|
@@ -305,10 +315,31 @@ export const darkTheme = {
|
|
|
305
315
|
colorMode: 'dark',
|
|
306
316
|
isLight: false,
|
|
307
317
|
isDark: true,
|
|
318
|
+
/**
|
|
319
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
320
|
+
*/
|
|
321
|
+
colors: {
|
|
322
|
+
...colorsDark,
|
|
323
|
+
...colorsCommon,
|
|
324
|
+
/**
|
|
325
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
326
|
+
*/
|
|
327
|
+
white: '#ffffff',
|
|
328
|
+
/**
|
|
329
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
330
|
+
*/
|
|
331
|
+
black: '#000000',
|
|
332
|
+
},
|
|
308
333
|
color: {
|
|
309
334
|
...restOfColors,
|
|
310
335
|
...dark,
|
|
336
|
+
/**
|
|
337
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
338
|
+
*/
|
|
311
339
|
white: '#ffffff',
|
|
340
|
+
/**
|
|
341
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
342
|
+
*/
|
|
312
343
|
black: '#000000',
|
|
313
344
|
},
|
|
314
345
|
components: components.dark,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
5
|
+
*/
|
|
6
|
+
export const brandMidnight = '#1e0a46';
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
9
|
+
*/
|
|
10
|
+
export const brandWhite = '#ffffff';
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
13
|
+
*/
|
|
14
|
+
export const brandPink = '#f495f9';
|
|
15
|
+
/**
|
|
16
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
17
|
+
*/
|
|
18
|
+
export const brandPrimaryPurple = '#550091';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
5
|
+
*/
|
|
6
|
+
export * from './brand';
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated This will be removed in the next major version. This is kept for backward compatibility.
|
|
9
|
+
*/
|
|
10
|
+
export * from './service';
|