-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRetroWave1984.xaml
148 lines (144 loc) · 5.33 KB
/
RetroWave1984.xaml
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/Themes/Win11Light.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style
x:Key="ItemBulletSelectedStyle"
BasedOn="{StaticResource ItemBulletSelectedStyle}"
TargetType="{x:Type Border}">
<Setter Property="Background" Value="#00FFFF" />
</Style>
<Style
x:Key="ItemGlyph"
BasedOn="{StaticResource ItemGlyph}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#FF00DE" />
</Style>
<Style
x:Key="QueryBoxStyle"
BasedOn="{StaticResource QueryBoxStyle}"
TargetType="{x:Type TextBox}">
<Setter Property="Foreground" Value="#F0E68C" />
<Setter Property="CaretBrush" Value="#F0E68C" />
</Style>
<Style
x:Key="QuerySuggestionBoxStyle"
BasedOn="{StaticResource QuerySuggestionBoxStyle}"
TargetType="{x:Type TextBox}">
<Setter Property="Foreground" Value="#FF69B4" />
</Style>
<Style
x:Key="WindowBorderStyle"
BasedOn="{StaticResource WindowBorderStyle}"
TargetType="{x:Type Border}">
<Setter Property="BorderBrush" Value="#FF00DE" />
<Setter Property="Background" Value="#0C0C1E" />
</Style>
<!-- Item Style -->
<Style
x:Key="ItemTitleStyle"
BasedOn="{StaticResource ItemTitleStyle}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#00FFFF" />
</Style>
<Style
x:Key="ItemSubTitleStyle"
BasedOn="{StaticResource ItemSubTitleStyle}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#FF69B4" />
</Style>
<Style
x:Key="SeparatorStyle"
BasedOn="{StaticResource SeparatorStyle}"
TargetType="{x:Type Rectangle}">
<Setter Property="Fill" Value="#FF00DE" />
</Style>
<Style
x:Key="ItemTitleSelectedStyle"
BasedOn="{StaticResource ItemTitleSelectedStyle}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#FFFFFF" />
</Style>
<Style
x:Key="ItemSubTitleSelectedStyle"
BasedOn="{StaticResource ItemSubTitleSelectedStyle}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#F0E68C" />
</Style>
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#1F1F3F</SolidColorBrush>
<!-- button style in the middle of the scrollbar -->
<Style
x:Key="ThumbStyle"
BasedOn="{StaticResource ThumbStyle}"
TargetType="{x:Type Thumb}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Thumb}">
<Border
Background="#FF00DE"
BorderBrush="Transparent"
BorderThickness="0"
CornerRadius="2"
DockPanel.Dock="Right" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style
x:Key="SearchIconStyle"
BasedOn="{StaticResource SearchIconStyle}"
TargetType="{x:Type Path}">
<Setter Property="Fill" Value="#00FFFF" />
</Style>
<Style x:Key="SearchIconPosition" BasedOn="{StaticResource SearchIconPosition}" TargetType="{x:Type Canvas}">
<Setter Property="Background" Value="#0C0C1E" />
</Style>
<Style x:Key="ItemHotkeyStyle" TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#FF69B4" />
</Style>
<Style x:Key="ItemHotkeySelectedStyle" TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#F0E68C" />
</Style>
<Style x:Key="ItemGlyphSelectedStyle" BasedOn="{StaticResource ItemGlyphSelectedStyle}" TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#FFFFFF" />
</Style>
<Style
x:Key="ClockBox"
BasedOn="{StaticResource ClockBox}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#00FFFF" />
</Style>
<Style
x:Key="DateBox"
BasedOn="{StaticResource DateBox}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#00FFFF" />
</Style>
<Style
x:Key="PreviewBorderStyle"
BasedOn="{StaticResource PreviewBorderStyle}"
TargetType="{x:Type Border}">
<Setter Property="BorderBrush" Value="#FF00DE" />
</Style>
<Style
x:Key="PreviewItemTitleStyle"
BasedOn="{StaticResource PreviewItemTitleStyle}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#00FFFF" />
</Style>
<Style
x:Key="PreviewItemSubTitleStyle"
BasedOn="{StaticResource PreviewItemSubTitleStyle}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#FF69B4" />
</Style>
<Style
x:Key="PreviewGlyph"
BasedOn="{StaticResource PreviewGlyph}"
TargetType="{x:Type TextBlock}">
<Setter Property="Foreground" Value="#00FFFF" />
</Style>
</ResourceDictionary>