Switch theme to Dark.Cobalt for readable accent colour
Indigo 500 (#3F51B5) is too dark on black backgrounds. Cobalt (#0050EF)
is a bright electric blue that meets contrast requirements on dark
surfaces without needing lighter fallback shades.
Replaced all hardcoded #9FA8DA (Indigo 200 workaround) with
{DynamicResource MahApps.Brushes.Accent} now that the accent is
naturally readable — section headings, price labels, detail labels,
listing URL link.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
<ResourceDictionary.MergedDictionaries>
|
<ResourceDictionary.MergedDictionaries>
|
||||||
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
|
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
|
||||||
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
|
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
|
||||||
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/Dark.Indigo.xaml" />
|
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/Dark.Cobalt.xaml" />
|
||||||
</ResourceDictionary.MergedDictionaries>
|
</ResourceDictionary.MergedDictionaries>
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
</Application.Resources>
|
</Application.Resources>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
<Style x:Key="SectionHeading" TargetType="TextBlock">
|
<Style x:Key="SectionHeading" TargetType="TextBlock">
|
||||||
<Setter Property="FontSize" Value="10"/>
|
<Setter Property="FontSize" Value="10"/>
|
||||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
||||||
<Setter Property="Foreground" Value="#9FA8DA"/>
|
<Setter Property="Foreground" Value="{DynamicResource MahApps.Brushes.Accent}"/>
|
||||||
<Setter Property="VerticalAlignment" Value="Center"/>
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||||
</Style>
|
</Style>
|
||||||
<Style x:Key="FieldLabel" TargetType="TextBlock">
|
<Style x:Key="FieldLabel" TargetType="TextBlock">
|
||||||
@@ -465,7 +465,7 @@
|
|||||||
</StackPanel>
|
</StackPanel>
|
||||||
<StackPanel Grid.Column="2" HorizontalAlignment="Center">
|
<StackPanel Grid.Column="2" HorizontalAlignment="Center">
|
||||||
<TextBlock Text="SUGGESTED" FontSize="9" FontWeight="SemiBold"
|
<TextBlock Text="SUGGESTED" FontSize="9" FontWeight="SemiBold"
|
||||||
Foreground="#9FA8DA"
|
Foreground="{DynamicResource MahApps.Brushes.Accent}"
|
||||||
HorizontalAlignment="Center"/>
|
HorizontalAlignment="Center"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<StackPanel Grid.Column="4" HorizontalAlignment="Center">
|
<StackPanel Grid.Column="4" HorizontalAlignment="Center">
|
||||||
@@ -578,7 +578,7 @@
|
|||||||
Margin="0,0,6,0" VerticalAlignment="Center"
|
Margin="0,0,6,0" VerticalAlignment="Center"
|
||||||
Foreground="{DynamicResource MahApps.Brushes.Accent}"/>
|
Foreground="{DynamicResource MahApps.Brushes.Accent}"/>
|
||||||
<TextBlock Text="CORRECTIONS" FontSize="10" FontWeight="SemiBold"
|
<TextBlock Text="CORRECTIONS" FontSize="10" FontWeight="SemiBold"
|
||||||
Foreground="#9FA8DA"
|
Foreground="{DynamicResource MahApps.Brushes.Accent}"
|
||||||
VerticalAlignment="Center"/>
|
VerticalAlignment="Center"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<TextBox x:Name="CorrectionsBox"
|
<TextBox x:Name="CorrectionsBox"
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
<Style x:Key="DetailLabel" TargetType="TextBlock">
|
<Style x:Key="DetailLabel" TargetType="TextBlock">
|
||||||
<Setter Property="FontSize" Value="10"/>
|
<Setter Property="FontSize" Value="10"/>
|
||||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
||||||
<Setter Property="Foreground" Value="#9FA8DA"/>
|
<Setter Property="Foreground" Value="{DynamicResource MahApps.Brushes.Accent}"/>
|
||||||
<Setter Property="Margin" Value="0,10,0,3"/>
|
<Setter Property="Margin" Value="0,10,0,3"/>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
<Style x:Key="SectionHeading" TargetType="TextBlock">
|
<Style x:Key="SectionHeading" TargetType="TextBlock">
|
||||||
<Setter Property="FontSize" Value="10"/>
|
<Setter Property="FontSize" Value="10"/>
|
||||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
||||||
<Setter Property="Foreground" Value="#9FA8DA"/>
|
<Setter Property="Foreground" Value="{DynamicResource MahApps.Brushes.Accent}"/>
|
||||||
<Setter Property="Margin" Value="0,0,0,0"/>
|
<Setter Property="Margin" Value="0,0,0,0"/>
|
||||||
<Setter Property="VerticalAlignment" Value="Center"/>
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||||
</Style>
|
</Style>
|
||||||
@@ -439,7 +439,7 @@
|
|||||||
Foreground="#4CAF50"/>
|
Foreground="#4CAF50"/>
|
||||||
<TextBlock Text="Posted! " FontWeight="Bold" VerticalAlignment="Center"
|
<TextBlock Text="Posted! " FontWeight="Bold" VerticalAlignment="Center"
|
||||||
Foreground="#4CAF50"/>
|
Foreground="#4CAF50"/>
|
||||||
<TextBlock x:Name="ListingUrlText" Foreground="#9FA8DA"
|
<TextBlock x:Name="ListingUrlText" Foreground="{DynamicResource MahApps.Brushes.Accent}"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Cursor="Hand" TextDecorations="Underline"
|
Cursor="Hand" TextDecorations="Underline"
|
||||||
MouseLeftButtonUp="ListingUrl_Click"/>
|
MouseLeftButtonUp="ListingUrl_Click"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user