@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,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 = '#2c0a2e';
6
+ /**
7
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
8
+ */
9
+ export const pink100 = '#48104b';
10
+ /**
11
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
12
+ */
13
+ export const pink300 = '#8f248f';
14
+ /**
15
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
16
+ */
17
+ export const pink500 = '#c933d1';
18
+ /**
19
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
20
+ */
21
+ export const pink700 = '#f495f9';
22
+ /**
23
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
24
+ */
25
+ export const pink900 = '#fccff9';
26
+ /**
27
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
28
+ */
29
+ export const pink950 = '#fde6fb';
@@ -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 = "#2f0052";
5
+ /**
6
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
7
+ */
8
+ export declare const purple75 = "#35005c";
9
+ /**
10
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
11
+ */
12
+ export declare const purple100 = "#48007a";
13
+ /**
14
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
15
+ */
16
+ export declare const purple200 = "#550091";
17
+ /**
18
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
19
+ */
20
+ export declare const purple300 = "#7415c1";
21
+ /**
22
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
23
+ */
24
+ export declare const purple400 = "#8f23e7";
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 = "#b46ef7";
33
+ /**
34
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
35
+ */
36
+ export declare const purple700 = "#c08dfc";
37
+ /**
38
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
39
+ */
40
+ export declare const purple800 = "#cfadff";
41
+ /**
42
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
43
+ */
44
+ export declare const purple900 = "#e5d7fe";
45
+ /**
46
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
47
+ */
48
+ export declare const purple1000 = "#f1ebfe";
@@ -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 = '#2f0052';
6
+ /**
7
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
8
+ */
9
+ export const purple75 = '#35005c';
10
+ /**
11
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
12
+ */
13
+ export const purple100 = '#48007a';
14
+ /**
15
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
16
+ */
17
+ export const purple200 = '#550091';
18
+ /**
19
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
20
+ */
21
+ export const purple300 = '#7415c1';
22
+ /**
23
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
24
+ */
25
+ export const purple400 = '#8f23e7';
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 = '#b46ef7';
34
+ /**
35
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
36
+ */
37
+ export const purple700 = '#c08dfc';
38
+ /**
39
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
40
+ */
41
+ export const purple800 = '#cfadff';
42
+ /**
43
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
44
+ */
45
+ export const purple900 = '#e5d7fe';
46
+ /**
47
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
48
+ */
49
+ export const purple1000 = '#f1ebfe';
@@ -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 = "#3b1216";
5
+ /**
6
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
7
+ */
8
+ export declare const red100 = "#581a20";
9
+ /**
10
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
11
+ */
12
+ export declare const red200 = "#721d25";
13
+ /**
14
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
15
+ */
16
+ export declare const red300 = "#891e27";
17
+ /**
18
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
19
+ */
20
+ export declare const red400 = "#bd1f2c";
21
+ /**
22
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
23
+ */
24
+ export declare const red500 = "#f24550";
25
+ /**
26
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
27
+ */
28
+ export declare const red600 = "#f2636a";
29
+ /**
30
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
31
+ */
32
+ export declare const red700 = "#f58e92";
33
+ /**
34
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
35
+ */
36
+ export declare const red800 = "#f9aeb3";
37
+ /**
38
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
39
+ */
40
+ export declare const red900 = "#ffebeb";
@@ -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 = '#3b1216';
6
+ /**
7
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
8
+ */
9
+ export const red100 = '#581a20';
10
+ /**
11
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
12
+ */
13
+ export const red200 = '#721d25';
14
+ /**
15
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
16
+ */
17
+ export const red300 = '#891e27';
18
+ /**
19
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
20
+ */
21
+ export const red400 = '#bd1f2c';
22
+ /**
23
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
24
+ */
25
+ export const red500 = '#f24550';
26
+ /**
27
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
28
+ */
29
+ export const red600 = '#f2636a';
30
+ /**
31
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
32
+ */
33
+ export const red700 = '#f58e92';
34
+ /**
35
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
36
+ */
37
+ export const red800 = '#f9aeb3';
38
+ /**
39
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
40
+ */
41
+ export const red900 = '#ffebeb';
@@ -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 rose100 = "#45081e";
5
+ /**
6
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
7
+ */
8
+ export declare const rose200 = "#710e32";
9
+ /**
10
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
11
+ */
12
+ export declare const rose500 = "#e34584";
13
+ /**
14
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
15
+ */
16
+ export declare const rose600 = "#f25192";
17
+ /**
18
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
19
+ */
20
+ export declare const rose700 = "#f586b1";
21
+ /**
22
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
23
+ */
24
+ export declare const rose800 = "#f9b6d0";
25
+ /**
26
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
27
+ */
28
+ export declare const rose950 = "#fde2ec";
@@ -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 rose100 = '#45081e';
6
+ /**
7
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
8
+ */
9
+ export const rose200 = '#710e32';
10
+ /**
11
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
12
+ */
13
+ export const rose500 = '#e34584';
14
+ /**
15
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
16
+ */
17
+ export const rose600 = '#f25192';
18
+ /**
19
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
20
+ */
21
+ export const rose700 = '#f586b1';
22
+ /**
23
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
24
+ */
25
+ export const rose800 = '#f9b6d0';
26
+ /**
27
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
28
+ */
29
+ export const rose950 = '#fde2ec';
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
3
+ */
4
+ export * as colors from './light';
5
+ /**
6
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
7
+ */
8
+ export * as colorsDark from './dark';
9
+ /**
10
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
11
+ */
12
+ export * as colorsCommon from './common';
@@ -0,0 +1,13 @@
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 * as colors from './light';
6
+ /**
7
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
8
+ */
9
+ export * as colorsDark from './dark';
10
+ /**
11
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
12
+ */
13
+ export * as colorsCommon from './common';
@@ -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 apple50 = "#e5f9ed";
5
+ /**
6
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
7
+ */
8
+ export declare const apple200 = "#c1f0d3";
9
+ /**
10
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
11
+ */
12
+ export declare const apple300 = "#96e6b7";
13
+ /**
14
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
15
+ */
16
+ export declare const apple400 = "#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 = "#10b259";
21
+ /**
22
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
23
+ */
24
+ export declare const apple800 = "#087a3c";
25
+ /**
26
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
27
+ */
28
+ export declare const apple900 = "#03361b";
@@ -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 apple50 = '#e5f9ed';
6
+ /**
7
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
8
+ */
9
+ export const apple200 = '#c1f0d3';
10
+ /**
11
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
12
+ */
13
+ export const apple300 = '#96e6b7';
14
+ /**
15
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
16
+ */
17
+ export const apple400 = '#62dd99';
18
+ /**
19
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
20
+ */
21
+ export const apple700 = '#10b259';
22
+ /**
23
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
24
+ */
25
+ export const apple800 = '#087a3c';
26
+ /**
27
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
28
+ */
29
+ export const apple900 = '#03361b';
@@ -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 = "#ecf4fe";
5
+ /**
6
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
7
+ */
8
+ export declare const cyan75 = "#e5f1ff";
9
+ /**
10
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
11
+ */
12
+ export declare const cyan100 = "#cce0ff";
13
+ /**
14
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
15
+ */
16
+ export declare const cyan200 = "#a6c8fc";
17
+ /**
18
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
19
+ */
20
+ export declare const cyan300 = "#8fbaff";
21
+ /**
22
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
23
+ */
24
+ export declare const cyan400 = "#75a7fd";
25
+ /**
26
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
27
+ */
28
+ export declare const cyan500 = "#4789fa";
29
+ /**
30
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
31
+ */
32
+ export declare const cyan600 = "#0550d1";
33
+ /**
34
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
35
+ */
36
+ export declare const cyan700 = "#003a9e";
37
+ /**
38
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
39
+ */
40
+ export declare const cyan800 = "#002b75";
41
+ /**
42
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
43
+ */
44
+ export declare const cyan900 = "#001e52";
45
+ /**
46
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
47
+ */
48
+ export declare const cyan1000 = "#001333";
@@ -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 = '#ecf4fe';
6
+ /**
7
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
8
+ */
9
+ export const cyan75 = '#e5f1ff';
10
+ /**
11
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
12
+ */
13
+ export const cyan100 = '#cce0ff';
14
+ /**
15
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
16
+ */
17
+ export const cyan200 = '#a6c8fc';
18
+ /**
19
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
20
+ */
21
+ export const cyan300 = '#8fbaff';
22
+ /**
23
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
24
+ */
25
+ export const cyan400 = '#75a7fd';
26
+ /**
27
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
28
+ */
29
+ export const cyan500 = '#4789fa';
30
+ /**
31
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
32
+ */
33
+ export const cyan600 = '#0550d1';
34
+ /**
35
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
36
+ */
37
+ export const cyan700 = '#003a9e';
38
+ /**
39
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
40
+ */
41
+ export const cyan800 = '#002b75';
42
+ /**
43
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
44
+ */
45
+ export const cyan900 = '#001e52';
46
+ /**
47
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
48
+ */
49
+ export const cyan1000 = '#001333';
@@ -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 = "#fef9e6";
5
+ /**
6
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
7
+ */
8
+ export declare const gold75 = "#fef6dc";
9
+ /**
10
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
11
+ */
12
+ export declare const gold100 = "#fff1d1";
13
+ /**
14
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
15
+ */
16
+ export declare const gold200 = "#ffe6a8";
17
+ /**
18
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
19
+ */
20
+ export declare const gold300 = "#ffd76f";
21
+ /**
22
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
23
+ */
24
+ export declare const gold400 = "#f7b51d";
25
+ /**
26
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
27
+ */
28
+ export declare const gold500 = "#c77800";
29
+ /**
30
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
31
+ */
32
+ export declare const gold600 = "#ac6406";
33
+ /**
34
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
35
+ */
36
+ export declare const gold700 = "#894e16";
37
+ /**
38
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
39
+ */
40
+ export declare const gold800 = "#6e3311";
41
+ /**
42
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
43
+ */
44
+ export declare const gold900 = "#52210c";
@@ -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 = '#fef9e6';
6
+ /**
7
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
8
+ */
9
+ export const gold75 = '#fef6dc';
10
+ /**
11
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
12
+ */
13
+ export const gold100 = '#fff1d1';
14
+ /**
15
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
16
+ */
17
+ export const gold200 = '#ffe6a8';
18
+ /**
19
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
20
+ */
21
+ export const gold300 = '#ffd76f';
22
+ /**
23
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
24
+ */
25
+ export const gold400 = '#f7b51d';
26
+ /**
27
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
28
+ */
29
+ export const gold500 = '#c77800';
30
+ /**
31
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
32
+ */
33
+ export const gold600 = '#ac6406';
34
+ /**
35
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
36
+ */
37
+ export const gold700 = '#894e16';
38
+ /**
39
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
40
+ */
41
+ export const gold800 = '#6e3311';
42
+ /**
43
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
44
+ */
45
+ export const gold900 = '#52210c';
@@ -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";