黄学彪
2020-12-17 9f326f4000847e6167d8166fa2f6a66f53cb3734
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
using System;
namespace Shared.Common
{
    [System.Serializable]
    public class ZigbeeColor
    {
        static ZigbeeColor()
        {
            if (Current == null)
                Current = new ZigbeeColor();
        }
 
        public static ZigbeeColor Current;
 
        #region 徐梅
        public uint MainColor = 0xFFEAEAEA;
        public uint BottomMenuColor = 0xFFFFFFFF;
 
        public uint SelectedTextColor = 0xFF238BCB;
        public uint TextColor = 0xFF000000;
        public uint DialogColor = 0xFFFFFFFF;
        public uint DialogTitleColor = 0xFF00AAF0;
        public uint DialogSubTitleColor = 0xFFEBEBEB;
        public uint DialogTitleLine = 0xFF8C8D8F;
        public uint ButtonColor = 0xffEAEAEA;
        public uint SelectedColor = 0xFF00AAF0;
        public uint DelRowLayout = 0xffff0000;
        public uint TextBlack = 0xFF1F1F1F;
 
        public uint XMTopFrameLayout = 0xfff9f9f9;
        public uint XMTopTitleText = 0xff333333;
        public uint XMMidFrameLayout = 0xfff5f6fa;
        public uint XMWhite = 0xffffffff;
        public uint XMBlack = 0xff000000;
        public uint XMGray1 = 0xff232323;
        public uint XMGray2 = 0xff666666;
        public uint XMGray3 = 0xff999999;
        public uint XMGray4 = 0xffcccccc;
        public uint XMOrange = 0xfffc744b;
        public uint XMVerticalSeekBar = 0xffececec;
        public uint XMDel = 0xffF75858;
        public uint XMUnSelect = 0x4d232323;
        public uint XMBorder = 0xff676767;
        //阴影
        public uint XMTitleLine = 0x40000000;
        public uint XMInVisibleLine = 0x00000000;
        public uint XMRowLine = 0x66CCCCCC;
        /// <summary>
        /// 0xFFECECEC
        /// </summary>
        public uint XMSeekBarBackgroundColor = 0xFFECECEC;
        /// <summary>
        /// 0xFF232323
        /// </summary>
        public uint XMProgressBarColor = 0xFF232323;
        /// <summary>
        /// 0xFFF5F6FA
        /// </summary>
        public uint XMPEditTextBackground = 0xFFF5F6FA;
        /// <summary>
        /// 0xFFF5F6FA
        /// </summary>
        public uint XMAlarmText = 0xFFF75858;
 
 
        #endregion
 
 
        #region --郭雪城定义的颜色--
        /// <summary>
        /// 白色字体 0xFFFFFFFF
        /// </summary>
        public uint GXCTextWhiteColor = 0xFFFFFFFF;
        /// <summary>
        /// 字体颜色 0xFF666666
        /// </summary>
        public uint GXCTextColor = 0xFF666666;
        /// <summary>
        /// 字体颜色 0xFF000000
        /// </summary>
        public uint GXCTextDeepBlackColor = 0xFF000000;
        /// <summary>
        /// 字体红色 0xFFF75858
        /// </summary>
        public uint GXCTextRed = 0xFFF75858;
        /// <summary>
        /// 字体黑色 0xFF333333
        /// </summary>
        public uint GXCTextBlackColor = 0xFF333333;
        /// <summary>
        /// 字体黑色 0xFF232323
        /// </summary>
        public uint GXCTextBlackColor2 = 0xFF232323;
        /// <summary>
        /// 字体浅色 0xFF999999
        /// </summary>
        public uint GXCTextGrayColor = 0xFF999999;
        /// <summary>
        /// 字体浅色 0xFFCCCCCC
        /// </summary>
        public uint GXCTextGrayColor2 = 0xFFCCCCCC;
        /// <summary>
        /// 字体浅色 0xFFCBCACA
        /// </summary>
        public uint GXCTextGrayColor3 = 0xFFCBCACA;
        /// <summary>
        /// 字体浅色 0xFF666666
        /// </summary>
        public uint GXCTextGrayColor4 = 0xFF666666;
        /// <summary>
        /// 字体选中颜色 0xFFFC744B
        /// </summary>
        public uint GXCTextSelectedColor = 0xFFFC744B;
        /// <summary>
        /// 字体选中颜色 0xFFFB744A
        /// </summary>
        public uint GXCTextSelectedColor2 = 0xFFFB744A;
        /// <summary>
        /// 字体选中颜色 0xFFFFB400
        /// </summary>
        public uint GXCTextSelectedColor3 = 0xFFFFB400;
        /// <summary>
        /// 字体选中颜色 0xFF0075FF
        /// </summary>
        public uint GXCTextSelectedColor4 = 0xFF0075FF;
        /// <summary>
        /// 底部未选中颜色 0xFF8E8E93
        /// </summary>
        public uint GXCTextBottomUnSelectedColor = 0xFF8E8E93;
        /// <summary>
        /// 白色背景 0xFFFFFFFF
        /// </summary>
        public uint GXCBackgroundColor = 0xFFFFFFFF;
        /// <summary>
        /// 浅白背景 0xFFF5F6FA
        /// </summary>
        public uint GXCGrayBackgroundColor = 0xFFF5F6FA;
        /// <summary>
        /// 0x73000000
        /// </summary>
        public uint GXCGrayBackgroundColor2 = 0x73000000;
        /// <summary>
        /// 黑色背景 0xFF232323
        /// </summary>
        public uint GXCBlackBackgroundColor = 0xFF232323;
        /// <summary>
        /// 黑色背景 0xFF333333
        /// </summary>
        public uint GXCBlackBackgroundColor2 = 0xFF333333;
        /// <summary>
        /// 黑色背景 0xF2232323
        /// </summary>
        public uint GXCBlackBackgroundColor3 = 0xF2232323;
        /// <summary>
        /// functionView 0x1AFC744B
        /// </summary>
        public uint GXCForFunctionUnSelectedBackgroundColor = 0x1AFC744B;
        /// <summary>
        /// functionView 0xFFFC744B
        /// </summary>
        public uint GXCForFunctionBackgroundColor = 0xFFFC744B;
        /// <summary>
        /// 0xFFFEF1ED
        /// </summary>
        public uint GXCSelectedBackgroundColor = 0xFFFEF1ED;
        /// <summary>
        /// 编辑背景色 0xFF4A4A4A
        /// </summary>
        public uint GXCEditBackGroundColor = 0xFF4A4A4A;
        /// <summary>
        /// 按钮选中颜色 0xFFFC744B
        /// </summary>
        public uint GXCButtonSelectedColor = 0xFFFC744B;
        /// <summary>
        /// 未选中颜色 0xFFF5F6FA
        /// </summary>
        public uint GXCButtonUnSelectedColor3 = 0xFFF5F6FA;
        /// <summary>
        /// 选中颜色 0xFF232323
        /// </summary>
        public uint GXCButtonBlackSelectedColor = 0xFF232323;
        /// <summary>
        /// red 0xFFF75858
        /// </summary>
        public uint GXCRedColor = 0xFFF75858;
        /// <summary>
        /// 占位字体颜色 0xFFCCCCCC
        /// </summary>
        public uint GXCPlaceHolderTextColor = 0xFFCCCCCC;
        /// <summary>
        /// 占位字体颜色 0xFF999999
        /// </summary>
        public uint GXCPlaceHolderTextColor2 = 0xFF999999;
        /// <summary>
        /// 线条颜色 0xFF979797
        /// </summary>
        public uint GXCLineColor = 0xFF979797;
        /// <summary>
        /// 线条颜色 0xFFFC744B
        /// </summary>
        public uint GXCSelectedLineColor = 0xFFFC744B;
        /// <summary>
        /// 浅色线条 0x80CCCCCC
        /// </summary>
        public uint GXCGrayLineColor = 0x80CCCCCC;
        /// <summary>
        /// 浅色线条 0x66CCCCCC
        /// </summary>
        public uint GXCGrayLineColor2 = 0x66CCCCCC;
        ///// <summary>
        ///// 浅色线条 0xFFEBEBEB
        ///// </summary>
        //public uint GXCGrayLineColor2 = 0xFFEBEBEB;
        /// <summary>
        /// 浅色线条 0xFFB7B8BB
        /// </summary>
        public uint GXCGrayLineColor3 = 0xFFB7B8BB;
        /// <summary>
        /// 0x40000000
        /// </summary>
        public uint GXCGrayLineColor4 = 0x40000000;
 
