园林绿化
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.

39 lines
1.1 KiB

  1. // base color
  2. $blue:#324157;
  3. $light-blue:#3A71A8;
  4. $red:#C03639;
  5. $pink: #E65D6E;
  6. $green: #30B08F;
  7. $tiffany: #4AB7BD;
  8. $yellow:#FEC171;
  9. $panGreen: #30B08F;
  10. // 默认菜单主题风格
  11. $base-menu-color: #bfcbd9;
  12. $base-menu-color-active: #ffffff;
  13. $base-menu-background: #1a1f2e;
  14. $base-logo-title-color: #ffffff;
  15. $base-menu-light-color:rgba(0,0,0,.70);
  16. $base-menu-light-background:#ffffff;
  17. $base-logo-light-title-color: #001529;
  18. $base-sub-menu-background: #141824;
  19. $base-sub-menu-hover: rgba(255,255,255,.06);
  20. $base-sidebar-width: 200px;
  21. // the :export directive is the magic sauce for webpack
  22. // https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
  23. :export {
  24. menuColor: $base-menu-color;
  25. menuLightColor: $base-menu-light-color;
  26. menuColorActive: $base-menu-color-active;
  27. menuBackground: $base-menu-background;
  28. menuLightBackground: $base-menu-light-background;
  29. subMenuBackground: $base-sub-menu-background;
  30. subMenuHover: $base-sub-menu-hover;
  31. sideBarWidth: $base-sidebar-width;
  32. logoTitleColor: $base-logo-title-color;
  33. logoLightTitleColor: $base-logo-light-title-color
  34. }