blob: b8865e34d2a6ee591bc186224f45581689ca731f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!--
#252525 - Dark
#363636 - Mid
#414141 - Light
#606060 - Ultralight
-->
<SolidColorBrush x:Key="Ui.Dark" Color="#252525" />
<SolidColorBrush x:Key="Ui.Mid" Color="#363636" />
<SolidColorBrush x:Key="Ui.Light" Color="#464646" />
<SolidColorBrush x:Key="Ui.Ultralight" Color="#606060" />
<SolidColorBrush x:Key="Ui.ContrastLight" Color="#C0C0C0" />
<SolidColorBrush x:Key="Ui.WhiteSmoke" Color="WhiteSmoke" />
<!-- General -->
<SolidColorBrush x:Key="{x:Static SystemColors.WindowBrushKey}" Color="#252525" />
<SolidColorBrush x:Key="{x:Static SystemColors.WindowTextBrushKey}" Color="White" />
<SolidColorBrush x:Key="{x:Static SystemColors.ControlTextBrushKey}" Color="White" />
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="WhiteSmoke" />
<SolidColorBrush x:Key="{x:Static SystemColors.MenuTextBrushKey}" Color="WhiteSmoke" />
<SolidColorBrush x:Key="{x:Static SystemColors.ControlDarkBrushKey}" Color="WhiteSmoke" />
<!-- Listbox -->
<Style TargetType="ListBox">
<Setter Property="Background" Value="{DynamicResource Ui.Dark}" />
<Setter Property="Foreground" Value="White" />
</Style>
<!-- Tooltip -->
<Style x:Key="{x:Type ToolTip}" TargetType="ToolTip">
<Setter Property="Background" Value="{DynamicResource Ui.Mid}" />
<Setter Property="HasDropShadow" Value="True" />
</Style>
<!-- StatusBar -->
<Style TargetType="StatusBar">
<Setter Property="Background" Value="{DynamicResource Ui.Mid}" />
<Setter Property="Foreground" Value="White" />
</Style>
<!-- Text Entry Controls -->
<Style TargetType="TextBox" BasedOn="{StaticResource {x:Type TextBox}}">
<Setter Property="Background" Value="{DynamicResource Ui.Light}" />
</Style>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="White"/>
<Setter Property="VerticalAlignment" Value="Center"/>
</Style>
<!-- Tab Control -->
<Style TargetType="{x:Type TabControl}">
<Setter Property="Background" Value="{DynamicResource Ui.Mid}"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
</Style>
<Style TargetType="TabItem">
<Setter Property="Background" Value="{DynamicResource Ui.Mid}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="TabItem">
<Grid Name="Panel">
<ContentPresenter x:Name="ContentSite" VerticalAlignment="Center" HorizontalAlignment="Center" ContentSource="Header" Margin="10,6"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter TargetName="Panel" Property="Background" Value="{DynamicResource Ui.Mid}" />
</Trigger>
<Trigger Property="IsSelected" Value="False">
<Setter TargetName="Panel" Property="Background" Value="{DynamicResource Ui.Dark}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<!-- DataGrid -->
<Style TargetType="{x:Type DataGridColumnHeader}" BasedOn="{StaticResource {x:Type DataGridColumnHeader}}">
<Setter Property="Background" Value="{DynamicResource Ui.Dark}"/>
<Setter Property="BorderBrush" Value="{DynamicResource Ui.Ultralight}"/>
<Setter Property="Height" Value="28" />
<Setter Property="BorderThickness" Value="0,1,0,1"/>
</Style>
<!-- ComboBox-->
<Style TargetType="{x:Type ComboBox}" BasedOn="{StaticResource ComboBoxBaseStyle}">
<Setter Property="MinHeight" Value="22"/>
<Setter Property="Margin" Value="0,2,0,2" />
<Setter Property="ToolTipService.ShowDuration" Value="20000" />
</Style>
<!-- Glyph -->
<SolidColorBrush x:Key="GlyphBrush" Color="WhiteSmoke"/>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Controls/ComboBoxDark.xaml" />
<ResourceDictionary Source="Controls/ButtonDark.xaml" />
<ResourceDictionary Source="Controls/ContextMenuDark.xaml" />
<ResourceDictionary Source="Controls/ToolbarDark.xaml" />
<ResourceDictionary Source="Controls/GroupBoxDark.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
|