|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
| 3 | + <ResourceDictionary.MergedDictionaries> |
| 4 | + <ResourceDictionary Source="pack://application:,,,/Themes/Base.xaml" /> |
| 5 | + </ResourceDictionary.MergedDictionaries> |
| 6 | + <Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}"> |
| 7 | + <Setter Property="Background" Value="#2e3440" /> |
| 8 | + <Setter Property="Foreground" Value="#eceff4" /> |
| 9 | + <Setter Property="FontSize" Value="30" /> |
| 10 | + </Style> |
| 11 | + |
| 12 | + <Style x:Key="QuerySuggestionBoxStyle" BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}" TargetType="{x:Type TextBox}"> |
| 13 | + <Setter Property="Background" Value="#2e3440" /> |
| 14 | + <Setter Property="Foreground" Value="#eceff4" /> |
| 15 | + <Setter Property="FontSize" Value="30" /> |
| 16 | + </Style> |
| 17 | + |
| 18 | + <Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}"> |
| 19 | + <Setter Property="BorderBrush" Value="#4c566a" /> |
| 20 | + <Setter Property="BorderThickness" Value="1" /> |
| 21 | + <Setter Property="Background" Value="#2e3440"></Setter> |
| 22 | + </Style> |
| 23 | + <Style x:Key="WindowStyle" TargetType="{x:Type Window}" BasedOn="{StaticResource BaseWindowStyle}" > |
| 24 | + </Style> |
| 25 | + <Style x:Key="PendingLineStyle" BasedOn="{StaticResource BasePendingLineStyle}" TargetType="{x:Type Line}" /> |
| 26 | + <Style x:Key="ItemTitleStyle" BasedOn="{StaticResource BaseItemTitleStyle}" TargetType="{x:Type TextBlock}"> |
| 27 | + <Setter Property="Foreground" Value="#e5e9f0" /> |
| 28 | + <Setter Property="FontWeight" Value="Bold" /> |
| 29 | + </Style> |
| 30 | + <Style x:Key="ItemNumberStyle" BasedOn="{StaticResource BaseItemNumberStyle}" TargetType="{x:Type TextBlock}"> |
| 31 | + <Setter Property="Foreground" Value="#A6A6A6" /> |
| 32 | + </Style> |
| 33 | + <Style x:Key="ItemSubTitleStyle" BasedOn="{StaticResource BaseItemSubTitleStyle}" TargetType="{x:Type TextBlock}"> |
| 34 | + <Setter Property="Foreground" Value="#d8dee9" /> |
| 35 | + </Style> |
| 36 | + <Style x:Key="ItemTitleSelectedStyle" BasedOn="{StaticResource BaseItemTitleSelectedStyle}" TargetType="{x:Type TextBlock}"> |
| 37 | + <Setter Property="Foreground" Value="#2e3440" /> |
| 38 | + </Style> |
| 39 | + <Style x:Key="ItemSubTitleSelectedStyle" BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" TargetType="{x:Type TextBlock}"> |
| 40 | + <Setter Property="Foreground" Value="#4c566a" /> |
| 41 | + </Style> |
| 42 | + <SolidColorBrush x:Key="ItemSelectedBackgroundColor">#5e81ac</SolidColorBrush> |
| 43 | + <Style x:Key="ThumbStyle" BasedOn="{StaticResource BaseThumbStyle}" TargetType="{x:Type Thumb}"> |
| 44 | + <Setter Property="Template"> |
| 45 | + <Setter.Value> |
| 46 | + <ControlTemplate TargetType="{x:Type Thumb}"> |
| 47 | + <Border CornerRadius="2" DockPanel.Dock="Right" Background="#4c566a" BorderBrush="Transparent" BorderThickness="0" /> |
| 48 | + </ControlTemplate> |
| 49 | + </Setter.Value> |
| 50 | + </Setter> |
| 51 | + </Style> |
| 52 | + |
| 53 | + <Style x:Key="ScrollBarStyle" BasedOn="{StaticResource BaseScrollBarStyle}" TargetType="{x:Type ScrollBar}" > |
| 54 | + <Setter Property="Width" Value="3"/> |
| 55 | + </Style> |
| 56 | +</ResourceDictionary> |
0 commit comments