mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
149 lines
5.3 KiB
XML
149 lines
5.3 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>
|
|
<Style
|
|
x:Key="ItemBulletSelectedStyle"
|
|
BasedOn="{StaticResource ItemBulletSelectedStyle}"
|
|
TargetType="{x:Type Border}">
|
|
<Setter Property="Background" Value="#ca9ee6" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemGlyph"
|
|
BasedOn="{StaticResource ItemGlyph}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#a5adce" />
|
|
</Style>
|
|
<Style
|
|
x:Key="QueryBoxStyle"
|
|
BasedOn="{StaticResource QueryBoxStyle}"
|
|
TargetType="{x:Type TextBox}">
|
|
<Setter Property="Foreground" Value="#c6d0f5" />
|
|
<Setter Property="CaretBrush" Value="#c6d0f5" />
|
|
</Style>
|
|
<Style
|
|
x:Key="QuerySuggestionBoxStyle"
|
|
BasedOn="{StaticResource QuerySuggestionBoxStyle}"
|
|
TargetType="{x:Type TextBox}">
|
|
<Setter Property="Foreground" Value="#a5adce" />
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="WindowBorderStyle"
|
|
BasedOn="{StaticResource WindowBorderStyle}"
|
|
TargetType="{x:Type Border}">
|
|
<Setter Property="BorderBrush" Value="#414559" />
|
|
<Setter Property="Background" Value="#303446" />
|
|
</Style>
|
|
|
|
<!-- Item Style -->
|
|
<Style
|
|
x:Key="ItemTitleStyle"
|
|
BasedOn="{StaticResource ItemTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#b5bfe2" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemSubTitleStyle"
|
|
BasedOn="{StaticResource ItemSubTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#a5adce" />
|
|
</Style>
|
|
<Style
|
|
x:Key="SeparatorStyle"
|
|
BasedOn="{StaticResource SeparatorStyle}"
|
|
TargetType="{x:Type Rectangle}">
|
|
<Setter Property="Fill" Value="#626880" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemTitleSelectedStyle"
|
|
BasedOn="{StaticResource ItemTitleSelectedStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#c6d0f5" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemSubTitleSelectedStyle"
|
|
BasedOn="{StaticResource ItemSubTitleSelectedStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#b5bfe2" />
|
|
</Style>
|
|
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#414559</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="#414559"
|
|
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="#949cbb" />
|
|
</Style>
|
|
<Style x:Key="SearchIconPosition" BasedOn="{StaticResource SearchIconPosition}" TargetType="{x:Type Canvas}">
|
|
<Setter Property="Background" Value="#303446" />
|
|
</Style>
|
|
|
|
<Style x:Key="ItemHotkeyStyle" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#737994" />
|
|
</Style>
|
|
<Style x:Key="ItemHotkeySelectedStyle" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#ca9ee6" />
|
|
</Style>
|
|
<Style x:Key="ItemGlyphSelectedStyle" BasedOn="{StaticResource ItemGlyphSelectedStyle}" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#c6d0f5" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ClockBox"
|
|
BasedOn="{StaticResource ClockBox}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#a5adce" />
|
|
</Style>
|
|
<Style
|
|
x:Key="DateBox"
|
|
BasedOn="{StaticResource DateBox}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#a5adce" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewBorderStyle"
|
|
BasedOn="{StaticResource PreviewBorderStyle}"
|
|
TargetType="{x:Type Border}">
|
|
<Setter Property="BorderBrush" Value="#303446" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewItemTitleStyle"
|
|
BasedOn="{StaticResource PreviewItemTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#8caaee" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewItemSubTitleStyle"
|
|
BasedOn="{StaticResource PreviewItemSubTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#51576d" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewGlyph"
|
|
BasedOn="{StaticResource PreviewGlyph}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#8caaee" />
|
|
</Style>
|
|
</ResourceDictionary>
|