Commit c77f7e62 authored by Vben's avatar Vben

fix(theme): make sure the menu style is correct, fix #382

parent 640a2c17
...@@ -49,6 +49,8 @@ export function generateColors({ ...@@ -49,6 +49,8 @@ export function generateColors({
.toRgbString(); .toRgbString();
}); });
const shortAlphaColors = alphaColors.map((item) => item.replace(/\s/g, '').replace(/0\./g, '.'));
const tinycolorLightens = arr const tinycolorLightens = arr
.map((_t, i) => { .map((_t, i) => {
return tinycolor(color) return tinycolor(color)
...@@ -64,5 +66,12 @@ export function generateColors({ ...@@ -64,5 +66,12 @@ export function generateColors({
.toHexString(); .toHexString();
}) })
.filter((item) => item !== '#000000'); .filter((item) => item !== '#000000');
return [...lightens, ...darkens, ...alphaColors, ...tinycolorDarkens, ...tinycolorLightens]; return [
...lightens,
...darkens,
...alphaColors,
...shortAlphaColors,
...tinycolorDarkens,
...tinycolorLightens,
].filter((item) => !item.includes('-'));
} }
...@@ -9112,10 +9112,10 @@ vite-plugin-svg-icons@^0.4.1: ...@@ -9112,10 +9112,10 @@ vite-plugin-svg-icons@^0.4.1:
svg-baker "1.7.0" svg-baker "1.7.0"
svgo "^2.3.0" svgo "^2.3.0"
vite-plugin-theme@^0.6.3: vite-plugin-theme@^0.6.4:
version "0.6.3" version "0.6.4"
resolved "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.6.3.tgz#77be00b039eb53452c9adfce7fd90e39a39a81ee" resolved "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.6.4.tgz#51376c328d708aa30ce56031ff4d7dd02cca613f"
integrity sha512-ffhnqCtCG/0Y7egfiF9upJRo5ZEKS6lQOQsSztqu8gA2/SGsNTm3lsmEWvARMeUAj/8aF5PYzAv5EikfhcPENQ== integrity sha512-GoXSDHjmDNU2R6bmuyr67VqI5dekGSejNMzlGTivMOmNl516464ATmV5NtoCDNiPJ1QYYnMRjZSQNfZ/Fxl7Qg==
dependencies: dependencies:
"@types/node" "^14.14.37" "@types/node" "^14.14.37"
"@types/tinycolor2" "^1.4.2" "@types/tinycolor2" "^1.4.2"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment