Skip to content

Commit bca2145

Browse files
committed
Add Darker Theme (Garul'fs request)
1 parent cf3d88f commit bca2145

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

Flow.Launcher/Themes/Darker.xaml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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="#ffffff" />
14+
</Style>
15+
<Style
16+
x:Key="QueryBoxStyle"
17+
BasedOn="{StaticResource BaseQueryBoxStyle}"
18+
TargetType="{x:Type TextBox}">
19+
<Setter Property="SelectionBrush" Value="#6e6e6e" />
20+
<Setter Property="SelectionBrush" Value="#4D4D4D" />
21+
</Style>
22+
23+
<Style
24+
x:Key="QuerySuggestionBoxStyle"
25+
BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}"
26+
TargetType="{x:Type TextBox}">
27+
<Setter Property="Foreground" Value="#8f8f8f" />
28+
</Style>
29+
<Style
30+
x:Key="WindowBorderStyle"
31+
BasedOn="{StaticResource BaseWindowBorderStyle}"
32+
TargetType="{x:Type Border}" />
33+
34+
<Style
35+
x:Key="WindowStyle"
36+
BasedOn="{StaticResource BaseWindowStyle}"
37+
TargetType="{x:Type Window}" />
38+
39+
<Style
40+
x:Key="PendingLineStyle"
41+
BasedOn="{StaticResource BasePendingLineStyle}"
42+
TargetType="{x:Type Line}" />
43+
44+
<!-- Item Style -->
45+
<Style
46+
x:Key="ItemTitleStyle"
47+
BasedOn="{StaticResource BaseItemTitleStyle}"
48+
TargetType="{x:Type TextBlock}" />
49+
<Style
50+
x:Key="ItemSubTitleStyle"
51+
BasedOn="{StaticResource BaseItemSubTitleStyle}"
52+
TargetType="{x:Type TextBlock}">
53+
<Setter Property="Foreground" Value="#8f8f8f" />
54+
</Style>
55+
<Style
56+
x:Key="ItemTitleSelectedStyle"
57+
BasedOn="{StaticResource BaseItemTitleSelectedStyle}"
58+
TargetType="{x:Type TextBlock}">
59+
<Setter Property="Cursor" Value="Arrow" />
60+
</Style>
61+
<Style
62+
x:Key="ItemSubTitleSelectedStyle"
63+
BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}"
64+
TargetType="{x:Type TextBlock}">
65+
<Setter Property="Foreground" Value="#8f8f8f" />
66+
<Setter Property="Cursor" Value="Arrow" />
67+
</Style>
68+
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#4d4d4d</SolidColorBrush>
69+
<Style
70+
x:Key="ItemImageSelectedStyle"
71+
BasedOn="{StaticResource BaseItemImageSelectedStyle}"
72+
TargetType="{x:Type Image}">
73+
<Setter Property="Cursor" Value="Arrow" />
74+
</Style>
75+
76+
<!-- button style in the middle of the scrollbar -->
77+
<Style
78+
x:Key="ThumbStyle"
79+
BasedOn="{StaticResource BaseThumbStyle}"
80+
TargetType="{x:Type Thumb}" />
81+
82+
<Style
83+
x:Key="ScrollBarStyle"
84+
BasedOn="{StaticResource BaseScrollBarStyle}"
85+
TargetType="{x:Type ScrollBar}" />
86+
<Style
87+
x:Key="SeparatorStyle"
88+
BasedOn="{StaticResource BaseSeparatorStyle}"
89+
TargetType="{x:Type Rectangle}">
90+
<Setter Property="Fill" Value="#3b3b3b" />
91+
<Setter Property="Height" Value="1" />
92+
<Setter Property="Margin" Value="8,0,8,8" />
93+
</Style>
94+
<Style
95+
x:Key="PreviewBorderStyle"
96+
BasedOn="{StaticResource BasePreviewBorderStyle}"
97+
TargetType="{x:Type Border}">
98+
<Setter Property="BorderBrush" Value="#3b3b3b" />
99+
</Style>
100+
</ResourceDictionary>

0 commit comments

Comments
 (0)