1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!--参数设置界面标题背景颜色-->
<SolidColorBrush x:Key="Brush_theme_bar" Color="#C0008BE5"/>
<SolidColorBrush x:Key="Background_Title" Color="#C0008BE5"/>
<!--激活颜色-->
<SolidColorBrush x:Key="Color_theme_activity" Color="#FF008BE5"/>
<!--不活动颜色-->
<SolidColorBrush x:Key="Color_theme_static" Color="#FF3B3B3B"/>
<!--不活动颜色-->
<SolidColorBrush x:Key="Color_theme_noact" Color="#FF888888"/>
<!--背景色-->
<SolidColorBrush x:Key="Color_theme_background" Color="White"/>
<!--激活的字颜色-->
<SolidColorBrush x:Key="Color_theme_text_activity" Color="DarkBlue"/>
<!--不合法颜色-->
<SolidColorBrush x:Key="Color_theme_validation" Color="DarkRed"/>
<!--不合法颜色-->
<SolidColorBrush x:Key="Color_theme_highlight" Color="Red"/>
<!--随机颜色-->
<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>
<!--扫描图,纵向趋势图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>
</ResourceDictionary>