Colors.xaml 1.9 KB
Newer Older
1 2
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
3
    <!--参数设置界面标题背景颜色-->
4
    <SolidColorBrush x:Key="Brush_theme_bar" Color="#C0008BE5"/>
5

6
    <SolidColorBrush x:Key="Background_Title" Color="#C0008BE5"/>
7
    
8
    <!--激活颜色-->
9
    <SolidColorBrush x:Key="Color_theme_activity" Color="#FF008BE5"/>
10
    <!--不活动颜色-->
11
    <SolidColorBrush x:Key="Color_theme_static" Color="#FF3B3B3B"/>
12
    <!--不活动颜色-->
13
    <SolidColorBrush x:Key="Color_theme_noact" Color="#FF888888"/>
14
    <!--背景色-->
15
    <SolidColorBrush x:Key="Color_theme_background" Color="White"/>
16
    <!--激活的字颜色-->
17
    <SolidColorBrush x:Key="Color_theme_text_activity" Color="DarkBlue"/>
18 19 20 21
    <!--不合法颜色-->
    <SolidColorBrush x:Key="Color_theme_validation" Color="DarkRed"/>
    <!--不合法颜色-->
    <SolidColorBrush x:Key="Color_theme_highlight" Color="Red"/>
潘栩锋's avatar
潘栩锋 committed
22 23


24 25 26 27 28 29 30 31 32 33 34
    <!--随机颜色-->
    <x:Array x:Key="RandomColors" 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>
35

36 37 38 39 40 41
    <!--扫描图,纵向趋势图Y轴 标签颜色-->
    <SolidColorBrush x:Key="AreaColors0">#f34336</SolidColorBrush>
    <SolidColorBrush x:Key="AreaColors1">#fec007</SolidColorBrush>
    <SolidColorBrush x:Key="AreaColors2">#4cae50</SolidColorBrush>
    <SolidColorBrush x:Key="AreaColors3">#2195f2</SolidColorBrush>
    <SolidColorBrush x:Key="AreaColors4">DarkSlateBlue</SolidColorBrush>
42 43


潘栩锋's avatar
潘栩锋 committed
44
</ResourceDictionary>