You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
840 B

5 years ago
// base color
$blue: #324157;
$light-blue: #3a71a8;
$red: #c03639;
5 years ago
$pink: #e65d6e;
$green: #30b08f;
$tiffany: #4ab7bd;
$yellow: #fec171;
5 years ago
$panGreen: #30b08f;
$backgroundColor: rgba(247, 247, 247, 90);
5 years ago
// sidebar
$menuText: #bfcbd9;
$menuActiveText: #409eff;
$subMenuActiveText: #f4f4f5; // https://github.com/ElemeFE/element/issues/12951
5 years ago
$menuBg: #304156;
$menuHover: #263445;
5 years ago
$subMenuBg: #1f2d3d;
$subMenuHover: #001528;
5 years ago
$sideBarWidth: 210px;
// 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;
}