view MetroWpf/MetroWpf.Xaml/Styles/MetroWpf.Accents.xaml @ 121:8f94475d3146 tip

final code
author stevenh7776
date Thu, 31 May 2012 15:35:26 +0100
parents 060f02cd4591
children
line wrap: on
line source

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <!--ACCENT COLORS-->
    <Color x:Key="HighlightDarkColor">#FFbe0606</Color>
    <Color x:Key="HighlightLightColor">#FFbe0606</Color>

    <Color x:Key="AccentDarkColor">#FFbe0606</Color>

    <!--80%-->
    <Color x:Key="AccentColor">#CCbe0606</Color>
    <!--60%-->
    <Color x:Key="AccentColor2">#99ff3333</Color>
    <!--40%-->
    <Color x:Key="AccentColor3">#66ff3333</Color>
    <!--20%-->
    <Color x:Key="AccentColor4">#33ff3333</Color>

    <LinearGradientBrush x:Key="BrandingBrush"
                         EndPoint="0,0.5"
                         StartPoint="1,0.5">
        <GradientStop Color="{DynamicResource HighlightDarkColor}"
                      Offset="0" />
        <GradientStop Color="Blue"
                      Offset="1" />
    </LinearGradientBrush>

    <SolidColorBrush x:Key="AccentColorBrush"
                     Color="{DynamicResource AccentColor}" />
</ResourceDictionary>