1
+ <ResourceDictionary
2
+ xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns : system =" clr-namespace:System;assembly=mscorlib" >
5
+ <ResourceDictionary .MergedDictionaries>
6
+ <ResourceDictionary Source =" pack://application:,,,/Themes/Base.xaml" />
7
+ </ResourceDictionary .MergedDictionaries>
8
+ <Thickness x : Key =" ResultMargin" >0 0 0 8</Thickness >
9
+ <Style
10
+ x : Key =" ItemGlyph"
11
+ BasedOn =" {StaticResource BaseGlyphStyle}"
12
+ TargetType =" {x:Type TextBlock}" >
13
+ <Setter Property =" Foreground" Value =" #ebebeb" />
14
+ </Style >
15
+ <Style
16
+ x : Key =" QueryBoxStyle"
17
+ BasedOn =" {StaticResource BaseQueryBoxStyle}"
18
+ TargetType =" {x:Type TextBox}" >
19
+ <Setter Property =" Foreground" Value =" #ebebeb" />
20
+ <Setter Property =" Background" Value =" Transparent" />
21
+ </Style >
22
+
23
+ <Style
24
+ x : Key =" QuerySuggestionBoxStyle"
25
+ BasedOn =" {StaticResource BaseQuerySuggestionBoxStyle}"
26
+ TargetType =" {x:Type TextBox}" >
27
+ <Setter Property =" Foreground" Value =" #ebebeb" />
28
+ <Setter Property =" Opacity" Value =" 0.2" />
29
+ </Style >
30
+
31
+ <Style
32
+ x : Key =" WindowBorderStyle"
33
+ BasedOn =" {StaticResource BaseWindowBorderStyle}"
34
+ TargetType =" {x:Type Border}" >
35
+ <Setter Property =" CornerRadius" Value =" 5" />
36
+ <Setter Property =" BorderThickness" Value =" 1,1,0,0" />
37
+ <Setter Property =" BorderBrush" Value =" #666666" />
38
+ <Setter Property =" Background" >
39
+ <Setter .Value>
40
+ <SolidColorBrush Opacity =" 0.95" Color =" #333333" />
41
+ </Setter .Value>
42
+ </Setter >
43
+ </Style >
44
+
45
+ <Style
46
+ x : Key =" WindowStyle"
47
+ BasedOn =" {StaticResource BaseWindowStyle}"
48
+ TargetType =" {x:Type Window}" >
49
+ <Setter Property =" Background" >
50
+ <Setter .Value>
51
+ <SolidColorBrush Opacity =" 0.5" Color =" White" />
52
+ </Setter .Value>
53
+ </Setter >
54
+ </Style >
55
+
56
+ <Style
57
+ x : Key =" PendingLineStyle"
58
+ BasedOn =" {StaticResource BasePendingLineStyle}"
59
+ TargetType =" {x:Type Line}" />
60
+
61
+ <!-- Item Style -->
62
+ <Style
63
+ x : Key =" ItemTitleStyle"
64
+ BasedOn =" {StaticResource BaseItemTitleStyle}"
65
+ TargetType =" {x:Type TextBlock}" >
66
+ <Setter Property =" Foreground" Value =" #ebebeb" />
67
+ </Style >
68
+ <Style
69
+ x : Key =" ItemSubTitleStyle"
70
+ BasedOn =" {StaticResource BaseItemSubTitleStyle}"
71
+ TargetType =" {x:Type TextBlock}" >
72
+ <Setter Property =" Foreground" Value =" #787878" />
73
+ </Style >
74
+ <Style
75
+ x : Key =" ItemTitleSelectedStyle"
76
+ BasedOn =" {StaticResource BaseItemTitleSelectedStyle}"
77
+ TargetType =" {x:Type TextBlock}" >
78
+ <Setter Property =" Foreground" Value =" #ffffff" />
79
+ </Style >
80
+ <Style
81
+ x : Key =" ItemSubTitleSelectedStyle"
82
+ BasedOn =" {StaticResource BaseItemSubTitleSelectedStyle}"
83
+ TargetType =" {x:Type TextBlock}" >
84
+ <Setter Property =" Foreground" Value =" #949494" />
85
+ </Style >
86
+ <SolidColorBrush x : Key =" ItemSelectedBackgroundColor" >#545454</SolidColorBrush >
87
+
88
+ <!-- button style in the middle of the scrollbar -->
89
+ <Style
90
+ x : Key =" ThumbStyle"
91
+ BasedOn =" {StaticResource BaseThumbStyle}"
92
+ TargetType =" {x:Type Thumb}" >
93
+ <Setter Property =" Template" >
94
+ <Setter .Value>
95
+ <ControlTemplate TargetType =" {x:Type Thumb}" >
96
+ <Border
97
+ Background =" #525252"
98
+ BorderBrush =" Transparent"
99
+ BorderThickness =" 0"
100
+ CornerRadius =" 2"
101
+ DockPanel.Dock=" Right" />
102
+ </ControlTemplate >
103
+ </Setter .Value>
104
+ </Setter >
105
+ </Style >
106
+ <Style
107
+ x : Key =" ScrollBarStyle"
108
+ BasedOn =" {StaticResource BaseScrollBarStyle}"
109
+ TargetType =" {x:Type ScrollBar}" >
110
+ <Setter Property =" Background" Value =" #a0a0a0" />
111
+ </Style >
112
+ <Style
113
+ x : Key =" SearchIconStyle"
114
+ BasedOn =" {StaticResource BaseSearchIconStyle}"
115
+ TargetType =" {x:Type Path}" >
116
+ <Setter Property =" Fill" Value =" #FFFFFF" />
117
+ <Setter Property =" Width" Value =" 32" />
118
+ <Setter Property =" Height" Value =" 32" />
119
+ <Setter Property =" Opacity" Value =" 0.2" />
120
+ </Style >
121
+ <Style
122
+ x : Key =" SeparatorStyle"
123
+ BasedOn =" {StaticResource BaseSeparatorStyle}"
124
+ TargetType =" {x:Type Rectangle}" >
125
+ <Setter Property =" Fill" Value =" #474747" />
126
+ <Setter Property =" Height" Value =" 1" />
127
+ <Setter Property =" Margin" Value =" 0,0,0,8" />
128
+ </Style >
129
+ <Style x : Key =" ItemHotkeyStyle" TargetType =" {x:Type TextBlock}" >
130
+ <Setter Property =" FontSize" Value =" 14" />
131
+ <Setter Property =" Foreground" Value =" #787878" />
132
+ </Style >
133
+ <Style x : Key =" ItemHotkeySelectedStyle" TargetType =" {x:Type TextBlock}" >
134
+ <Setter Property =" FontSize" Value =" 14" />
135
+ <Setter Property =" Foreground" Value =" #787878" />
136
+ </Style >
137
+ <Style
138
+ x : Key =" ClockBox"
139
+ BasedOn =" {StaticResource BaseClockBox}"
140
+ TargetType =" {x:Type TextBlock}" >
141
+ <Setter Property =" Foreground" Value =" #787878" />
142
+ </Style >
143
+ <Style
144
+ x : Key =" DateBox"
145
+ BasedOn =" {StaticResource BaseDateBox}"
146
+ TargetType =" {x:Type TextBlock}" >
147
+ <Setter Property =" Foreground" Value =" #787878" />
148
+ </Style >
149
+ <Style
150
+ x : Key =" PreviewBorderStyle"
151
+ BasedOn =" {StaticResource BasePreviewBorderStyle}"
152
+ TargetType =" {x:Type Border}" >
153
+ <Setter Property =" BorderBrush" Value =" #474747" />
154
+ </Style >
155
+
156
+ <Style
157
+ x : Key =" PreviewItemTitleStyle"
158
+ BasedOn =" {StaticResource BasePreviewItemTitleStyle}"
159
+ TargetType =" {x:Type TextBlock}" >
160
+ <Setter Property =" Foreground" Value =" #ebebeb" />
161
+ </Style >
162
+ <Style
163
+ x : Key =" PreviewItemSubTitleStyle"
164
+ BasedOn =" {StaticResource BasePreviewItemSubTitleStyle}"
165
+ TargetType =" {x:Type TextBlock}" >
166
+ <Setter Property =" Foreground" Value =" #787878" />
167
+ </Style >
168
+ <Style
169
+ x : Key =" PreviewGlyph"
170
+ BasedOn =" {StaticResource BasePreviewGlyph}"
171
+ TargetType =" {x:Type TextBlock}" >
172
+ <Setter Property =" Foreground" Value =" #ebebeb" />
173
+ </Style >
174
+ </ResourceDictionary >
0 commit comments