Files
Wino-Mail/Wino.Core.WinUI/AppThemes/Snowflake.xaml
T

23 lines
1.0 KiB
XML
Raw Normal View History

2024-04-18 01:44:37 +02:00
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2024-06-23 23:04:42 +02:00
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2025-09-29 11:16:14 +02:00
xmlns:xaml="using:Microsoft.UI.Xaml">
2024-04-18 01:44:37 +02:00
<x:String x:Key="ThemeName">Snowflake</x:String>
2025-09-29 11:23:44 +02:00
<x:String x:Key="ThemeBackgroundImage">ms-appx:///Wino.Core.WinUI/BackgroundImages/Snowflake.jpg</x:String>
2024-04-18 01:44:37 +02:00
<ImageBrush x:Key="WinoApplicationBackgroundColor" ImageSource="{StaticResource ThemeBackgroundImage}" />
<SolidColorBrush x:Key="AppBarBackgroundColor">Transparent</SolidColorBrush>
<ResourceDictionary.ThemeDictionaries>
<ResourceDictionary x:Name="Light">
<!-- Brushes -->
2024-06-23 23:04:42 +02:00
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#b0c6dd</SolidColorBrush>
2024-04-18 01:44:37 +02:00
</ResourceDictionary>
<ResourceDictionary x:Name="Dark">
<!-- Brushes -->
2024-06-23 23:04:42 +02:00
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#b0c6dd</SolidColorBrush>
2024-04-18 01:44:37 +02:00
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>