9 lines
493 B
Plaintext
9 lines
493 B
Plaintext
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
|
<!-- 深色主题 -->
|
||
|
|
<Color x:Key="BackgroundColor">#222222</Color>
|
||
|
|
<Color x:Key="ForegroundColor">#DDDDDD</Color>
|
||
|
|
|
||
|
|
<SolidColorBrush x:Key="AppBackgroundBrush" Color="{DynamicResource BackgroundColor}"/>
|
||
|
|
<SolidColorBrush x:Key="AppTextBrush" Color="{DynamicResource ForegroundColor}"/>
|
||
|
|
</ResourceDictionary>
|