29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
|
|
||
|
|
<!-- 深色主题基础色 -->
|
||
|
|
<SolidColorBrush x:Key="BackgroundBrush" Color="#1E1E2E"/>
|
||
|
|
<SolidColorBrush x:Key="SurfaceBrush" Color="#2A2A3C"/>
|
||
|
|
<SolidColorBrush x:Key="CardBrush" Color="#313145"/>
|
||
|
|
<SolidColorBrush x:Key="BorderBrush" Color="#3E3E56"/>
|
||
|
|
<SolidColorBrush x:Key="TextPrimaryBrush" Color="#E0E0E0"/>
|
||
|
|
<SolidColorBrush x:Key="TextSecondaryBrush" Color="#A0A0B0"/>
|
||
|
|
<SolidColorBrush x:Key="AccentBrush" Color="#7C6BF0"/>
|
||
|
|
<SolidColorBrush x:Key="AccentHoverBrush" Color="#9585F5"/>
|
||
|
|
<SolidColorBrush x:Key="SuccessBrush" Color="#4CAF50"/>
|
||
|
|
<SolidColorBrush x:Key="WarningBrush" Color="#FF9800"/>
|
||
|
|
<SolidColorBrush x:Key="DangerBrush" Color="#F44336"/>
|
||
|
|
<SolidColorBrush x:Key="TabActiveBrush" Color="#7C6BF0"/>
|
||
|
|
<SolidColorBrush x:Key="TabInactiveBrush" Color="#2A2A3C"/>
|
||
|
|
<SolidColorBrush x:Key="ButtonSecondaryBrush" Color="#3E3E56"/>
|
||
|
|
|
||
|
|
<!-- 圆角 -->
|
||
|
|
<CornerRadius x:Key="CornerRadiusSmall">4</CornerRadius>
|
||
|
|
<CornerRadius x:Key="CornerRadiusMedium">8</CornerRadius>
|
||
|
|
<CornerRadius x:Key="CornerRadiusLarge">12</CornerRadius>
|
||
|
|
|
||
|
|
<!-- 字体 -->
|
||
|
|
<FontFamily x:Key="DefaultFont">Microsoft YaHei UI, Segoe UI</FontFamily>
|
||
|
|
|
||
|
|
</ResourceDictionary>
|