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
| .app {
| min-height: 100vh;
| transition: background-color 0.3s;
|
| &.light {
| background-color: #F5F5F5;
| color: #000000;
| --icon-color: #000000;
| --section-title: #000000;
|
| .theme-text {
| color: #000000; // light 模式下的文字颜色
| }
| }
|
| &.dark {
| background-color: #1e1e1e;
| color: #ffffff;
| --icon-color: #ffffff;
| --section-title: #ffffff;
| .theme-text {
| color: #ffffff; // dark 模式下的文字颜色
| }
| }
| }
|
|
|