Files
wms_base/mes/qd/src/assets/styles/variables.scss

49 lines
1.2 KiB
SCSS
Raw Normal View History

2022-06-27 19:25:41 +08:00
// base color
$blue:#324157;
$light-blue:#3A71A8;
$red:#C03639;
$pink: #E65D6E;
$green: #30B08F;
$tiffany: #4AB7BD;
$yellow:#FEC171;
$panGreen: #30B08F;
2023-03-17 09:27:13 +08:00
$base-logo-title-color: #ffffff;
$base-logo-light-title-color: #001529;
$base-menu-light-background:#ffffff;
2022-06-27 19:25:41 +08:00
// sidebar
$menuText:#bfcbd9;
$menuActiveText:#409EFF;
$subMenuActiveText:#f4f4f5; // https://github.com/ElemeFE/element/issues/12951
2023-03-17 09:27:13 +08:00
$menuBg:#304156; //https://cloud.tencent.com/developer/article/1753773
2022-06-27 19:25:41 +08:00
$menuHover:#263445;
2023-03-17 09:27:13 +08:00
$base-menu-light-color:rgba(0,0,0,.70);
2022-06-27 19:25:41 +08:00
$subMenuBg:#1f2d3d;
$subMenuHover:#001528;
$sideBarWidth: 205px;
// the :export directive is the magic sauce for webpack
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
:export {
menuText: $menuText;
menuActiveText: $menuActiveText;
subMenuActiveText: $subMenuActiveText;
menuBg: $menuBg;
2023-03-17 09:27:13 +08:00
menuLightBackground: $base-menu-light-background;
menuLightColor: $base-menu-light-color;
2022-06-27 19:25:41 +08:00
menuHover: $menuHover;
subMenuBg: $subMenuBg;
subMenuHover: $subMenuHover;
sideBarWidth: $sideBarWidth;
2023-03-17 09:27:13 +08:00
logoTitleColor: $base-logo-title-color;
logoLightTitleColor: $base-logo-light-title-color
2022-06-27 19:25:41 +08:00
}
2023-03-17 09:27:13 +08:00
$base-sidebar-width: 200px;