| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* 科技蓝大屏主题变量 */
- $primary-color: #1890ff;
- $background-color: #001529;
- $text-color: #ffffff;
- $bgopacity-color: rgba(0, 170, 255, 0.12);
- :root {
- --primary-color: #1890ff;
- --primary-hover: #40a9ff;
- --background-color: #001529;
- --text-color: #ffffff;
- --text-cyan: #b7dff5;
- --text-muted: #3f4755;
- --bgopacity-color: rgba(0, 170, 255, 0.12);
- --header-bg: #001529;
- --content-bg: #000510;
- --panel-bg: #000c17;
- --panel-border: rgba(0, 170, 255, 0.45);
- --panel-glow: 0 0 15px rgba(0, 120, 255, 0.12),
- inset 0 0 30px rgba(0, 40, 100, 0.08);
- --table-header-bg: #001a33;
- --table-row-bg: #020810;
- --table-row-stripe: rgba(0, 24, 48, 0.55);
- --table-border: rgba(0, 80, 140, 0.28);
- --table-frame-bg: #00050a;
- --table-frame-border: rgba(0, 170, 255, 0.48);
- --table-accent: #00aaff;
- --table-cell-text: #c8d4df;
- --table-header-text: #ffffff;
- /* hover:略提亮深色底,不用浅灰/高亮青(避免扎眼) */
- --table-row-hover-bg: #071525;
- --table-row-hover-text: #c8d4df;
- --table-row-hover-line: rgba(0, 140, 200, 0.28);
- --input-bg: #000c17;
- --input-border: rgba(0, 170, 255, 0.35);
- --sidebar-bg: #141414;
- --success-color: #52c41a;
- /* 按钮:克制的大屏风格(无霓虹发光) */
- --btn-radius: 4px;
- --btn-outline-bg: rgba(0, 16, 32, 0.92);
- --btn-outline-bg-hover: rgba(0, 28, 52, 0.96);
- --btn-outline-border: rgba(0, 120, 200, 0.42);
- --btn-outline-border-hover: rgba(0, 160, 255, 0.55);
- --btn-outline-text: #b7dff5;
- --btn-primary-bg: #177ddc;
- --btn-primary-bg-hover: #1d8cff;
- --btn-primary-border: #177ddc;
- }
|