        /// <summary>
        /// 按钮未选中状态 0xFF656565;
        /// </summary>
        public uint GXCButtonUnSelectedColor = 0xFF656565;
        /// <summary>
        /// 按钮未选中状态 0x80FFFFFF
        /// </summary>
        public uint GXCButtonDisableColor = 0xFFFEBCA9;
        /// <summary>
        /// 边框颜色 0xFFBFC1C2
        /// </summary>
        public uint GXCBorderColor = 0xFFBFC1C2;
        /// <summary>
        /// 未选中颜色 0xFFFFA184
        /// </summary>
        public uint GXCBorderUnSelectedColor = 0xFFFFA184;
        /// <summary>
        /// 行选中颜色 0xFFFC744B
        /// </summary>
        public uint GXCRowSelectedColor = 0x0FFC744B;
        /// <summary>
        /// 弹出框背景色.0x80000000
        /// </summary>
        public uint GXCDailogBackGroundColor = 0x80000000;
        /// <summary>
        /// topview color 0xD1F8F8F8
        /// </summary>
        public uint GXCTopViewBackgroundColor = 0xFFF9F9F9;
        /// <summary>
        /// title color 0xFF030303
        /// </summary>
        public uint GXCTitleBlackTitle = 0xFF030303;
        /// <summary>
        /// 透明
        /// </summary>
        public uint GXCClearColor = 0x00FFFFFF;
        /// <summary>
        /// 底部颜色 0xE6FAFAFA
        /// </summary>
        public uint GXCBottomColor = 0xE6FAFAFA;
        /// <summary>
        /// 底部线条颜色 0xFFBABABA
        /// </summary>
        public uint GXCBottomLineColor = 0xFFBABABA;
        /// <summary>
        /// GXCWaveSeekBarUnSelectedColor 0xFFEBEBED
        /// </summary>
        public uint GXCWaveSeekBarUnSelectedColor = 0xFFEBEBED;
        /// <summary>
        /// GXCWaveSeekBarColor_Start 0xFFFF6C2C
        /// </summary>
        public uint GXCWaveSeekBarColor_Start = 0xFFFF6C2C;
        /// <summary>
        /// GXCWaveSeekBarColor_End 0xFFFD3040
        /// </summary>
        public uint GXCWaveSeekBarColor_End = 0xFFFD3040;
        /// <summary>
        /// 0xFFFDB500
        /// </summary>
        public uint GXCProgressColor = 0xFFFDB500;
        /// <summary>
        /// 0xFFF5F5F5
        /// </summary>
        public uint GXCSeekBarBackground = 0xFFF5F5F5;
        /// <summary>
        /// 用于空调风速的选中文字颜色
        /// 0xFF99D619
        /// </summary>
        public uint GXCACSelectedTextColor_FanModel = 0xFF99D619;
        /// <summary>
        /// 用于空调扫风的选中文字颜色
        /// 0xFF8162FE
        /// </summary>
        public uint GXCACSelectedTextColor2 = 0xFF8162FE;
        /// <summary>
        /// 用于空调模式的选中文字颜色
        /// 0xFF445BF9
        /// </summary>
        public uint GXCACSelectedTextColor_Cool = 0xFF445BF9;
        /// <summary>
        /// 用于空调模式的选中文字颜色
        /// 0xFFFB744A
        /// </summary>
        public uint GXCACSelectedTextColor_Heat = 0xFFFB744A;
        /// <summary>
        /// 用于空调模式的选中文字颜色
        /// 0xFFFFB400
        /// </summary>
        public uint GXCACSelectedTextColor_Dry = 0xFFFFB400;
        /// <summary>
        /// 用于空调模式的选中文字颜色
        /// 0xFF99D619
        /// </summary>
        public uint GXCACSelectedTextColor_Fan = 0xFF99D619;
 
