黄学彪
2019-09-30 404cdc88627f942df7944af04ee05b9d527752d6
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
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 MainPageBackgroucnd = 0xff00ff00;
        public uint TitleLayout = 0xff6b6b6b;
        public uint TitleText = 0xFFf2f2f2;
        public uint ViewColor = 0xFF3c3c3c;
        public uint TopLayout = 0xff6b6b6b;
        public uint UnderTopLayout = 0xFFb6b6b6;
        public uint MiddleLayout = 0xFFc9c9c9;
        public uint BottomLayout = 0xFF8a8a8a;
        public uint TextBlack = 0xFF1F1F1F;
        public uint TextWhite = 0xFF1F1F1F;
        public uint PlaceholderTextColor = 0xFF505050;
        public uint RowLine = 0xFF9d9d9d;
        public uint RowLayout = 0xffa1a1a1;
 
        public uint ButtonBackGround = 0xff9fba4e;
        public uint SelectedButtonBackGround = 0xff00ff00;
 
        public uint BorderColor = 0xFF505050;
 
        public uint Transparent = 0xFF0000ff;
        public uint TitileView = 0xFF0f0f0f;
        public uint PanelSettingTargetNotInLocalColor = 0xCCF8E725;
        public uint Black50Transparent = 0x73000000;
        public uint White20Transparent = 0x35FFFFFF;
 
        public uint SubtitleView = 0xFF505050;
        public uint TextColor1 = 0xFFFFFFFF;
        public uint newDeviceBG = 0x801DB585;
        public uint LostDeviceBG = 0x80E26464;
        public uint UserMenuItemButton = 0xFF000000;
        public uint LineColor = 0xFF0f0f0f;
        public uint LightDialogTextColor = 0xFFE6E6E6;
        public uint ThumbColor = 0xFFFFFFFF;
        public uint LineColor2 = 0xFF5F5F5F;
        public uint ButtonColor1 = 0xFF505050;
        public uint SysTitleView = 0xFF0f0f0f;
        public uint SysSubtitleView = 0xFF2d2d2d;
        public uint SysEditBox = 0xFF505050;
        public uint SysPanelBox = 0xFF505050;
        public uint SysPanleDevicesBox = 0xFF3c3c3c;
        public uint SensorContentView = 0xFF505050;
        public uint TextColor2 = 0xFFFFFFFF;
        public uint DialogTextColor = 0xFFFFFFFF;
        public uint SceneDialogColor = 0xFF505050;
        public uint SceneDialogTitleColor = 0xFF0f0f0f;
        public uint DelColor = 0xFFFF0000;
        public uint SensorLevel0 = 0xFFFFFFFF;
        public uint SensorLevel1 = 0xFF6cc0fb;
        public uint SensorLevel2 = 0xFF6aeaa9;
        public uint SensorLevel3 = 0xFFff9a50;
        public uint SensorLevel4 = 0xFFff5757;
        public uint AddTipButtonColor = 0xFF000000;
        public uint MusicTopFrameLayout = 0xFF1F1F1F;
        public uint MusicVerticalScrolViewLayout = 0xff2F2F2F;
        public uint MusicPalyerView = 0xFF181818;
        public uint MusicTextColor = 0xFFFFFFFF;
        public uint MusicArtistTextColor = 0x80ffffff;
        public uint MusicLineColor = 0xFF181818;
        public uint MusicEditTextBackgroundColor = 0xFF4D4D4D;
        public uint MusicEditTextPlaceholderTextColor = 0x80ffffff;
        public uint MusicMiddleBackgroundColor = 0xFF121212;
        public uint MusicEditBorderColor = 0x00000000;
        public uint MusicTipBackgroundColor = 0xffcccccc;
        public uint MusicTipTextColor = 0xff000000;
        public uint MusicselecteButtonColcor = 0xff525252;
        public uint MusicDialogBackgroundColor = 0xFF484848;
        public uint HorizontalSeekBarThumbColor = 0xFFFFFFFF;
        public uint TimeVerticalScrolViewLayout = 0xff121212;
        #endregion
 
 
        #region --郭雪城定义的颜色--
        public uint GXCBackgroundColor = 0xFFFFFFFF;
        public uint GXCTopViewBackgroundColor = 0xFFF2F4F5;
        public uint GXCTextBlueColor = 0xFF00AAF0;
        public uint GXCTextBlackColor = 0xFF333333;
        public uint GXCTextWhiteColor = 0xFFFFFFFF;
        public uint GXCBorderColor = 0xFF333333;
        public uint GXCBorderRedColor = 0xFFF44D4D;
        public uint GXCPlaceHolderTextColor = 0xffadadad;
        public uint GXCButtonBlueColor = 0xFF00AAF0;
        public uint GXCButtonUnselectedColor = 0xFFAAAAAA;
        public uint GXCTextUnselectedColor= 0xFFD5D6D7;
        public uint GXCLineColor = 0xFFD5D6D7;
        /// <summary>
        /// 弹出框背景色.
        /// </summary>
        public uint GXCDailogBackGroundColor = 0x33333333;
        public uint GXCSelectedColor = 0xFFFE5E00;//选中颜色
        public uint GXCButtonhardWhiteColor = 0xFFE0E0E0;//房间btn半透明背景色
        public uint GXCRedColor = 0xFFFF0000;
        /// <summary>
        /// 30%透明度黑色
        /// </summary>
        public uint GXCBlack70Color = 0x4C000000;
        /// <summary>
        /// 20%透明度黑色
        /// </summary>
        public uint GXCBlack80Color = 0x33000000;
        public uint GXCButtonTipColor = 0xFF999999;//浅色字提示
        public uint GXCTransparent = 0x00FFFFFF;
        /// <summary>
        /// 滑条未选择中颜色--7C7C7C ->0xffadadad
        /// </summary>
        public uint GXCSliderUnSelectedColor = 0xffadadad;
        public uint GXCEditorBGColor = 0xFF32B4C8;
        /// <summary>
        /// 取消收藏颜色--999999
        /// </summary>
        public uint GXCCancelCollectionBGColor = 0xFF999999;
        /// <summary>
        /// 用于空调的选中文字颜色
        /// </summary>
        public uint GXCACSelectedTextColor = 0xFF99D619;
        #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;
        #endregion
 
        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 XMOrange = 0xfffc744b;
        public uint XMVerticalSeekBar = 0xffececec;
        public uint XMDel = 0xffF75858;
        public uint XMUnSelect = 0x4d232323;
 
        //阴影
        public uint XMTitleLine = 0x40000000;
        public uint XMInVisibleLine = 0x00000000;
        public uint XMRowLine = 0x66CCCCCC;
    }
}