1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| //主题皮肤 - 预留功能
| :root {
| --themeBagColor: red;
| }
|
| // 默认主题
| .theme-default {
| --themeBagColor: #fff;
| }
|
| // 深黑主题
| .theme-dark {
| --themeBagColor: black;
| }
|
| // 红色主题
| .theme-red {
| --themeBagColor: red;
| }
|
| // 浅蓝主题
| .theme-blue {
| --themeBagColor: blue;
| }
|
| // ------- 定义 Less 变量 -------
| @themeBagColor: var(--themeBagColor);
|
| // 遮罩层背景颜色
| @maskBagColor: rgba(31, 35, 41, .3);
|
|