Skip to content

Commit 03d134d

Browse files
committed
Add sublime theme
1 parent 2144577 commit 03d134d

File tree

1 file changed

+93
-0
lines changed

1 file changed

+93
-0
lines changed

Flow.Launcher/Themes/Sublime.xaml

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
3+
xmlns:system="clr-namespace:System;assembly=mscorlib">
4+
<ResourceDictionary.MergedDictionaries>
5+
<ResourceDictionary Source="pack://application:,,,/Themes/Base.xaml" />
6+
</ResourceDictionary.MergedDictionaries>
7+
8+
<Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}">
9+
<Setter Property="FontSize" Value="24" />
10+
<Setter Property="Background" Value="#303840" />
11+
<Setter Property="Foreground" Value="#d2d8e5" />
12+
<Setter Property="CaretBrush" Value="#FFAA47" />
13+
<Setter Property="FontSize" Value="26" />
14+
<Setter Property="Padding" Value="0 4 0 0" />
15+
</Style>
16+
<Style x:Key="QuerySuggestionBoxStyle" BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}" TargetType="{x:Type TextBox}">
17+
<Setter Property="Background" Value="#303840" />
18+
<Setter Property="Foreground" Value="#798189" />
19+
<Setter Property="FontSize" Value="26" />
20+
<Setter Property="Padding" Value="0 4 0 0" />
21+
</Style>
22+
<Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}">
23+
<Setter Property="BorderThickness" Value="2" />
24+
<Setter Property="BorderBrush" Value="#6c7279" />
25+
<Setter Property="CornerRadius" Value="6" />
26+
<Setter Property="Background" Value="#303840" />
27+
</Style>
28+
<Style x:Key="WindowStyle" BasedOn="{StaticResource BaseWindowStyle}" TargetType="{x:Type Window}">
29+
<Setter Property="Width" Value="576" />
30+
<Setter Property="RenderOptions.ClearTypeHint" Value="Enabled"/>
31+
</Style>
32+
33+
<Style x:Key="PendingLineStyle" BasedOn="{StaticResource BasePendingLineStyle}" TargetType="{x:Type Line}">
34+
</Style>
35+
36+
<!-- Item Style -->
37+
<Style x:Key="ItemTitleStyle" BasedOn="{StaticResource BaseItemTitleStyle}" TargetType="{x:Type TextBlock}">
38+
<Setter Property="Foreground" Value="#5989b2" />
39+
</Style>
40+
<Style x:Key="ItemSubTitleStyle" BasedOn="{StaticResource BaseItemSubTitleStyle}" TargetType="{x:Type TextBlock}" >
41+
<Setter Property="Foreground" Value="#7b858f" />
42+
<Setter Property="FontSize" Value="13" />
43+
</Style>
44+
<Style x:Key="ItemNumberStyle" BasedOn="{StaticResource BaseItemNumberStyle}" TargetType="{x:Type TextBlock}">
45+
<Setter Property="Foreground" Value="#7b858f" />
46+
</Style>
47+
<Style x:Key="ItemTitleSelectedStyle" BasedOn="{StaticResource BaseItemTitleSelectedStyle}" TargetType="{x:Type TextBlock}" >
48+
<Setter Property="Cursor" Value="Arrow" />
49+
<Setter Property="Foreground" Value="#5bafb0" />
50+
</Style>
51+
<Style x:Key="ItemSubTitleSelectedStyle" BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" TargetType="{x:Type TextBlock}" >
52+
<Setter Property="Cursor" Value="Arrow" />
53+
<Setter Property="Foreground" Value="#cc8ec8" />
54+
</Style>
55+
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#3c454e</SolidColorBrush>
56+
<Style x:Key="ItemImageSelectedStyle" BasedOn="{StaticResource BaseItemImageSelectedStyle}" TargetType="{x:Type Image}" >
57+
<Setter Property="Cursor" Value="Arrow" />
58+
</Style>
59+
<Style x:Key="HighlightStyle">
60+
<Setter Property="Inline.Foreground" Value="#ea7354" />
61+
</Style>
62+
<Style x:Key="ItemHotkeyStyle" TargetType="{x:Type TextBlock}">
63+
<Setter Property="FontSize" Value="13" />
64+
<Setter Property="Foreground" Value="#5bafb0" />
65+
</Style>
66+
<!-- button style in the middle of the scrollbar -->
67+
<Style x:Key="ThumbStyle" BasedOn="{StaticResource BaseThumbStyle}" TargetType="{x:Type Thumb}">
68+
<Setter Property="SnapsToDevicePixels" Value="True"/>
69+
<Setter Property="OverridesDefaultStyle" Value="true"/>
70+
<Setter Property="IsTabStop" Value="false"/>
71+
<Setter Property="Width" Value="2"/>
72+
<Setter Property="Focusable" Value="false"/>
73+
<Setter Property="Template">
74+
<Setter.Value>
75+
<ControlTemplate TargetType="{x:Type Thumb}">
76+
<Border CornerRadius="2" DockPanel.Dock="Right" Background="#6c7279" BorderBrush="Transparent" BorderThickness="0" />
77+
</ControlTemplate>
78+
</Setter.Value>
79+
</Setter>
80+
</Style>
81+
<Style x:Key="ScrollBarStyle" BasedOn="{StaticResource BaseScrollBarStyle}" TargetType="{x:Type ScrollBar}">
82+
</Style>
83+
<Style x:Key="SeparatorStyle" BasedOn="{StaticResource BaseSeparatorStyle}" TargetType="{x:Type Rectangle}">
84+
<Setter Property="Fill" Value="#3c454e"/>
85+
<Setter Property="Height" Value="1"/>
86+
<Setter Property="Margin" Value="0 0 0 8"/>
87+
</Style>
88+
<Style x:Key="SearchIconStyle" TargetType="{x:Type Path}" BasedOn="{StaticResource BaseSearchIconStyle}">
89+
<Setter Property="Fill" Value="#3c454e" />
90+
<Setter Property="Width" Value="32" />
91+
<Setter Property="Height" Value="32" />
92+
</Style>
93+
</ResourceDictionary>

0 commit comments

Comments
 (0)