fix: color name

This commit is contained in:
xiaoxian521 2021-12-07 14:27:08 +08:00
parent 9e7d78fd80
commit d6a358e851
11 changed files with 19 additions and 19 deletions

View File

@ -29,23 +29,23 @@ const instanceConfig =
getCurrentInstance().appContext.app.config.globalProperties.$config;
let themeColors = ref<Array<themeColorsType>>([
//
//
{ rgb: "27, 42, 71", themeColor: "default" },
//
//
{ rgb: "255, 255, 255", themeColor: "light" },
//
//
{ rgb: "245, 34, 45", themeColor: "dusk" },
//
//
{ rgb: "250, 84, 28", themeColor: "volcano" },
//
//
{ rgb: "250, 219, 20", themeColor: "yellow" },
//
// 绿
{ rgb: "19, 194, 194", themeColor: "mingQing" },
// 绿
// 绿
{ rgb: "82, 196, 26", themeColor: "auroraGreen" },
//
//
{ rgb: "235, 47, 150", themeColor: "pink" },
//
//
{ rgb: "114, 46, 209", themeColor: "saucePurple" }
]);

View File

@ -1,4 +1,4 @@
/* 极光绿 */
/* 酸橙绿 */
$subMenuActiveText: #fff;
$menuBg: #0b1e15;
$menuHover: #60ac80;

View File

@ -1,5 +1,5 @@
/**
* 暗雅默认
* 道奇蓝默认
* 此scss变量文件作为multipleScopeVars去编译时会自动移除!default以达到变量提升
* 同时此scss变量文件作为默认主题变量文件被其他.scss通过 @import 必需 !default
*/

View File

@ -1,4 +1,4 @@
/* 薄暮 */
/* 猩红色 */
$subMenuActiveText: #fff;
$menuBg: #2a0608;
$menuHover: #e13c39;

View File

@ -1,4 +1,4 @@
/* 亮 */
/* 白色 */
$subMenuActiveText: #409eff;
$menuBg: #fff;
$menuHover: #e0ebf6;

View File

@ -1,4 +1,4 @@
/* 明青 */
/* 绿宝石 */
$subMenuActiveText: #fff;
$menuBg: #032121;
$menuHover: #59bfc1;

View File

@ -1,4 +1,4 @@
/* 粉红 */
/* 深粉色 */
$subMenuActiveText: #fff;
$menuBg: #28081a;
$menuHover: #d84493;

View File

@ -1,4 +1,4 @@
/* 酱紫 */
/* 深紫罗兰色 */
$subMenuActiveText: #fff;
$menuBg: #130824;
$menuHover: #693ac9;

View File

@ -1,4 +1,4 @@
/* 火山 */
/* 橙红色 */
$subMenuActiveText: #fff;
$menuBg: #2b0e05;
$menuHover: #e85f33;

View File

@ -1,4 +1,4 @@
/* 橘黄 */
/* 金色 */
$subMenuActiveText: #d25f00;
$menuBg: #2b2503;
$menuHover: #f6da4d;

View File

@ -12,6 +12,7 @@ import NProgress from "/@/utils/progress";
import { split, uniqBy } from "lodash-es";
import { useTimeoutFn } from "@vueuse/core";
import { RouteConfigs } from "/@/layout/types";
import { transformI18n } from "/@/plugins/i18n";
import { storageSession, storageLocal } from "/@/utils/storage";
import { usePermissionStoreHook } from "/@/store/modules/permission";
import { useMultiTagsStoreHook } from "/@/store/modules/multiTags";
@ -30,7 +31,6 @@ import componentsRouter from "./modules/components";
// 动态路由
import { getAsyncRoutes } from "/@/api/routes";
import { transformI18n } from "/@/plugins/i18n";
// https://cn.vitejs.dev/guide/features.html#glob-import
const modulesRoutes = import.meta.glob("/src/views/*/*/*.vue");