dark.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. $primary-color: #607d8b;
  2. $background-color: #607d8b;
  3. $text-color: #ffffff;
  4. $bgopacity-color: #607d8b31;
  5. html[data-theme="dark"] {
  6. --primary-color: #{$primary-color};
  7. --background-color: #{$background-color};
  8. --text-color: #{$text-color};
  9. --bgopacity-color: #{$bgopacity-color};
  10. --header-bg: #ffffff;
  11. --header-text-color: #303133;
  12. --content-bg: #f5f7fa;
  13. --text-cyan: #303133;
  14. --panel-bg: #ffffff;
  15. --input-bg: #ffffff;
  16. --input-border: #dcdfe6;
  17. --table-header-bg: #607d8b;
  18. --table-header-text: #ffffff;
  19. --table-row-bg: #ffffff;
  20. --table-cell-text: #606266;
  21. /* 首页驾驶舱浮层(非科技蓝) */
  22. --cockpit-float-panel-bg: rgba(96, 125, 139, 0.82);
  23. --cockpit-float-table-header-bg: #4a6572;
  24. --cockpit-legacy-stripe-odd: rgba(68, 90, 100, 0.65);
  25. --cockpit-legacy-stripe-even: rgba(54, 72, 82, 0.75);
  26. /* 地图悬停信息框 */
  27. --map-hover-header-bg: #{$primary-color};
  28. --map-hover-header-text: #ffffff;
  29. --map-hover-body-bg: rgba(255, 255, 255, 0.96);
  30. --map-hover-text: #303133;
  31. --map-hover-label-text: #606266;
  32. }