@ape.swap/bonds-sdk 1.0.487 → 1.0.488
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/dist/theme/colors.d.ts +3 -2
- package/dist/theme/colors.js +3 -2
- package/package.json +1 -1
package/dist/theme/colors.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const colors: {
|
|
2
2
|
white1: string;
|
|
3
3
|
white2: string;
|
|
4
4
|
white3: string;
|
|
@@ -7,6 +7,7 @@ declare const abondColors: {
|
|
|
7
7
|
brandPrimary140: string;
|
|
8
8
|
navBar: string;
|
|
9
9
|
primaryButton: string;
|
|
10
|
+
primaryShade: string;
|
|
10
11
|
secondary: string;
|
|
11
12
|
footer: string;
|
|
12
13
|
success: string;
|
|
@@ -85,4 +86,4 @@ declare const abondColors: {
|
|
|
85
86
|
bg2: string;
|
|
86
87
|
progressBar: string;
|
|
87
88
|
};
|
|
88
|
-
export default
|
|
89
|
+
export default colors;
|
package/dist/theme/colors.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var
|
|
1
|
+
var colors = {
|
|
2
2
|
// main background gradients
|
|
3
3
|
white1: '#0E0D16',
|
|
4
4
|
white2: '#161420',
|
|
@@ -8,6 +8,7 @@ var abondColors = {
|
|
|
8
8
|
brandPrimary140: '#C1BDE7',
|
|
9
9
|
navBar: 'rgba(22, 20, 32, 0.8)',
|
|
10
10
|
primaryButton: '#6560C5',
|
|
11
|
+
primaryShade: '#514CA133',
|
|
11
12
|
secondary: '#E69275',
|
|
12
13
|
footer: '#000000',
|
|
13
14
|
success: '#38A611',
|
|
@@ -89,4 +90,4 @@ var abondColors = {
|
|
|
89
90
|
bg2: 'linear-gradient(180deg, #FEFCEC 27.58%, #EEDFC7 79.74%, #FEFAE0 131.91%, #F5ECDD 154.81%)',
|
|
90
91
|
progressBar: 'linear-gradient(90deg, #312E7A 0%, #5C4FAE 41.5%, #AD6568 74.5%, #AD6E66 100%)',
|
|
91
92
|
};
|
|
92
|
-
export default
|
|
93
|
+
export default colors;
|