tangxu
2024-10-22 6a07c4c846ffbb1e93afdf0260e123e4c145f419
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
#region Imports
 
using System.Drawing;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Colors
{
    #region CrownColors
 
    public sealed class CrownColors
    {
        public Color GreyBackground { get; set; }
 
        public Color HeaderBackground { get; set; }
 
        public Color BlueBackground { get; set; }
 
        public Color DarkBlueBackground { get; set; }
 
        public Color DarkBackground { get; set; }
 
        public Color MediumBackground { get; set; }
 
        public Color LightBackground { get; set; }
 
        public Color LighterBackground { get; set; }
 
        public Color LightestBackground { get; set; }
 
        public Color LightBorder { get; set; }
 
        public Color DarkBorder { get; set; }
 
        public Color LightText { get; set; }
 
        public Color DisabledText { get; set; }
 
        public Color BlueHighlight { get; set; }
 
        public Color BlueSelection { get; set; }
 
        public Color GreyHighlight { get; set; }
 
        public Color GreySelection { get; set; }
 
        public Color DarkGreySelection { get; set; }
 
        public Color DarkBlueBorder { get; set; }
 
        public Color LightBlueBorder { get; set; }
 
        public Color ActiveControl { get; set; }
    }
 
    #endregion
}