// sidebar
$menuText: #bfcbd9;
$menuActiveText: #409EFF;
$subMenuActiveText: #f4f4f5; //https://github.com/ElemeFE/element/issues/12951

$menuBg: #304156;
//$menuHover: #263445;
//$menuHover: rgba(44, 63, 68, 0.75);
$menuHover: rgba(105, 115, 130, 0.8);

$subMenuBg: #1f2d3d;
$subMenuHover: #001528;

$sideBarWidth: 210px;

$sideBarWidthIsMenuHorizontal: 0; //当菜单横屏时的侧边栏高度


$menuBgLeftBackgroundColorValue: #f8f8fa; //当菜单横屏时的侧边栏高度

// 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;
  menuHover: $menuHover;
  subMenuBg: $subMenuBg;
  subMenuHover: $subMenuHover;
  sideBarWidth: $sideBarWidth;
  sideBarWidthIsMenuHorizontal:$sideBarWidthIsMenuHorizontal;
  menuBgLeftBackgroundColorValue:$menuBgLeftBackgroundColorValue;
}
