blob: a68fba4336d6b00771ff85399514a4b080b2e714 (
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
|
<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" />
<!-- 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" />
<!-- Button -->
<Style TargetType="Button">
<Setter Property="Background" Value="{DynamicResource Ui.Light}" />
<Setter Property="Foreground" Value="White" />
</Style>
<!-- Listbox -->
<Style TargetType="ListBox">
<Setter Property="Background" Value="{DynamicResource Ui.Dark}" />
<Setter Property="Foreground" Value="White" />
</Style>
<!-- Toolbar -->
<Style TargetType="ToolBar">
<Setter Property="Background" Value="Black" />
<Setter Property="Foreground" Value="White" />
</Style>
<!-- Menu -->
<Style TargetType="Menu">
<Setter Property="Background" Value="{DynamicResource Ui.Mid}" />
<Setter Property="Foreground" Value="White" />
</Style>
<Style TargetType="MenuItem">
<Setter Property="Background" Value="{DynamicResource Ui.Mid}" />
<Setter Property="Foreground" Value="White" />
</Style>
<!-- StatusBar -->
<Style TargetType="StatusBar">
<Setter Property="Background" Value="{DynamicResource Ui.Mid}" />
<Setter Property="Foreground" Value="White" />
</Style>
<!-- Text Entry Controls -->
<Style TargetType="TextBox">
<Setter Property="Background" Value="{DynamicResource Ui.Light}" />
</Style>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="White"/>
</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>
<!-- ComboBox -->
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Controls/ComboBoxDark.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
|