forked from Wox-launcher/Wox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Wox-launcher#3037 from cpkio/master
Gray Modded and Atom Dark themes
- Loading branch information
Showing
2 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<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.MergedDictionaries> | ||
<Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}"> | ||
<Setter Property="Foreground" Value="#FFFFFF" /> | ||
<Setter Property="CaretBrush" Value="#FFFFFF"/> | ||
<Setter Property="FontSize" Value="38" /> | ||
<Setter Property="Height" Value="48" /> | ||
</Style> | ||
<Style x:Key="QueryTextSuggestionBoxStyle" BasedOn="{StaticResource BaseQueryTextSuggestionBoxStyle}" TargetType="{x:Type TextBox}"> | ||
<Setter Property="FontSize" Value="38" /> | ||
<Setter Property="Background" Value="#20252B" /> | ||
<Setter Property="Foreground"> | ||
<Setter.Value> | ||
<SolidColorBrush Color="#AAB2C0" Opacity="0.3" /> | ||
</Setter.Value> | ||
</Setter> | ||
<Setter Property="Height" Value="48" /> | ||
</Style> | ||
<Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}"> | ||
<Setter Property="BorderThickness" Value="0" /> | ||
<Setter Property="Background" Value="#20252B"></Setter> | ||
<Setter Property="Padding" Value="16 12 16 8" /> | ||
</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 x:Key="ItemTitleStyle" BasedOn="{StaticResource BaseItemTitleStyle}" TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#AAB2C0" /> | ||
<Setter Property="FontSize" Value="16" /> | ||
</Style> | ||
|
||
<Style x:Key="ItemSubTitleStyle" BasedOn="{StaticResource BaseItemSubTitleStyle}" TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#CCCCCC" /> | ||
</Style> | ||
<Style x:Key="ItemTitleSelectedStyle" BasedOn="{StaticResource BaseItemTitleSelectedStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#FFFFFF" /> | ||
<Setter Property="FontSize" Value="16" /> | ||
</Style> | ||
<Style x:Key="ItemSubTitleSelectedStyle" BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#CCCCCC" /> | ||
</Style> | ||
<SolidColorBrush x:Key="ItemHighlightColor" Color="#FFFFFF"/> | ||
<SolidColorBrush x:Key="ItemSelectedHighlightColor" Color="#FFFFFF"/> | ||
<SolidColorBrush x:Key="ItemSelectedBackgroundColor" Color="#3D4452"/> | ||
<Style x:Key="ThumbStyle" BasedOn="{StaticResource BaseThumbStyle}" TargetType="{x:Type Thumb}"> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="{x:Type Thumb}"> | ||
<Border CornerRadius="2" DockPanel.Dock="Right" Background="#DBDADB" BorderBrush="Transparent" | ||
BorderThickness="0" /> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
</Style> | ||
|
||
<Style x:Key="ScrollBarStyle" BasedOn="{StaticResource BaseScrollBarStyle}" TargetType="{x:Type ScrollBar}"> | ||
<Setter Property="Width" Value="4" /> | ||
</Style> | ||
</ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<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.MergedDictionaries> | ||
<Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}"> | ||
<Setter Property="Foreground" Value="#222222" /> | ||
<Setter Property="CaretBrush" Value="#222222"/> | ||
<Setter Property="FontSize" Value="38" /> | ||
<Setter Property="Height" Value="48" /> | ||
</Style> | ||
<Style x:Key="QueryTextSuggestionBoxStyle" BasedOn="{StaticResource BaseQueryTextSuggestionBoxStyle}" TargetType="{x:Type TextBox}"> | ||
<Setter Property="FontSize" Value="38" /> | ||
<Setter Property="Background" Value="#EDEDED" /> | ||
<Setter Property="Height" Value="48" /> | ||
</Style> | ||
<Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}"> | ||
<Setter Property="BorderBrush" Value="#B0B0B0" /> | ||
<Setter Property="BorderThickness" Value="0" /> | ||
<Setter Property="Background" Value="#EDEDED"></Setter> | ||
<Setter Property="Padding" Value="16 12 16 8" /> | ||
</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 x:Key="ItemTitleStyle" BasedOn="{StaticResource BaseItemTitleStyle}" TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#333333" /> | ||
<Setter Property="FontWeight" Value="Normal" /> | ||
<Setter Property="FontSize" Value="16" /> | ||
</Style> | ||
|
||
<Style x:Key="ItemSubTitleStyle" BasedOn="{StaticResource BaseItemSubTitleStyle}" TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#A6A6A6" /> | ||
</Style> | ||
<Style x:Key="ItemTitleSelectedStyle" BasedOn="{StaticResource BaseItemTitleSelectedStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#FFFFF8" /> | ||
<Setter Property="FontSize" Value="16" /> | ||
</Style> | ||
<Style x:Key="ItemSubTitleSelectedStyle" BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#ffffff" /> | ||
</Style> | ||
<SolidColorBrush x:Key="ItemHighlightColor" Color="#000000"/> | ||
<SolidColorBrush x:Key="ItemSelectedHighlightColor" Color="#000000"/> | ||
<SolidColorBrush x:Key="ItemSelectedBackgroundColor" Color="#00AAF6"/> | ||
<Style x:Key="ThumbStyle" BasedOn="{StaticResource BaseThumbStyle}" TargetType="{x:Type Thumb}"> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="{x:Type Thumb}"> | ||
<Border CornerRadius="2" DockPanel.Dock="Right" Background="#DBDADB" BorderBrush="Transparent" | ||
BorderThickness="0" /> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
</Style> | ||
|
||
<Style x:Key="ScrollBarStyle" BasedOn="{StaticResource BaseScrollBarStyle}" TargetType="{x:Type ScrollBar}"> | ||
<Setter Property="Width" Value="4" /> | ||
</Style> | ||
</ResourceDictionary> |