43 lines
2.1 KiB
XML
43 lines
2.1 KiB
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:Microsoft.UI.Xaml.Media"
|
|
xmlns:xaml="using:Microsoft.UI.Xaml">
|
|
|
|
<x:String x:Key="ThemeName">Acrylic</x:String>
|
|
|
|
<SolidColorBrush x:Key="AppBarBackgroundColor">Transparent</SolidColorBrush>
|
|
|
|
<!-- Acrylic Template -->
|
|
<ResourceDictionary.ThemeDictionaries>
|
|
<ResourceDictionary x:Name="Light">
|
|
<!-- Reading Page Date/Name Group Header Background -->
|
|
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#ecf0f1</SolidColorBrush>
|
|
<SolidColorBrush x:Key="CalendarDefaultHourBackgroundBrush">#B2FCFCFC</SolidColorBrush>
|
|
<SolidColorBrush x:Key="CalendarHoverHourBackgroundBrush">#260078D4</SolidColorBrush>
|
|
<SolidColorBrush x:Key="CalendarWorkHourBackgroundBrush">#D9ECEFF1</SolidColorBrush>
|
|
<SolidColorBrush x:Key="CalendarSelectedHourBackgroundBrush">#4D0078D4</SolidColorBrush>
|
|
|
|
<local:AcrylicBrush
|
|
x:Key="WinoApplicationBackgroundColor"
|
|
FallbackColor="#F9F9F9"
|
|
TintColor="#FCFCFC"
|
|
TintOpacity="0.75" />
|
|
</ResourceDictionary>
|
|
|
|
<ResourceDictionary x:Name="Dark">
|
|
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#2C2C2C</SolidColorBrush>
|
|
<SolidColorBrush x:Key="CalendarDefaultHourBackgroundBrush">#662C2C2C</SolidColorBrush>
|
|
<SolidColorBrush x:Key="CalendarHoverHourBackgroundBrush">#33399BFF</SolidColorBrush>
|
|
<SolidColorBrush x:Key="CalendarWorkHourBackgroundBrush">#992C2C2C</SolidColorBrush>
|
|
<SolidColorBrush x:Key="CalendarSelectedHourBackgroundBrush">#66399BFF</SolidColorBrush>
|
|
|
|
<local:AcrylicBrush
|
|
x:Key="WinoApplicationBackgroundColor"
|
|
FallbackColor="#2C2C2C"
|
|
TintColor="#2C2C2C"
|
|
TintOpacity="0.30" />
|
|
</ResourceDictionary>
|
|
</ResourceDictionary.ThemeDictionaries>
|
|
</ResourceDictionary>
|