JLChen
2020-04-15 19545253f1977af3ef84b301183c2e12107983c9
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
using System;
namespace Shared
{
    [System.Serializable]
    public class SkinStyle
    {
        static SkinStyle ()
        {
            if (Current == null)
                Current = new SkinStyle ();
        }
 
        public static SkinStyle Current;
 
        public uint OnlineColor = 0xFF5DBA46;
        public uint PanelSettingTargetNotInLocalColor = 0xCCF8E725;
        public uint Black50Transparent = 0x73000000;
        public uint White20Transparent = 0x35FFFFFF;
        public uint MainColor = 0xFF1F1F1F;
        public uint ViewColor = 0xFF3c3c3c;
        public uint ButtonColor = 0xFF787878;
        public uint ButtonColor1 = 0xFF505050;
        public uint TitileView = 0xFF0f0f0f;
        public uint SysTitleView = 0xFF0f0f0f;
        public uint SysSubtitleView = 0xFF2d2d2d;
        public uint SysEditBox = 0xFF505050;
        public uint SysPanelBox = 0xFF505050;
        public uint SysPanleDevicesBox = 0xFF3c3c3c;
        public uint BorderColor = 0xFF505050;
        public uint SubtitleView = 0xFF505050;
        public uint SensorContentView = 0xFF505050;
        public uint PlaceholderTextColor = 0xFF505050;
        public uint SelectedColor = 0xFFfe5e00;//选中颜色
        public uint TextColor = 0xFF2F2F2F;
        public uint TextColor1 = 0xFFFFFFFF;
        public uint TextColor2 = 0xFFFFFFFF;
        public uint DialogTextColor = 0xFFFFFFFF;
        public uint newDeviceBG = 0x801DB585;
        public uint LostDeviceBG = 0x80E26464;
        public uint DialogColor = 0xFFFFFFFF;
        public uint SceneDialogColor = 0xFF505050;
        public uint SceneDialogTitleColor = 0xFF0f0f0f;
        public uint DialogTitle = 0xFF787878;
        public uint UserMenuItemButton = 0xFF000000;
        public uint LineColor = 0xFF0f0f0f;
        public uint DelColor = 0xFFFF0000;
        public uint Transparent = 0x00FFFFFF;
        public uint LightDialogTextColor = 0xFFE6E6E6;
        public uint ThumbColor = 0xFFFFFFFF;
        public uint ThumbColor2 = 0xFF787878;
        public uint SensorLevel0 = 0xFFFFFFFF;
        public uint SensorLevel1 = 0xFF6cc0fb;
        public uint SensorLevel2 = 0xFF6aeaa9;
        public uint SensorLevel3 = 0xFFff9a50;
        public uint SensorLevel4 = 0xFFff5757;
        public uint LineColor2 = 0xFF5F5F5F;
        public uint AddTipButtonColor = 0xFF000000;
        public uint LinkStatusTipColor = 0xFF1F1F1F;
        public uint SceneTransparentBackColor = 0x44848484;
 
 
        ///新加颜色
        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 MusicRowLayoutLineColor = 0xff0f0f0f;
        #region settingView
        #endregion
 
 
    }
}