FastFlag editor - use primary color for highlights

This commit is contained in:
pizzaboxer 2023-07-23 22:41:25 +01:00
parent cf492cb1ad
commit 6d71eb771b
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8

View File

@ -57,8 +57,16 @@
<Style TargetType="DataGridCell">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Foreground" Value="White" />
<Setter Property="Background" Value="{DynamicResource PaletteDeepPurpleBrush}" />
<Setter Property="Foreground">
<Setter.Value>
<SolidColorBrush Color="{DynamicResource TextOnAccentFillColorPrimary}" />
</Setter.Value>
</Setter>
<Setter Property="Background">
<Setter.Value>
<SolidColorBrush Color="{DynamicResource SystemAccentColorSecondary}" />
</Setter.Value>
</Setter>
</Trigger>
</Style.Triggers>
<Setter Property="Height" Value="32" />