2025-11-15 14:52:01 +01:00
|
|
|
<ResourceDictionary
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:xaml="using:Microsoft.UI.Xaml">
|
|
|
|
|
|
|
|
|
|
<x:String x:Key="ThemeName">Nighty</x:String>
|
2026-03-06 03:42:08 +01:00
|
|
|
<x:String x:Key="ThemeBackgroundImage">ms-appx:///BackgroundImages/Nighty.jpg</x:String>
|
2025-11-15 14:52:01 +01:00
|
|
|
|
|
|
|
|
<ImageBrush x:Key="WinoApplicationBackgroundColor" ImageSource="{StaticResource ThemeBackgroundImage}" />
|
|
|
|
|
<SolidColorBrush x:Key="AppBarBackgroundColor">Transparent</SolidColorBrush>
|
|
|
|
|
|
|
|
|
|
<ResourceDictionary.ThemeDictionaries>
|
|
|
|
|
<ResourceDictionary x:Name="Light">
|
|
|
|
|
<!-- Brushes -->
|
|
|
|
|
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#fdcb6e</SolidColorBrush>
|
2026-03-25 13:39:27 +01:00
|
|
|
<SolidColorBrush x:Key="CalendarDefaultHourBackgroundBrush">#33FDCB6E</SolidColorBrush>
|
2026-04-08 23:46:02 +02:00
|
|
|
<SolidColorBrush x:Key="CalendarHoverHourBackgroundBrush">#59FDCB6E</SolidColorBrush>
|
2026-03-25 13:39:27 +01:00
|
|
|
<SolidColorBrush x:Key="CalendarWorkHourBackgroundBrush">#66FDCB6E</SolidColorBrush>
|
2026-03-25 15:49:14 +01:00
|
|
|
<SolidColorBrush x:Key="CalendarSelectedHourBackgroundBrush">#4D0078D4</SolidColorBrush>
|
2025-11-15 14:52:01 +01:00
|
|
|
</ResourceDictionary>
|
|
|
|
|
<ResourceDictionary x:Name="Dark">
|
|
|
|
|
<!-- Brushes -->
|
|
|
|
|
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#5413191F</SolidColorBrush>
|
2026-03-25 13:39:27 +01:00
|
|
|
<SolidColorBrush x:Key="CalendarDefaultHourBackgroundBrush">#2213191F</SolidColorBrush>
|
2026-04-08 23:46:02 +02:00
|
|
|
<SolidColorBrush x:Key="CalendarHoverHourBackgroundBrush">#4D13191F</SolidColorBrush>
|
2026-03-25 13:39:27 +01:00
|
|
|
<SolidColorBrush x:Key="CalendarWorkHourBackgroundBrush">#5413191F</SolidColorBrush>
|
2026-03-25 15:49:14 +01:00
|
|
|
<SolidColorBrush x:Key="CalendarSelectedHourBackgroundBrush">#66399BFF</SolidColorBrush>
|
2025-11-15 14:52:01 +01:00
|
|
|
</ResourceDictionary>
|
|
|
|
|
</ResourceDictionary.ThemeDictionaries>
|
|
|
|
|
</ResourceDictionary>
|