I'm an newbie when it comes to using Template 10. I'm building an app using the Hamburger template and I'm struggling with changing the default colors. Below is what I find in the standard Custom.xaml file:
<Color x:Key="CustomColor">SteelBlue</Color>
<Color x:Key="ContrastColor">White</Color>
<Color x:Key="SystemAccentColor">SteelBlue</Color>
Changing it to:
<Color x:Key="CustomColor">LightGrey</Color>
<Color x:Key="ContrastColor">White</Color>
<Color x:Key="SystemAccentColor">LightGrey</Color>
Gives me the following error:
Failed to create a 'Windows.UI.Color' from the text 'LightGrey'.
What did I do wrong and how do I change the default color throughout the app?