liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// base color
$primary-color: #38BCBF;
$blue:#324157;
$light-blue:#3A71A8;
$red:#C03639;
$pink: #E65D6E;
$green: #30B08F;
$tiffany: #4AB7BD;
$yellow:#FEC171;
$panGreen: #30B08F;
 
// sidebar
$menuText:#333;
$menuActiveText: #fff;
$subMenuActiveText:#38BCBF; // https://github.com/ElemeFE/element/issues/12951
 
$menuBg:rgba(255, 255, 255, 1);
$menuHover:rgba(246, 250, 255, 1);
 
$subMenuBg:#38BCBF;
$subMenuHover:rgba(246, 250, 255, 1)s;
 
$sideBarWidth: 220px;
 
// 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;
  primary-color: $primary-color;
}