| 1234567891011121314151617181920212223242526272829303132 |
- $primary-color: #607d8b;
- $background-color: #607d8b;
- $text-color: #ffffff;
- $bgopacity-color: #607d8b31;
- html[data-theme="dark"] {
- --primary-color: #{$primary-color};
- --background-color: #{$background-color};
- --text-color: #{$text-color};
- --bgopacity-color: #{$bgopacity-color};
- --header-bg: #ffffff;
- --header-text-color: #303133;
- --content-bg: #f5f7fa;
- --text-cyan: #303133;
- --panel-bg: #ffffff;
- --input-bg: #ffffff;
- --input-border: #dcdfe6;
- --table-header-bg: #607d8b;
- --table-header-text: #ffffff;
- --table-row-bg: #ffffff;
- --table-cell-text: #606266;
- /* 首页驾驶舱浮层(非科技蓝) */
- --cockpit-float-panel-bg: rgba(96, 125, 139, 0.82);
- --cockpit-float-table-header-bg: #4a6572;
- --cockpit-legacy-stripe-odd: rgba(68, 90, 100, 0.65);
- --cockpit-legacy-stripe-even: rgba(54, 72, 82, 0.75);
- /* 地图悬停信息框 */
- --map-hover-header-bg: #{$primary-color};
- --map-hover-header-text: #ffffff;
- --map-hover-body-bg: rgba(255, 255, 255, 0.96);
- --map-hover-text: #303133;
- --map-hover-label-text: #606266;
- }
|