From 3506383733936ef8bef7f6eddaee0863502528d2 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 27 Jun 2016 22:18:48 -0400 Subject: [PATCH] gray color on home page label --- src/App/Pages/HomePage.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/App/Pages/HomePage.cs b/src/App/Pages/HomePage.cs index ec3d7db90..728ae0dff 100644 --- a/src/App/Pages/HomePage.cs +++ b/src/App/Pages/HomePage.cs @@ -42,6 +42,7 @@ namespace Bit.App.Pages HorizontalTextAlignment = TextAlignment.Center, LineBreakMode = LineBreakMode.WordWrap, FontSize = Device.GetNamedSize(NamedSize.Large, typeof(Label)), + TextColor = Color.FromHex("333333") }; var createAccountButton = new Button @@ -51,7 +52,7 @@ namespace Bit.App.Pages VerticalOptions = LayoutOptions.End, HorizontalOptions = LayoutOptions.Fill, Style = (Style)Application.Current.Resources["btn-primary"], - FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)), + FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)) }; var loginButton = new Button @@ -61,7 +62,7 @@ namespace Bit.App.Pages VerticalOptions = LayoutOptions.End, Style = (Style)Application.Current.Resources["btn-primaryAccent"], HorizontalOptions = LayoutOptions.Fill, - FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)), + FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)) }; var buttonStackLayout = new StackLayout