gant-core 0.1.51 → 0.1.52
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/lib/cli/index.js +1 -1
- package/lib/index.js +8 -22
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/cli/index.js
CHANGED
|
@@ -66836,7 +66836,7 @@ const createCwdConfig = (cwd, name, vue) => {
|
|
|
66836
66836
|
};
|
|
66837
66837
|
|
|
66838
66838
|
var name = "gant-core";
|
|
66839
|
-
var version = "0.1.
|
|
66839
|
+
var version = "0.1.52";
|
|
66840
66840
|
var description = "";
|
|
66841
66841
|
var main = "lib/index.js";
|
|
66842
66842
|
var bin = {
|
package/lib/index.js
CHANGED
|
@@ -5904,32 +5904,18 @@ const generateNeutralColorPalettes = (bgBaseColor, textBaseColor) => {
|
|
|
5904
5904
|
colorTextBase,
|
|
5905
5905
|
colorText: getAlphaColor$1(colorTextBase, 0.85),
|
|
5906
5906
|
colorTextSecondary: getAlphaColor$1(colorTextBase, 0.65),
|
|
5907
|
-
colorTextTertiary: getAlphaColor$1(colorTextBase, 0.
|
|
5908
|
-
colorTextQuaternary: getAlphaColor$1(colorTextBase, 0.
|
|
5909
|
-
colorFill: getAlphaColor$1(colorTextBase, 0.
|
|
5910
|
-
colorFillSecondary: getAlphaColor$1(colorTextBase, 0.
|
|
5911
|
-
colorFillTertiary: getAlphaColor$1(colorTextBase, 0.
|
|
5912
|
-
colorFillQuaternary: getAlphaColor$1(colorTextBase, 0.
|
|
5907
|
+
colorTextTertiary: getAlphaColor$1(colorTextBase, 0.35),
|
|
5908
|
+
colorTextQuaternary: getAlphaColor$1(colorTextBase, 0.35),
|
|
5909
|
+
colorFill: getAlphaColor$1(colorTextBase, 0.18),
|
|
5910
|
+
colorFillSecondary: getAlphaColor$1(colorTextBase, 0.12),
|
|
5911
|
+
colorFillTertiary: getAlphaColor$1(colorTextBase, 0.08),
|
|
5912
|
+
colorFillQuaternary: getAlphaColor$1(colorTextBase, 0.04),
|
|
5913
5913
|
colorBgElevated: getLightenSolidColor(colorBgBase, 12),
|
|
5914
5914
|
colorBgContainer: getLightenSolidColor(colorBgBase, 8),
|
|
5915
5915
|
colorBgLayout: getLightenSolidColor(colorBgBase, 0),
|
|
5916
5916
|
colorBgSpotlight: getLightenSolidColor(colorBgBase, 26),
|
|
5917
|
-
colorBorder: getLightenSolidColor(colorBgBase,
|
|
5918
|
-
colorBorderSecondary: getLightenSolidColor(colorBgBase,
|
|
5919
|
-
// colorText: getAlphaColor(colorTextBase, 0.85),
|
|
5920
|
-
// colorTextSecondary: getAlphaColor(colorTextBase, 0.65),
|
|
5921
|
-
// colorTextTertiary: getAlphaColor(colorTextBase, 0.45),
|
|
5922
|
-
// colorTextQuaternary: getAlphaColor(colorTextBase, 0.25),
|
|
5923
|
-
// colorFill: getAlphaColor(colorTextBase, 0.18),
|
|
5924
|
-
// colorFillSecondary: getAlphaColor(colorTextBase, 0.12),
|
|
5925
|
-
// colorFillTertiary: getAlphaColor(colorTextBase, 0.08),
|
|
5926
|
-
// colorFillQuaternary: getAlphaColor(colorTextBase, 0.04),
|
|
5927
|
-
// colorBgElevated: getLightenSolidColor(colorBgBase, 12),
|
|
5928
|
-
// colorBgContainer: getLightenSolidColor(colorBgBase, 8),
|
|
5929
|
-
// colorBgLayout: getLightenSolidColor(colorBgBase, 0),
|
|
5930
|
-
// colorBgSpotlight: getLightenSolidColor(colorBgBase, 26),
|
|
5931
|
-
// colorBorder: getLightenSolidColor(colorBgBase, 26),
|
|
5932
|
-
// colorBorderSecondary: getLightenSolidColor(colorBgBase, 19),
|
|
5917
|
+
colorBorder: getLightenSolidColor(colorBgBase, 26),
|
|
5918
|
+
colorBorderSecondary: getLightenSolidColor(colorBgBase, 19),
|
|
5933
5919
|
};
|
|
5934
5920
|
};
|
|
5935
5921
|
|