mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- change the code for compatible classic themes (You can use it without modifying the classic theme.) - add default window radius(5) for classic themes - add default hotkey color - but still default - New themes are used in a way that redefines the base code by changing and including it. - The basic height and each item spacing had to be changed. This part should also be changed to a theme.
36 lines
No EOL
2.3 KiB
XML
36 lines
No EOL
2.3 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/Themes/Base.xaml"></ResourceDictionary>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}">
|
|
<Setter Property="Background" Value="#1f1d1f"/>
|
|
<Setter Property="Foreground" Value="#cc1081" />
|
|
</Style>
|
|
|
|
<Style x:Key="QuerySuggestionBoxStyle" BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}" TargetType="{x:Type TextBox}">
|
|
<Setter Property="Background" Value="#1f1d1f"/>
|
|
<Setter Property="Foreground" Value="#cc1081" />
|
|
</Style>
|
|
|
|
<Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}">
|
|
<Setter Property="Background" Value="#1f1d1f"></Setter>
|
|
</Style>
|
|
<Style x:Key="WindowStyle" TargetType="{x:Type Window}" BasedOn="{StaticResource BaseWindowStyle}" >
|
|
</Style>
|
|
<Style x:Key="PendingLineStyle" BasedOn="{StaticResource BasePendingLineStyle}" TargetType="{x:Type Line}" ></Style>
|
|
<Style x:Key="ItemTitleStyle" BasedOn="{StaticResource BaseItemTitleStyle}" TargetType="{x:Type TextBlock}" >
|
|
<Setter Property="Foreground" Value="#f5f5f5"></Setter>
|
|
</Style>
|
|
<Style x:Key="ItemSubTitleStyle" BasedOn="{StaticResource BaseItemSubTitleStyle}" TargetType="{x:Type TextBlock}" >
|
|
<Setter Property="Foreground" Value="#c2c2c2"></Setter>
|
|
</Style>
|
|
<Style x:Key="ItemTitleSelectedStyle" BasedOn="{StaticResource BaseItemTitleSelectedStyle}" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#f5f5f5" />
|
|
</Style>
|
|
<Style x:Key="ItemSubTitleSelectedStyle" BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#c2c2c2" />
|
|
</Style>
|
|
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#cc1081</SolidColorBrush>
|
|
<Style x:Key="ThumbStyle" BasedOn="{StaticResource BaseThumbStyle}" TargetType="{x:Type Thumb}"></Style>
|
|
<Style x:Key="ScrollBarStyle" BasedOn="{StaticResource BaseScrollBarStyle}" TargetType="{x:Type ScrollBar}"></Style>
|
|
</ResourceDictionary> |