forked from liweijie/education
36 lines
963 B
SCSS
36 lines
963 B
SCSS
// base color
|
|
$blue:#324157;
|
|
$light-blue:#3A71A8;
|
|
$red:#C03639;
|
|
$pink: #E65D6E;
|
|
$green: #30B08F;
|
|
$tiffany: #4AB7BD;
|
|
$yellow:#FEC171;
|
|
$panGreen: #30B08F;
|
|
|
|
// 默认菜单主题风格(学院绿)
|
|
$base-menu-color: #dcebe6;
|
|
$base-menu-color-active: #ffffff;
|
|
$base-menu-background: #0b5f4a;
|
|
|
|
$base-menu-light-color:rgba(0,0,0,.70);
|
|
$base-menu-light-background:#ffffff;
|
|
|
|
$base-sub-menu-background: #084c3f;
|
|
$base-sub-menu-hover: rgba(255,255,255,.10);
|
|
|
|
$base-sidebar-width: 240px;
|
|
|
|
// the :export directive is the magic sauce for webpack
|
|
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
|
|
:export {
|
|
menuColor: $base-menu-color;
|
|
menuLightColor: $base-menu-light-color;
|
|
menuColorActive: $base-menu-color-active;
|
|
menuBackground: $base-menu-background;
|
|
menuLightBackground: $base-menu-light-background;
|
|
subMenuBackground: $base-sub-menu-background;
|
|
subMenuHover: $base-sub-menu-hover;
|
|
sideBarWidth: $base-sidebar-width;
|
|
}
|