<Style Selector="ComboBox.HomeCombo">
<Setter Property="Foreground"
Value="{DynamicResource ResourceKey=DarkGrayBrush}" />
<Setter Property="Background"
Value="{DynamicResource ResourceKey=PurpleBrush}" />
<Setter Property="HorizontalAlignment"
Value="Center" />
<Setter Property="VerticalAlignment"
Value="Center" />
<Setter Property="HorizontalContentAlignment"
Value="Center" />
<Setter Property="VerticalContentAlignment"
Value="Center" />
<Setter Property="Width" Value="300" />
<Setter Property="Height" Value="70" />
<Setter Property="FontSize" Value="20" />
<Style Selector="^:pointerover /template/ Border#Background">
<Setter Property="Background"
Value="{DynamicResource ResourceKey=PinkBrush}" />
</Style>
</Style>
<Style Selector="ComboBoxItem:pointerover /template/ ContentPresenter">
<Setter Property="Background"
Value="{DynamicResource ResourceKey=PinkBrush}" />
<Setter Property="BorderBrush"
Value="{DynamicResource ResourceKey=PinkBrush}" />
<Setter Property="TextBlock.Foreground"
Value="{DynamicResource ResourceKey=DarkGrayBrush}" />
</Style>