@imj_media/ui 1.1.0 → 1.1.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.
- package/README.md +20 -20
- package/dist/index.css +1 -1
- package/dist/index.esm.js +6675 -9597
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/shared/const/colors.d.ts +13 -13
- package/package.json +1 -1
|
@@ -89,19 +89,19 @@ export declare const COLORS_PROPS: {
|
|
|
89
89
|
};
|
|
90
90
|
};
|
|
91
91
|
export declare const COLORS_CSS_VARS: {
|
|
92
|
-
readonly blue_soft: "var(--
|
|
93
|
-
readonly blue: "var(--
|
|
94
|
-
readonly neutral_soft: "var(--
|
|
95
|
-
readonly neutral: "var(--
|
|
96
|
-
readonly red_soft: "var(--
|
|
97
|
-
readonly red: "var(--
|
|
98
|
-
readonly green_soft: "var(--
|
|
99
|
-
readonly green: "var(--
|
|
100
|
-
readonly yellow_soft: "var(--
|
|
101
|
-
readonly yellow: "var(--
|
|
102
|
-
readonly yellow_dark: "var(--
|
|
103
|
-
readonly white: "var(--
|
|
104
|
-
readonly black: "var(--
|
|
92
|
+
readonly blue_soft: "var(--ds-color-blue-500)";
|
|
93
|
+
readonly blue: "var(--ds-color-blue-700)";
|
|
94
|
+
readonly neutral_soft: "var(--ds-color-neutral-500)";
|
|
95
|
+
readonly neutral: "var(--ds-color-neutral-700)";
|
|
96
|
+
readonly red_soft: "var(--ds-color-red-500)";
|
|
97
|
+
readonly red: "var(--ds-color-red-700)";
|
|
98
|
+
readonly green_soft: "var(--ds-color-green-500)";
|
|
99
|
+
readonly green: "var(--ds-color-green-700)";
|
|
100
|
+
readonly yellow_soft: "var(--ds-color-yellow-500)";
|
|
101
|
+
readonly yellow: "var(--ds-color-yellow-700)";
|
|
102
|
+
readonly yellow_dark: "var(--ds-color-yellow-900)";
|
|
103
|
+
readonly white: "var(--ds-color-white)";
|
|
104
|
+
readonly black: "var(--ds-color-black)";
|
|
105
105
|
readonly current: "currentColor";
|
|
106
106
|
};
|
|
107
107
|
//# sourceMappingURL=colors.d.ts.map
|