Blame view

src/styles/variables.scss 941 Bytes
赵千 committed
1 2
// base color
$blue:#324157;
任超 committed
3
$light-blue:#0F93F6;
赵千 committed
4 5 6 7 8 9 10
$red:#C03639;
$pink: #E65D6E;
$green: #30B08F;
$tiffany: #4AB7BD;
$yellow:#FEC171;
$panGreen: #30B08F;

任超 committed
11 12 13
// header
$headerHeight: 80px;

赵千 committed
14 15 16
// sidebar
$menuText:#ffffff;
$menuActiveText:#ffffff;
任超 committed
17
$subMenuActiveText:#ffffff;
赵千 committed
18

任超 committed
19
$menuBg:#202B3D;
任超 committed
20
$menuHover:#249af4;
赵千 committed
21

任超 committed
22
$subMenuBg:#202B3D;
任超 committed
23
$subMenuHover:#0e6fba;
赵千 committed
24

25
$sideBarWidth: 180px;
赵千 committed
26 27
$sideBarFontSize:15px;

任超 committed
28 29
// border颜色
$borderColor: #EBEEF5;
任超 committed
30
$sliderBorderColor: #606266;
任超 committed
31

任超 committed
32

赵千 committed
33 34 35 36 37 38 39 40 41 42 43
// 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;
任超 committed
44
  sideBarFontSize: $sideBarFontSize;
任超 committed
45
  borderColor: $borderColor;
任超 committed
46
  headerHeight: $headerHeight;
任超 committed
47
}