@@ -74,18 +74,22 @@ private static GUISkin CreateSkin()
74
74
guiskin . box . onNormal . background = null ;
75
75
guiskin . box . normal . background = InterfaceMaker . s_boxBackground ;
76
76
guiskin . box . normal . textColor = Color . gray ;
77
+ guiskin . box . padding . top += 7 ;
78
+ guiskin . box . padding . bottom += 7 ;
79
+ guiskin . box . padding . left += 7 ;
80
+ guiskin . box . padding . right += 7 ;
77
81
78
82
guiskin . window . border = new RectOffset ( 80 , 80 , 80 , 20 ) ;
79
83
guiskin . window . padding . top += 5 ;
80
84
guiskin . window . onNormal . background = null ;
81
85
guiskin . window . normal . background = InterfaceMaker . s_winTitleBackground ;
82
86
guiskin . window . normal . textColor = Color . white ;
83
87
84
- guiskin . button . normal . textColor = Color . gray ;
88
+ guiskin . button . normal . textColor = Color . white ;
85
89
guiskin . button . normal . background = s_buttonNormalBackground ;
86
- guiskin . button . hover . textColor = Color . gray ;
90
+ guiskin . button . hover . textColor = Color . white ;
87
91
guiskin . button . hover . background = s_buttonHoverBackground ;
88
- guiskin . button . active . textColor = Color . gray ;
92
+ guiskin . button . active . textColor = Color . white ;
89
93
guiskin . button . active . background = s_buttonActiveBackground ;
90
94
guiskin . button . onNormal . textColor = Color . white ;
91
95
guiskin . button . onNormal . background = s_buttonActiveNormalBackground ;
@@ -128,28 +132,29 @@ private static GUISkin CreateSkin()
128
132
guiskin . toggle . fixedHeight = 30 ;
129
133
130
134
guiskin . button . padding . top = guiskin . button . padding . bottom = 6 ;
135
+ guiskin . button . padding . left = guiskin . button . padding . left = 5 ;
131
136
guiskin . button . border . bottom = guiskin . button . border . top = 0 ;
132
137
guiskin . button . border . left = guiskin . button . border . right = 10 ;
133
138
134
139
guiskin . textField . normal . background = s_fieldBackground ;
135
- guiskin . textField . normal . textColor = Color . gray ;
140
+ guiskin . textField . normal . textColor = Color . white ;
136
141
guiskin . textField . onNormal . background = s_fieldBackground ;
137
- guiskin . textField . onNormal . textColor = Color . gray ;
142
+ guiskin . textField . onNormal . textColor = Color . white ;
138
143
guiskin . textField . hover . background = s_fieldBackground ;
139
- guiskin . textField . hover . textColor = Color . gray ;
144
+ guiskin . textField . hover . textColor = Color . white ;
140
145
guiskin . textField . onHover . background = s_fieldBackground ;
141
- guiskin . textField . onHover . textColor = Color . gray ;
146
+ guiskin . textField . onHover . textColor = Color . white ;
142
147
guiskin . textField . active . background = s_fieldBackground ;
143
- guiskin . textField . active . textColor = Color . gray ;
148
+ guiskin . textField . active . textColor = Color . white ;
144
149
guiskin . textField . onActive . background = s_fieldBackground ;
145
- guiskin . textField . onActive . textColor = Color . gray ;
150
+ guiskin . textField . onActive . textColor = Color . white ;
146
151
guiskin . textField . focused . background = s_fieldBackground ;
147
- guiskin . textField . focused . textColor = Color . gray ;
152
+ guiskin . textField . focused . textColor = Color . white ;
148
153
guiskin . textField . onFocused . background = s_fieldBackground ;
149
- guiskin . textField . onFocused . textColor = Color . gray ;
154
+ guiskin . textField . onFocused . textColor = Color . white ;
150
155
guiskin . textField . padding = new RectOffset ( 8 , 8 , 5 , 5 ) ;
151
156
152
- guiskin . settings . cursorColor = Color . gray ;
157
+ guiskin . settings . cursorColor = Color . white ;
153
158
154
159
guiskin . verticalScrollbar . normal . background = s_scrollBackground ;
155
160
guiskin . verticalScrollbarThumb . normal . background = s_scrollThumbBackground ;
0 commit comments