Files
Wino-Mail/Wino.Core.UWP/AppThemes/Garden.xaml

25 lines
1.1 KiB
Plaintext
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"
xmlns:xaml="using:Windows.UI.Xaml">
2024-04-18 01:44:37 +02:00
<x:String x:Key="ThemeName">Garden</x:String>
2024-11-27 01:43:03 +01:00
<x:String x:Key="ThemeBackgroundImage">ms-appx:///Wino.Core.UWP/BackgroundImages/Garden.jpg</x:String>
2024-04-18 01:44:37 +02:00
<x:Boolean x:Key="UseMica">False</x:Boolean>
<ImageBrush x:Key="WinoApplicationBackgroundColor" ImageSource="{StaticResource ThemeBackgroundImage}" />
<SolidColorBrush x:Key="AppBarBackgroundColor">Transparent</SolidColorBrush>
<ResourceDictionary.ThemeDictionaries>
<ResourceDictionary x:Name="Light">
2024-06-23 23:04:42 +02:00
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#dcfad8</SolidColorBrush>
2024-12-28 20:42:03 +01:00
<SolidColorBrush x:Key="CalendarSeperatorBrush">#576574</SolidColorBrush>
2024-04-18 01:44:37 +02:00
</ResourceDictionary>
2024-12-28 20:42:03 +01:00
<!-- N/A. Light theme only. -->
2024-04-18 01:44:37 +02:00
<ResourceDictionary x:Name="Dark">
2024-06-23 23:04:42 +02:00
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#dcfad8</SolidColorBrush>
2024-04-18 01:44:37 +02:00
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>