@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.
Files changed (85) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/CHANGELOG.md +6 -0
  4. package/build/core/themes.d.ts +482 -0
  5. package/build/core/themes.js +31 -0
  6. package/build/legacyTokens/common/brand.d.ts +16 -0
  7. package/build/legacyTokens/common/brand.js +17 -0
  8. package/build/legacyTokens/common/index.d.ts +8 -0
  9. package/build/legacyTokens/common/index.js +9 -0
  10. package/build/legacyTokens/common/service.d.ts +20 -0
  11. package/build/legacyTokens/common/service.js +21 -0
  12. package/build/legacyTokens/dark/apple.d.ts +28 -0
  13. package/build/legacyTokens/dark/apple.js +29 -0
  14. package/build/legacyTokens/dark/cyan.d.ts +48 -0
  15. package/build/legacyTokens/dark/cyan.js +49 -0
  16. package/build/legacyTokens/dark/gold.d.ts +44 -0
  17. package/build/legacyTokens/dark/gold.js +45 -0
  18. package/build/legacyTokens/dark/grape.d.ts +28 -0
  19. package/build/legacyTokens/dark/grape.js +29 -0
  20. package/build/legacyTokens/dark/green.d.ts +40 -0
  21. package/build/legacyTokens/dark/green.js +41 -0
  22. package/build/legacyTokens/dark/grey.d.ts +60 -0
  23. package/build/legacyTokens/dark/grey.js +61 -0
  24. package/build/legacyTokens/dark/index.d.ts +40 -0
  25. package/build/legacyTokens/dark/index.js +41 -0
  26. package/build/legacyTokens/dark/pink.d.ts +28 -0
  27. package/build/legacyTokens/dark/pink.js +29 -0
  28. package/build/legacyTokens/dark/purple.d.ts +48 -0
  29. package/build/legacyTokens/dark/purple.js +49 -0
  30. package/build/legacyTokens/dark/red.d.ts +40 -0
  31. package/build/legacyTokens/dark/red.js +41 -0
  32. package/build/legacyTokens/dark/rose.d.ts +28 -0
  33. package/build/legacyTokens/dark/rose.js +29 -0
  34. package/build/legacyTokens/index.d.ts +12 -0
  35. package/build/legacyTokens/index.js +13 -0
  36. package/build/legacyTokens/light/apple.d.ts +28 -0
  37. package/build/legacyTokens/light/apple.js +29 -0
  38. package/build/legacyTokens/light/cyan.d.ts +48 -0
  39. package/build/legacyTokens/light/cyan.js +49 -0
  40. package/build/legacyTokens/light/gold.d.ts +44 -0
  41. package/build/legacyTokens/light/gold.js +45 -0
  42. package/build/legacyTokens/light/grape.d.ts +28 -0
  43. package/build/legacyTokens/light/grape.js +29 -0
  44. package/build/legacyTokens/light/green.d.ts +40 -0
  45. package/build/legacyTokens/light/green.js +41 -0
  46. package/build/legacyTokens/light/grey.d.ts +60 -0
  47. package/build/legacyTokens/light/grey.js +61 -0
  48. package/build/legacyTokens/light/index.d.ts +40 -0
  49. package/build/legacyTokens/light/index.js +41 -0
  50. package/build/legacyTokens/light/pink.d.ts +28 -0
  51. package/build/legacyTokens/light/pink.js +29 -0
  52. package/build/legacyTokens/light/purple.d.ts +48 -0
  53. package/build/legacyTokens/light/purple.js +49 -0
  54. package/build/legacyTokens/light/red.d.ts +40 -0
  55. package/build/legacyTokens/light/red.js +41 -0
  56. package/build/legacyTokens/light/rose.d.ts +32 -0
  57. package/build/legacyTokens/light/rose.js +33 -0
  58. package/package.json +2 -2
  59. package/src/core/themes.ts +31 -0
  60. package/src/legacyTokens/common/brand.ts +18 -0
  61. package/src/legacyTokens/common/index.ts +10 -0
  62. package/src/legacyTokens/common/service.ts +22 -0
  63. package/src/legacyTokens/dark/apple.ts +30 -0
  64. package/src/legacyTokens/dark/cyan.ts +50 -0
  65. package/src/legacyTokens/dark/gold.ts +46 -0
  66. package/src/legacyTokens/dark/grape.ts +30 -0
  67. package/src/legacyTokens/dark/green.ts +42 -0
  68. package/src/legacyTokens/dark/grey.ts +62 -0
  69. package/src/legacyTokens/dark/index.ts +42 -0
  70. package/src/legacyTokens/dark/pink.ts +30 -0
  71. package/src/legacyTokens/dark/purple.ts +50 -0
  72. package/src/legacyTokens/dark/red.ts +42 -0
  73. package/src/legacyTokens/dark/rose.ts +30 -0
  74. package/src/legacyTokens/index.ts +14 -0
  75. package/src/legacyTokens/light/apple.ts +30 -0
  76. package/src/legacyTokens/light/cyan.ts +50 -0
  77. package/src/legacyTokens/light/gold.ts +46 -0
  78. package/src/legacyTokens/light/grape.ts +30 -0
  79. package/src/legacyTokens/light/green.ts +42 -0
  80. package/src/legacyTokens/light/grey.ts +62 -0
  81. package/src/legacyTokens/light/index.ts +42 -0
  82. package/src/legacyTokens/light/pink.ts +30 -0
  83. package/src/legacyTokens/light/purple.ts +50 -0
  84. package/src/legacyTokens/light/red.ts +42 -0
  85. package/src/legacyTokens/light/rose.ts +34 -0
@@ -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';
@@ -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 './gold';
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 './cyan';
17
+ /**
18
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
19
+ */
20
+ export * from './red';
21
+ /**
22
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
23
+ */
24
+ export * from './green';
25
+ /**
26
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
27
+ */
28
+ export * from './apple';
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 './gold';
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 './cyan';
18
+ /**
19
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
20
+ */
21
+ export * from './red';
22
+ /**
23
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
24
+ */
25
+ export * from './green';
26
+ /**
27
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
28
+ */
29
+ export * from './apple';
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 = "#2c0a2e";
5
+ /**
6
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
7
+ */
8
+ export declare const pink100 = "#48104b";
9
+ /**
10
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
11
+ */
12
+ export declare const pink300 = "#8f248f";
13
+ /**
14
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
15
+ */
16
+ export declare const pink500 = "#c933d1";
17
+ /**
18
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
19
+ */
20
+ export declare const pink700 = "#f495f9";
21
+ /**
22
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
23
+ */
24
+ export declare const pink900 = "#fccff9";
25
+ /**
26
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
27
+ */
28
+ export declare const pink950 = "#fde6fb";