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
31
  | // 间距基础倍数 
 |  $uni-space-root: 2; 
 |  // 边框半径默认值 
 |  $uni-radius-root:5px; 
 |  // 主色 
 |  $uni-primary: #2979ff; 
 |  // 辅助色 
 |  $uni-success: #4cd964; 
 |  // 警告色 
 |  $uni-warning: #f0ad4e; 
 |  // 错误色 
 |  $uni-error: #dd524d; 
 |  // 描述色 
 |  $uni-info: #909399; 
 |  // 中性色 
 |  $uni-main-color: #303133; 
 |  $uni-base-color: #606266; 
 |  $uni-secondary-color: #909399; 
 |  $uni-extra-color: #C0C4CC; 
 |  // 背景色 
 |  $uni-bg-color: #f5f5f5; 
 |  // 边框颜色 
 |  $uni-border-1: #DCDFE6; 
 |  $uni-border-2: #E4E7ED; 
 |  $uni-border-3: #EBEEF5; 
 |  $uni-border-4: #F2F6FC; 
 |    
 |  // 常规色 
 |  $uni-black: #000000; 
 |  $uni-white: #ffffff; 
 |  $uni-transparent: rgba($color: #000000, $alpha: 0); 
 |  
  |