Create a new SolidColorBrush as value for the Fill Setter:
<Style TargetType="Rectangle">
<Setter Property="Fill">
<Setter.Value>
<SolidColorBrush Color="{Binding AlertUnit.AlertColor.Color}"/>
</Setter.Value>
</Setter>
...
</Style>
CLICK HERE to find out more related problems solutions.