@mexi/uikit 0.0.4 → 0.0.5
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/index.cjs.js +8 -0
- package/dist/index.esm.js +8 -0
- package/dist/theme/colors.d.ts +8 -0
- package/dist/theme/types.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2573,6 +2573,14 @@ var additionalColors = {
|
|
|
2573
2573
|
gold: "#FFC700",
|
|
2574
2574
|
silver: "#B2B2B2",
|
|
2575
2575
|
bronze: "#E7974D",
|
|
2576
|
+
commonTopEdge: "#ACECFF",
|
|
2577
|
+
commonBottomEdge: "#ACECFF",
|
|
2578
|
+
epicTopEdge: "#FDBDFF",
|
|
2579
|
+
epicBottomEdge: "#FDBDFF",
|
|
2580
|
+
legendaryTopEdge: "#FFE294",
|
|
2581
|
+
legendaryBottomEdge: "#FFE294",
|
|
2582
|
+
motherTopEdge: "#A4FFD1",
|
|
2583
|
+
motherBottomEdge: "#A4FFD1",
|
|
2576
2584
|
};
|
|
2577
2585
|
var lightColors = __assign(__assign(__assign({}, baseColors), additionalColors), { background: "#FAF9FA", backgroundDisabled: "#E9EAEB", backgroundAlt: "#FFFFFF", backgroundAlt2: "rgba(255, 255, 255, 0.7)", cardBorder: "#E7E3EB", contrast: "#191326", dropdown: "#F6F6F6", dropdownDeep: "#EEEEEE", invertedContrast: "#FFFFFF", input: "#eeeaf4", inputSecondary: "#d7caec", tertiary: "#EFF4F5", text: "#280D5F", textDisabled: "#BDC2C4", textSubtle: "#7A6EAA", disabled: "#E9EAEB", gradients: {
|
|
2578
2586
|
bubblegum: "linear-gradient(139.73deg, #E5FDFF 0%, #F3EFFF 100%)",
|
package/dist/index.esm.js
CHANGED
|
@@ -2539,6 +2539,14 @@ var additionalColors = {
|
|
|
2539
2539
|
gold: "#FFC700",
|
|
2540
2540
|
silver: "#B2B2B2",
|
|
2541
2541
|
bronze: "#E7974D",
|
|
2542
|
+
commonTopEdge: "#ACECFF",
|
|
2543
|
+
commonBottomEdge: "#ACECFF",
|
|
2544
|
+
epicTopEdge: "#FDBDFF",
|
|
2545
|
+
epicBottomEdge: "#FDBDFF",
|
|
2546
|
+
legendaryTopEdge: "#FFE294",
|
|
2547
|
+
legendaryBottomEdge: "#FFE294",
|
|
2548
|
+
motherTopEdge: "#A4FFD1",
|
|
2549
|
+
motherBottomEdge: "#A4FFD1",
|
|
2542
2550
|
};
|
|
2543
2551
|
var lightColors = __assign(__assign(__assign({}, baseColors), additionalColors), { background: "#FAF9FA", backgroundDisabled: "#E9EAEB", backgroundAlt: "#FFFFFF", backgroundAlt2: "rgba(255, 255, 255, 0.7)", cardBorder: "#E7E3EB", contrast: "#191326", dropdown: "#F6F6F6", dropdownDeep: "#EEEEEE", invertedContrast: "#FFFFFF", input: "#eeeaf4", inputSecondary: "#d7caec", tertiary: "#EFF4F5", text: "#280D5F", textDisabled: "#BDC2C4", textSubtle: "#7A6EAA", disabled: "#E9EAEB", gradients: {
|
|
2544
2552
|
bubblegum: "linear-gradient(139.73deg, #E5FDFF 0%, #F3EFFF 100%)",
|
package/dist/theme/colors.d.ts
CHANGED
|
@@ -14,6 +14,14 @@ export declare const additionalColors: {
|
|
|
14
14
|
gold: string;
|
|
15
15
|
silver: string;
|
|
16
16
|
bronze: string;
|
|
17
|
+
commonTopEdge: string;
|
|
18
|
+
commonBottomEdge: string;
|
|
19
|
+
epicTopEdge: string;
|
|
20
|
+
epicBottomEdge: string;
|
|
21
|
+
legendaryTopEdge: string;
|
|
22
|
+
legendaryBottomEdge: string;
|
|
23
|
+
motherTopEdge: string;
|
|
24
|
+
motherBottomEdge: string;
|
|
17
25
|
};
|
|
18
26
|
export declare const lightColors: Colors;
|
|
19
27
|
export declare const darkColors: Colors;
|
package/dist/theme/types.d.ts
CHANGED
|
@@ -64,6 +64,14 @@ export declare type Colors = {
|
|
|
64
64
|
silver: string;
|
|
65
65
|
bronze: string;
|
|
66
66
|
menuText: string;
|
|
67
|
+
commonTopEdge: string;
|
|
68
|
+
commonBottomEdge: string;
|
|
69
|
+
epicTopEdge: string;
|
|
70
|
+
epicBottomEdge: string;
|
|
71
|
+
legendaryTopEdge: string;
|
|
72
|
+
legendaryBottomEdge: string;
|
|
73
|
+
motherTopEdge: string;
|
|
74
|
+
motherBottomEdge: string;
|
|
67
75
|
};
|
|
68
76
|
export declare type ZIndices = {
|
|
69
77
|
dropdown: number;
|