        /// <summary>
        /// 开始颜色 0xFF495AF4
        /// </summary>
        public uint GXCArcScaleSeekBarStartColor = 0xFF495AF4;
        /// <summary>
        /// 结束颜色 0xFFAE50A8
        /// </summary>
        public uint GXCArcScaleSeekBarEndColor = 0xFFAE50A8;
 
        public uint GXCButtonBlueColor = 0xFF00AAF0;
 
        #endregion
 
        #region --Logic定义的颜色--
        public uint LogicTopViewBackgroundColor = 0xFFF2F4F5;
        public uint LogicBackgroundColor = 0xFFFFFFFF;
        public uint LogicTextBlackColor = 0xFF333333;
        public uint LogicLineColor = 0xFFD5D6D7;
        public uint LogicViewBackgroundColor = 0x33333333;
        public uint LogicButtonBlueColor = 0xFF00AAF0;
        public uint LogicTextBlueColor = 0xFF00AAF0;
        public uint LogicDelBackgroundColor = 0xFFFF0000;
        public uint LogicEditBlackColor = 0xFF00aaf0;
        public uint LogicTimeViewColor = 0xFFFFFFFF;
        public uint LogicTimeViewSaveButton = 0xFF121212;
        //最新UI颜色
        public uint LogicTopBackgroundColor = 0xFFF9F9F9;
        public uint LogicMiddleBackgroundColor = 0xFFF5F6FA;
        public uint LogicBlankBackgroundColor = 0xFFFFFFFF;
        public uint LogicRowLayoutLineColor = 0x40cccccc;
        public uint LogicRowLayoutTopLineColor = 0x25000000;
        public uint LogicBtnCancelColor = 0xFF999999;
        public uint LogicBtnTypeColor = 0xFF232323;
        public uint LogicBtnCompleteColor = 0xFFFB744A;
        public uint LogicBtnSelectedColor = 0xFF333333;
        public uint LogicBtnNotSelectedColor = 0xFF666666;
        public uint LogicBtnSaveBackgroundColor = 0xFF232323;
        public uint LogicBtnSaveTextColor = 0xFFFFFFFF;
        public uint LogicTranslucentColor = 0x50000000;
        public uint LogicAddColor = 0xFFFC744B;
        public uint LogicIconBackgroundColor = 0xFFFEF1ED;
        public uint LogicProgressColor = 0xFFE8E8E8;
        public uint LogicProgressColorSelected = 0xffFDB500;
        public uint LogicEditBlackColor1 = 0xFF4A4A4A;
        public uint LogicDelBlackColor1 = 0xFFF75858;
        public uint LogicFunction1Color = 0xFFFFa200;
        public uint LogicScene1Color = 0xFF4A90E2;
        public uint LogicSecurity1Color = 0xFF35B87F;
        public uint LogicDelay1Color = 0xFFBF64FB;
        public uint LogicListWeekTextColor = 0xFF666666;
        public uint LogicTipColor = 0xFF333443;
        public uint LogicTipTextColor= 0xFFcccccc;
        public uint LogicEditTextBackgroundColor=0xFFD1D1D3;
        #endregion
    }
}