I want to do something like this:
Resource Dictionary
<Color x:Key="clrPrimary">#5381ac</Color>
<Color x:Key="clrSecondary">#20558a</Color>
<Style TargetType="Grid" x:Key="myGrid">
<Setter Property="Background" Value="{StaticResource clrPrimary"/>
</Style>
Getting Exception:
'#FF5381AC' is not a valid value for property 'Background'.
Having trouble nailing it down, can any one point me in the right direction?