Change home item colors

This commit is contained in:
2019-03-27 19:16:42 +01:00
parent c86e649b4a
commit 8be57fb3df

View File

@@ -15,9 +15,9 @@ namespace PlantBox.Client.Forms
public partial class HomeItem : ContentView public partial class HomeItem : ContentView
{ {
// Colors // Colors
public static readonly Color BadColor = Color.FromHex("#dd2c00"); public static readonly Color BadColor = Color.FromHex("#FA3838");
public static readonly Color GoodColor = Color.FromHex("#64dd17"); public static readonly Color GoodColor = Color.FromHex("#8ED959");
public static readonly Color WarningColor = Color.FromHex("#ff6d00"); public static readonly Color WarningColor = Color.FromHex("#FFC533");
// Name // Name
public static readonly BindableProperty PlantNameProperty = BindableProperty.Create(nameof(PlantName), typeof(string), typeof(HomeItem)); public static readonly BindableProperty PlantNameProperty = BindableProperty.Create(nameof(PlantName), typeof(string), typeof(HomeItem));