<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:local="clr-namespace:FLY.Thick.Blowing.UI.Fix.Client">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/>
        <ResourceDictionary Source="pack://application:,,,/FLY.Thick.Base.UI;component/Converter/Dictionary_MyConv.xaml"/>
        <ResourceDictionary Source="pack://application:,,,/FLY.Thick.Base.UI;component/Themes/Styles.xaml"/>
    </ResourceDictionary.MergedDictionaries>

    <Style x:Key="AccentedSquareButtonStyle2" TargetType="Button" BasedOn="{StaticResource AccentedSquareButtonStyle}">
        <Setter Property="FontSize" Value="18"/>
        <Setter Property="Width" Value="120"/>
        <Setter Property="Height" Value="40"/>
        <Setter Property="Margin" Value="5"/>
    </Style>
    <Style x:Key="SquareButtonStyle2" TargetType="Button" BasedOn="{StaticResource SquareButtonStyle}">
        <Setter Property="FontSize" Value="18"/>
        <Setter Property="Width" Value="120"/>
        <Setter Property="Height" Value="40"/>
        <Setter Property="Margin" Value="5"/>
    </Style>
    <Style x:Key="HighlightedSquareButtonStyle2" TargetType="Button" BasedOn="{StaticResource HighlightedSquareButtonStyle}">
        <Setter Property="FontSize" Value="18"/>
        <Setter Property="Width" Value="120"/>
        <Setter Property="Height" Value="40"/>
        <Setter Property="Margin" Value="5"/>
    </Style>
    <SolidColorBrush x:Key="axisLabelColor" Color="DarkSlateBlue"/>
    <SolidColorBrush x:Key="axisSeparatorColor" Color="DarkSlateBlue" Opacity="0.5"/>
    <local:LimitList2SectionsConverter x:Key="limit2SectionsConv"/>
    <DropShadowEffect x:Key="CardShadow" Color="#303030" Opacity=".25" BlurRadius="5" ShadowDepth="3"/>
    <Style x:Key="CardTitleStyle" TargetType="TextBlock">
        <Setter Property="Background" Value="#FFC107"/>
        <Setter Property="FontSize" Value="18"/>
        <Setter Property="HorizontalAlignment" Value="Right"/>
        <Setter Property="Padding" Value="20 5"/>
        <Setter Property="FontWeight" Value="Bold"/>
    </Style>
    <Style x:Key="CardBorderStyle" TargetType="Border">
        <Setter Property="Margin" Value="10"/>
        <Setter Property="Background" Value="White"/>
        <Setter Property="CornerRadius" Value="3"/>
        <Setter Property="Padding" Value="8"/>
        <Setter Property="BorderThickness" Value="1"/>
        <Setter Property="BorderBrush" Value="#EBEBEB"/>
        <Setter Property="Effect" Value="{StaticResource CardShadow}"/>
    </Style>

</ResourceDictionary>