155 lines
5.6 KiB
XML
155 lines
5.6 KiB
XML
<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>
|
|
<system:Boolean x:Key="ThemeBlurEnabled">True</system:Boolean>
|
|
<system:String x:Key="SystemBG">Auto</system:String>
|
|
<Color x:Key="LightBG">#181825</Color>
|
|
<Color x:Key="DarkBG">#181825</Color>
|
|
<Style
|
|
x:Key="ItemBulletSelectedStyle"
|
|
BasedOn="{StaticResource ItemBulletSelectedStyle}"
|
|
TargetType="{x:Type Border}">
|
|
<Setter Property="Background" Value="#cba6f7" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemGlyph"
|
|
BasedOn="{StaticResource ItemGlyph}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#a6adc8" />
|
|
</Style>
|
|
<Style
|
|
x:Key="QueryBoxStyle"
|
|
BasedOn="{StaticResource QueryBoxStyle}"
|
|
TargetType="{x:Type TextBox}">
|
|
<Setter Property="Foreground" Value="#cdd6f4" />
|
|
<Setter Property="CaretBrush" Value="#cdd6f4" />
|
|
<Setter Property="SelectionBrush" Value="#a88bcf" />
|
|
</Style>
|
|
<Style
|
|
x:Key="QuerySuggestionBoxStyle"
|
|
BasedOn="{StaticResource QuerySuggestionBoxStyle}"
|
|
TargetType="{x:Type TextBox}">
|
|
<Setter Property="Foreground" Value="#a6adc8" />
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="WindowBorderStyle"
|
|
BasedOn="{StaticResource WindowBorderStyle}"
|
|
TargetType="{x:Type Border}">
|
|
<Setter Property="BorderBrush" Value="#313244" />
|
|
<Setter Property="Background" Value="#181825" />
|
|
</Style>
|
|
|
|
<!-- Item Style -->
|
|
<Style
|
|
x:Key="ItemTitleStyle"
|
|
BasedOn="{StaticResource ItemTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#bac2de" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemSubTitleStyle"
|
|
BasedOn="{StaticResource ItemSubTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#a6adc8" />
|
|
</Style>
|
|
<Style
|
|
x:Key="SeparatorStyle"
|
|
BasedOn="{StaticResource SeparatorStyle}"
|
|
TargetType="{x:Type Rectangle}">
|
|
<Setter Property="Fill" Value="#585b70" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemTitleSelectedStyle"
|
|
BasedOn="{StaticResource ItemTitleSelectedStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#cdd6f4" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemSubTitleSelectedStyle"
|
|
BasedOn="{StaticResource ItemSubTitleSelectedStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#bac2de" />
|
|
</Style>
|
|
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#313244</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="#313244"
|
|
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="#9399b2" />
|
|
</Style>
|
|
<Style x:Key="SearchIconPosition" BasedOn="{StaticResource SearchIconPosition}" TargetType="{x:Type Canvas}">
|
|
<Setter Property="Background" Value="#181825" />
|
|
</Style>
|
|
|
|
<Style x:Key="ItemHotkeyStyle" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#6c7086" />
|
|
</Style>
|
|
<Style x:Key="ItemHotkeySelectedStyle" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#cba6f7" />
|
|
</Style>
|
|
<Style x:Key="ItemGlyphSelectedStyle" BasedOn="{StaticResource ItemGlyphSelectedStyle}" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#cdd6f4" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ClockBox"
|
|
BasedOn="{StaticResource ClockBox}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#a6adc8" />
|
|
</Style>
|
|
<Style
|
|
x:Key="DateBox"
|
|
BasedOn="{StaticResource DateBox}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#a6adc8" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewBorderStyle"
|
|
BasedOn="{StaticResource PreviewBorderStyle}"
|
|
TargetType="{x:Type Border}">
|
|
<Setter Property="BorderBrush" Value="#181825" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewItemTitleStyle"
|
|
BasedOn="{StaticResource PreviewItemTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#89b4fa" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewItemSubTitleStyle"
|
|
BasedOn="{StaticResource PreviewItemSubTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#45475a" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewGlyph"
|
|
BasedOn="{StaticResource PreviewGlyph}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#89b4fa" />
|
|
</Style>
|
|
</ResourceDictionary>
|