Blame view

uview-ui/libs/css/color.scss 2.18 KB
290144e9   易尊强   第一次
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
  .u-type-primary-light {
  	color: $u-type-primary-light;
  }
  
  .u-type-warning-light {
  	color: $u-type-warning-light;
  }
  
  .u-type-success-light {
  	color: $u-type-success-light;
  }
  
  .u-type-error-light {
  	color: $u-type-error-light;
  }
  
  .u-type-info-light {
  	color: $u-type-info-light;
  }
  
  .u-type-primary-light-bg {
  	background-color: $u-type-primary-light;
  }
  
  .u-type-warning-light-bg {
  	background-color: $u-type-warning-light;
  }
  
  .u-type-success-light-bg {
  	background-color: $u-type-success-light;
  }
  
  .u-type-error-light-bg {
  	background-color: $u-type-error-light;
  }
  
  .u-type-info-light-bg {
  	background-color: $u-type-info-light;
  }
  
  .u-type-primary-dark {
  	color: $u-type-primary-dark;
  }
  
  .u-type-warning-dark {
  	color: $u-type-warning-dark;
  }
  
  .u-type-success-dark {
  	color: $u-type-success-dark;
  }
  
  .u-type-error-dark {
  	color: $u-type-error-dark;
  }
  
  .u-type-info-dark {
  	color: $u-type-info-dark;
  }
  
  .u-type-primary-dark-bg {
  	background-color: $u-type-primary-dark;
  }
  
  .u-type-warning-dark-bg {
  	background-color: $u-type-warning-dark;
  }
  
  .u-type-success-dark-bg {
  	background-color: $u-type-success-dark;
  }
  
  .u-type-error-dark-bg {
  	background-color: $u-type-error-dark;
  }
  
  .u-type-info-dark-bg {
  	background-color: $u-type-info-dark;
  }
  
  .u-type-primary-disabled {
  	color: $u-type-primary-disabled;
  }
  
  .u-type-warning-disabled {
  	color: $u-type-warning-disabled;
  }
  
  .u-type-success-disabled {
  	color: $u-type-success-disabled;
  }
  
  .u-type-error-disabled {
  	color: $u-type-error-disabled;
  }
  
  .u-type-info-disabled {
  	color: $u-type-info-disabled;
  }
  
  .u-type-primary {
  	color: $u-type-primary;
  }
  
  .u-type-warning {
  	color: $u-type-warning;
  }
  
  .u-type-success {
  	color: $u-type-success;
  }
  
  .u-type-error {
  	color: $u-type-error;
  }
  
  .u-type-info {
  	color: $u-type-info;
  }
  
  .u-type-primary-bg {
  	background-color: $u-type-primary;
  }
  
  .u-type-warning-bg {
  	background-color: $u-type-warning;
  }
  
  .u-type-success-bg {
  	background-color: $u-type-success;
  }
  
  .u-type-error-bg {
  	background-color: $u-type-error;
  }
  
  .u-type-info-bg {
  	background-color: $u-type-info;
  }
  
  .u-main-color {
  	color: $u-main-color;
  }
  
  .u-content-color {
  	color: $u-content-color;
  }
  
  .u-tips-color {
  	color: $u-tips-color;
  }
  
  .u-light-color {
  	color: $u-light-color;
  }