Switch MahApps.Metro base theme from Light.Indigo to Dark.Indigo in App.xaml. Fix hardcoded light-specific colours in all five views: - MainWindow: overlay backgrounds from hardcoded light-blue gradients to ThemeBackground; overlay text updated to ThemeForeground / Gray5 - SingleItemView: listing URL colour from hardcoded #1565C0 (invisible on dark) to Accent brush - PhotoAnalysisView / BulkImportView / SavedListingsView: dynamic resource brushes already used; no structural changes needed Semantic colours (green/red/amber indicators, AI gradient buttons, white text on coloured backgrounds) left unchanged as they read correctly on dark surfaces. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
830 B
XML
15 lines
830 B
XML
<Application x:Class="EbayListingTool.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
StartupUri="Views/MainWindow.xaml">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<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/Themes/Dark.Indigo.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|