@cloudtower/eagle 0.27.91 → 0.27.92
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/cjs/stats1.html +1 -1
- package/dist/cjs/styles/token/color.js +3 -1
- package/dist/components.css +2348 -2348
- package/dist/esm/stats1.html +1 -1
- package/dist/esm/styles/token/color.js +3 -1
- package/dist/src/core/Avatar/avatar.type.d.ts +4 -0
- package/dist/src/styles/token/color.d.ts +2 -0
- package/dist/stories/docs/core/Avatar.stories.d.ts +4 -0
- package/dist/style.css +2321 -2321
- package/package.json +4 -4
|
@@ -267,7 +267,9 @@ const Color = {
|
|
|
267
267
|
"purple-a10-50": "#7E41FF1A"
|
|
268
268
|
},
|
|
269
269
|
gradient: {
|
|
270
|
-
loading: "linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%)"
|
|
270
|
+
loading: "linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%)",
|
|
271
|
+
"light-blue": "linear-gradient(180deg,rgba(0, 136, 255, 0.2) 0%,rgba(0, 136, 255, 0.6) 100%)",
|
|
272
|
+
"dark-blue": "radial-gradient(133.15% 133.15% at 4.69% 7.03%, #5BCAFF 0%, #06F 100%)"
|
|
271
273
|
}
|
|
272
274
|
};
|
|
273
275
|
|
|
@@ -268,5 +268,7 @@ export declare const Color: {
|
|
|
268
268
|
};
|
|
269
269
|
readonly gradient: {
|
|
270
270
|
readonly loading: "linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%)";
|
|
271
|
+
readonly "light-blue": "linear-gradient(180deg,rgba(0, 136, 255, 0.2) 0%,rgba(0, 136, 255, 0.6) 100%)";
|
|
272
|
+
readonly "dark-blue": "radial-gradient(133.15% 133.15% at 4.69% 7.03%, #5BCAFF 0%, #06F 100%)";
|
|
271
273
|
};
|
|
272
274
|
};
|