setting.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // 主题名称
  2. $theme-name: 'd2';
  3. // 主题背景颜色
  4. $theme-bg-color: #ebf1f6;
  5. // 主题背景图片遮罩
  6. $theme-bg-mask: rgba(#000, 0);
  7. // 消息提示
  8. $theme-message-info-background-color: $color-bg;
  9. $theme-message-info-text-color: $color-text-normal;
  10. $theme-message-info-border-color: $color-border-1;
  11. // container组件
  12. $theme-container-background-color: rgba(#FFF, 1);
  13. $theme-container-header-footer-background-color: #FFF;
  14. $theme-container-border-inner: 1px solid #cfd7e5;
  15. $theme-container-border-outer: 1px solid #cfd7e5;
  16. $theme-multiple-page-control-color: $color-text-normal;
  17. $theme-multiple-page-control-color-active: #2f74ff;
  18. $theme-multiple-page-control-nav-prev-color: #cfd7e5;
  19. $theme-multiple-page-control-nav-next-color: #cfd7e5;
  20. $theme-multiple-page-control-border-color: #cfd7e5;
  21. $theme-multiple-page-control-border-color-active: #FFF;
  22. $theme-multiple-page-control-background-color: rgba(#000, .03);
  23. $theme-multiple-page-control-background-color-active: #FFF;
  24. // 顶栏和侧边栏中展开的菜单 hover 状态下
  25. $theme-menu-item-color-hover: #293849;
  26. $theme-menu-item-background-color-hover: #ecf5ff;
  27. // 顶栏上的文字颜色
  28. $theme-header-item-color: $color-text-normal;
  29. $theme-header-item-background-color: transparent;
  30. // 顶栏上的项目在 hover 时
  31. $theme-header-item-color-hover: #2f74ff;
  32. $theme-header-item-color-hover: #fff; // 顶栏上的项目在 hover 字体颜色
  33. $theme-header-item-background-color-hover: rgba(#FFF, .5);
  34. $theme-header-item-background-color-hover: #346ebd ; // 顶栏上的项目在 hover 背景色
  35. // 顶栏上的项目在 focus 时
  36. $theme-header-item-color-focus: #2f74ff;
  37. $theme-header-item-background-color-focus: rgba(#FFF, .5);
  38. // 顶栏上的项目在 active 时
  39. $theme-header-item-color-active: #2f74ff;
  40. $theme-header-item-background-color-active: rgba(#FFF, .5);
  41. // 侧边栏上的文字颜色
  42. $theme-aside-item-color: $color-text-normal;
  43. $theme-aside-item-background-color: transparent;
  44. // 侧边栏上的项目在 hover 时
  45. $theme-aside-item-color-hover: #2f74ff;
  46. $theme-aside-item-background-color-hover: rgba(#FFF, .5);
  47. // 侧边栏上的项目在 focus 时
  48. $theme-aside-item-color-focus: #2f74ff;
  49. $theme-aside-item-background-color-focus: rgba(#FFF, .5);
  50. // 侧边栏上的项目在 active 时
  51. $theme-aside-item-color-active: #2f74ff;
  52. $theme-aside-item-background-color-active: rgba(#FFF, .5);
  53. // 侧边栏菜单为空的时候显示的元素
  54. $theme-aside-menu-empty-icon-color: $color-text-normal;
  55. $theme-aside-menu-empty-text-color: $color-text-normal;
  56. $theme-aside-menu-empty-background-color: rgba(#000, .03);
  57. $theme-aside-menu-empty-icon-color-hover: $color-text-main;
  58. $theme-aside-menu-empty-text-color-hover: $color-text-main;
  59. $theme-aside-menu-empty-background-color-hover: rgba(#000, .05);