23 lines
1003 B
XML
23 lines
1003 B
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:xaml="using:Windows.UI.Xaml">
|
|
|
|
<x:String x:Key="ThemeName">Mica</x:String>
|
|
<x:Boolean x:Key="UseMica">True</x:Boolean>
|
|
|
|
<SolidColorBrush x:Key="WinoApplicationBackgroundColor">Transparent</SolidColorBrush>
|
|
<SolidColorBrush x:Key="AppBarBackgroundColor">Transparent</SolidColorBrush>
|
|
|
|
<!-- Mica Template -->
|
|
<ResourceDictionary.ThemeDictionaries>
|
|
<ResourceDictionary x:Name="Light">
|
|
<!-- Reading Page Date/Name Group Header Background -->
|
|
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#ecf0f1</SolidColorBrush>
|
|
</ResourceDictionary>
|
|
<ResourceDictionary x:Name="Dark">
|
|
<SolidColorBrush x:Key="MailListHeaderBackgroundColor">#1f1f1f</SolidColorBrush>
|
|
</ResourceDictionary>
|
|
</ResourceDictionary.ThemeDictionaries>
|
|
</ResourceDictionary>
|