11 lines
495 B
XML
11 lines
495 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<!-- 浅色主题 -->
|
|
<Color x:Key="BackgroundColor">#EEEEEE</Color>
|
|
<Color x:Key="ForegroundColor">#111111</Color>
|
|
|
|
<SolidColorBrush x:Key="AppBackgroundBrush" Color="{DynamicResource BackgroundColor}"/>
|
|
<SolidColorBrush x:Key="AppTextBrush" Color="{DynamicResource ForegroundColor}"/>
|
|
|
|
</ResourceDictionary> |