@@ -9,55 +9,65 @@ internal static class Styles
99{
1010 #region Attributes
1111
12- internal static readonly Attribute Atr_Green_Black = Attribute . Make ( Color . Green , Color . Black ) ;
13- internal static readonly Attribute Atr_Red_Black = Attribute . Make ( Color . Red , Color . Black ) ;
14- internal static readonly Attribute Atr_BrightYellow_Black = Attribute . Make ( Color . BrightYellow , Color . Black ) ;
15- internal static readonly Attribute Atr_White_Black = Attribute . Make ( Color . White , Color . Black ) ;
16- internal static readonly Attribute Atr_Cyan_Black = Attribute . Make ( Color . Cyan , Color . Black ) ;
17- internal static readonly Attribute Atr_Cyan_White = Attribute . Make ( Color . Cyan , Color . White ) ;
18- internal static readonly Attribute Atr_Blue_White = Attribute . Make ( Color . Blue , Color . White ) ;
19- internal static readonly Attribute Atr_BrightRed_Black = Attribute . Make ( Color . BrightRed , Color . Black ) ;
20- internal static readonly Attribute Atr_BrightGreen_Black = Attribute . Make ( Color . BrightGreen , Color . Black ) ;
21- internal static readonly Attribute Atr_Black_White = Attribute . Make ( Color . Black , Color . White ) ;
22- internal static readonly Attribute Atr_Gray_Black = Attribute . Make ( Color . Gray , Color . Black ) ;
23- internal static readonly Attribute Atr_White_DarkGray = Attribute . Make ( Color . White , Color . DarkGray ) ;
24- internal static readonly Attribute Atr_DarkGray_Black = Attribute . Make ( Color . DarkGray , Color . Black ) ;
25- private static readonly Attribute Atr_BrightBlue_Black = Attribute . Make ( Color . BrightBlue , Color . Black ) ;
26- private static readonly Attribute Atr_Blue_Black = Attribute . Make ( Color . Blue , Color . Black ) ;
27- private static readonly Attribute Atr_Brown_Black = Attribute . Make ( Color . Brown , Color . Black ) ;
12+ internal static readonly Attribute Atr_Green_Black = Attribute . Make ( Color . Green , Color . Black ) ;
13+ internal static readonly Attribute Atr_Red_Black = Attribute . Make ( Color . Red , Color . Black ) ;
14+ internal static readonly Attribute Atr_BrightYellow_Black = Attribute . Make ( Color . BrightYellow , Color . Black ) ;
15+ internal static readonly Attribute Atr_White_Black = Attribute . Make ( Color . White , Color . Black ) ;
16+ internal static readonly Attribute Atr_White_Blue = Attribute . Make ( Color . White , Color . Blue ) ;
17+ internal static readonly Attribute Atr_Cyan_Black = Attribute . Make ( Color . Cyan , Color . Black ) ;
18+ internal static readonly Attribute Atr_White_Cyan = Attribute . Make ( Color . White , Color . Cyan ) ;
19+ internal static readonly Attribute Atr_White_BrightCyan = Attribute . Make ( Color . White , Color . BrightCyan ) ;
20+ internal static readonly Attribute Atr_BrightCyan_DarkGray = Attribute . Make ( Color . BrightCyan , Color . DarkGray ) ;
21+ internal static readonly Attribute Atr_Cyan_White = Attribute . Make ( Color . Cyan , Color . White ) ;
22+ internal static readonly Attribute Atr_Blue_White = Attribute . Make ( Color . Blue , Color . White ) ;
23+ internal static readonly Attribute Atr_BrightBlue_White = Attribute . Make ( Color . BrightBlue , Color . White ) ;
24+ internal static readonly Attribute Atr_BrightBlue_Gray = Attribute . Make ( Color . BrightBlue , Color . Gray ) ;
25+ internal static readonly Attribute Atr_BrightRed_Black = Attribute . Make ( Color . BrightRed , Color . Black ) ;
26+ internal static readonly Attribute Atr_BrightGreen_Black = Attribute . Make ( Color . BrightGreen , Color . Black ) ;
27+ internal static readonly Attribute Atr_Black_White = Attribute . Make ( Color . Black , Color . White ) ;
28+ internal static readonly Attribute Atr_Gray_Black = Attribute . Make ( Color . Gray , Color . Black ) ;
29+ internal static readonly Attribute Atr_DarkGray_Blue = Attribute . Make ( Color . DarkGray , Color . Blue ) ;
30+ internal static readonly Attribute Atr_White_DarkGray = Attribute . Make ( Color . White , Color . DarkGray ) ;
31+ internal static readonly Attribute Atr_DarkGray_Black = Attribute . Make ( Color . DarkGray , Color . Black ) ;
32+ private static readonly Attribute Atr_BrightBlue_Black = Attribute . Make ( Color . BrightBlue , Color . Black ) ;
33+ private static readonly Attribute Atr_Blue_Black = Attribute . Make ( Color . Blue , Color . Black ) ;
34+ private static readonly Attribute Atr_Brown_Black = Attribute . Make ( Color . Brown , Color . Black ) ;
35+ private static readonly Attribute Atr_DarkGray_White = Attribute . Make ( Color . DarkGray , Color . White ) ;
2836
2937 #endregion
3038
3139 #region Color schemes
3240
3341 internal static readonly ColorScheme Cs_Btn1x = new ( )
3442 {
35- Normal = Atr_Cyan_Black ,
36- Focus = Atr_BrightGreen_Black ,
37- Disabled = Atr_BrightYellow_Black ,
38- HotNormal = Atr_Cyan_Black ,
39- HotFocus = Atr_BrightGreen_Black
43+ Normal = Atr_White_Cyan ,
44+ Disabled = Atr_DarkGray_Blue ,
45+ HotNormal = Atr_White_Cyan ,
46+ HotFocus = Atr_White_BrightCyan ,
47+ Focus = Atr_White_BrightCyan ,
4048 } ;
4149
4250 internal static readonly ColorScheme Cs_Btn1 = new ( )
4351 {
44- Normal = Atr_BrightBlue_Black ,
45- Disabled = Atr_DarkGray_Black ,
46- HotNormal = Atr_BrightBlue_Black ,
47- HotFocus = Atr_Blue_Black ,
48- Focus = Atr_Blue_Black
52+ Normal = Atr_Blue_White ,
53+ Disabled = Atr_DarkGray_White ,
54+ HotNormal = Atr_Blue_White ,
55+ HotFocus = Atr_BrightBlue_Gray ,
56+ Focus = Atr_BrightBlue_Gray
4957 } ;
58+
5059 internal static readonly ColorScheme Cs_Btn2 = new ( )
5160 {
52- Normal = Atr_Brown_Black ,
53- Disabled = Atr_DarkGray_Black ,
54- HotNormal = Atr_Brown_Black ,
55- HotFocus = Atr_Blue_Black ,
56- Focus = Atr_Blue_Black
61+ Normal = Atr_Blue_White ,
62+ Disabled = Atr_DarkGray_White ,
63+ HotNormal = Atr_Blue_White ,
64+ HotFocus = Atr_BrightBlue_Gray ,
65+ Focus = Atr_BrightBlue_Gray
5766 } ;
67+
5868 internal static readonly ColorScheme Cs_Elem2 = new ( )
5969 {
60- Normal = Atr_Cyan_Black ,
70+ Normal = Atr_White_Cyan ,
6171 Disabled = Atr_DarkGray_Black
6272 } ;
6373
0 commit comments