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

25 lines
1.1 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">Clouds</x:String>
2025-09-29 11:23:44 +02:00
<x:String x:Key="ThemeBackgroundImage">ms-appx:///Wino.Core.WinUI/BackgroundImages/Clouds.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">
2024-06-23 23:04:42 +02:00
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#b2dffc</SolidColorBrush>
2024-12-28 20:42:03 +01:00
<SolidColorBrush x:Key="CalendarSeperatorBrush">#222f3e</SolidColorBrush>
2024-04-18 01:44:37 +02:00
</ResourceDictionary>
<ResourceDictionary x:Name="Dark">
2024-06-23 23:04:42 +02:00
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#b2dffc</SolidColorBrush>
2024-12-28 20:42:03 +01:00
<SolidColorBrush x:Key="CalendarSeperatorBrush">#222f3e</SolidColorBrush>
2024-04-18 01:44:37 +02:00
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>