Colors2.xaml 2.35 KB
Newer Older
1 2 3 4 5 6
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <!--激活颜色-->
    <SolidColorBrush x:Key="Brushes.Activity" Color="{StaticResource MahApps.Colors.AccentBase}"/>
    <!--不活动颜色-->
7
    <SolidColorBrush x:Key="Brushes.Static" Color="{StaticResource MahApps.Colors.Gray1}"/>
8
    <!--不活动颜色-->
潘栩锋's avatar
潘栩锋 committed
9
    <SolidColorBrush x:Key="Brushes.NoAct" Color="{StaticResource MahApps.Colors.Gray2}"/>
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
    <!--背景色-->
    <SolidColorBrush x:Key="Brushes.ThemeBackground" Color="{StaticResource MahApps.Colors.ThemeBackground}"/>
    <!--激活的字颜色-->
    <SolidColorBrush x:Key="Brushes.Text.Activity" Color="{StaticResource MahApps.Colors.Highlight}"/>
    <!--不合法颜色-->
    <SolidColorBrush x:Key="Brushes.Validation" Color="DarkRed"/>
    <!--不合法颜色-->
    <SolidColorBrush x:Key="Brushes.Highlight" Color="Red"/>


    <!--随机颜色-->
    <x:Array x:Key="Brushes.Random" Type="SolidColorBrush">
        <SolidColorBrush>#2195f2</SolidColorBrush>
        <SolidColorBrush>#f34336</SolidColorBrush>
        <SolidColorBrush>#fec007</SolidColorBrush>
        <SolidColorBrush>#607d8a</SolidColorBrush>
        <SolidColorBrush>#e81e63</SolidColorBrush>
        <SolidColorBrush>#4cae50</SolidColorBrush>
        <SolidColorBrush>#3f51b4</SolidColorBrush>
        <SolidColorBrush>#ccdb39</SolidColorBrush>
    </x:Array>
31 32 33 34 35 36 37 38 39 40 41
    <x:Array x:Key="Brushes.Random.Dark" Type="SolidColorBrush">
        <SolidColorBrush>#104673</SolidColorBrush>
        <SolidColorBrush>#731f19</SolidColorBrush>
        <SolidColorBrush>#806104</SolidColorBrush>
        <SolidColorBrush>#2d3a40</SolidColorBrush>
        <SolidColorBrush>#801137</SolidColorBrush>
        <SolidColorBrush>#1c401d</SolidColorBrush>
        <SolidColorBrush>#1b224d</SolidColorBrush>
        <SolidColorBrush>#474d14</SolidColorBrush>
    </x:Array>
    
42 43 44 45 46 47 48
    <!--扫描图,纵向趋势图Y轴 标签颜色-->
    <SolidColorBrush x:Key="Brushes.Area0">#f34336</SolidColorBrush>
    <SolidColorBrush x:Key="Brushes.Area1">#fec007</SolidColorBrush>
    <SolidColorBrush x:Key="Brushes.Area2">#4cae50</SolidColorBrush>
    <SolidColorBrush x:Key="Brushes.Area3">#2195f2</SolidColorBrush>
    <SolidColorBrush x:Key="Brushes.Area4">DarkSlateBlue</SolidColorBrush>
</ResourceDictionary>