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