@@ -7,10 +7,49 @@ public class AppStyles
7
7
{
8
8
public static ResourceDictionary Default => new ResourceDictionary {
9
9
10
+ // "TextEdit"
11
+
12
+ new Style < TextEdit > ( e => e
13
+ . LabelColor ( DeepSkyBlue )
14
+ . BorderColor ( DeepSkyBlue )
15
+ . FocusedBorderColor ( DeepSkyBlue )
16
+ . FocusedLabelColor ( DeepSkyBlue )
17
+ . CursorColor ( DeepSkyBlue )
18
+ . LabelFontSize ( 14 ) ) ,
19
+
20
+ // "PasswordEdit"
21
+
22
+ new Style < PasswordEdit > ( e => e
23
+ . LabelColor ( DeepSkyBlue )
24
+ . BorderColor ( DeepSkyBlue )
25
+ . FocusedBorderColor ( DeepSkyBlue )
26
+ . FocusedLabelColor ( DeepSkyBlue )
27
+ . CursorColor ( DeepSkyBlue )
28
+ . LabelFontSize ( 14 ) ) ,
29
+
30
+ // "CheckEdit"
31
+
32
+ new Style < CheckEdit > ( e => e
33
+ . LabelFontSize ( 12 )
34
+ . CheckBoxColor ( DeepSkyBlue )
35
+ . CheckedCheckBoxColor ( DeepSkyBlue )
36
+ . LabelVerticalAlignment ( TextAlignment . Center ) ) ,
37
+
38
+ // "ComboBoxEdit"
39
+
40
+ new Style < ComboBoxEdit > ( e => e
41
+ . LabelColor ( DeepSkyBlue )
42
+ . BorderColor ( DeepSkyBlue )
43
+ . FocusedBorderColor ( DeepSkyBlue )
44
+ . FocusedLabelColor ( DeepSkyBlue )
45
+ . CursorColor ( DeepSkyBlue )
46
+ . LabelFontSize ( 14 ) ) ,
47
+
10
48
// "ActivityIndicator"
11
49
12
50
new Style < ActivityIndicator > ( e => e
13
- . Color ( e => e . OnLight ( AppColors . Primary ) . OnDark ( Colors . White ) ) ) ,
51
+ . Color ( DeepSkyBlue )
52
+ /*.Color(e => e.OnLight(AppColors.Primary).OnDark(Colors.White))*/ ) ,
14
53
15
54
// "IndicatorView"
16
55
@@ -34,8 +73,8 @@ public class AppStyles
34
73
// "Button"
35
74
36
75
new Style < Button > ( e => e
37
- . TextColor ( e => e . OnLight ( Colors . White ) . OnDark ( AppColors . Primary ) )
38
- . BackgroundColor ( e => e . OnLight ( AppColors . Primary ) . OnDark ( Colors . White ) )
76
+ . TextColor ( Black )
77
+ . BackgroundColor ( DeepSkyBlue )
39
78
. FontFamily ( "OpenSansRegular" )
40
79
. FontSize ( 14 )
41
80
. CornerRadius ( 8 )
0 commit comments