wxr
2020-04-14 06696e6f225733a60b03eea4a7c6374053d92c1d
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
using System;
namespace HDL_ON.UI.CSS
{
    public static class CSS_Color
    {
        #region 颜色
        /// <summary>
        /// 主色调
        /// #4484F4
        /// </summary>
        public static uint MainColor = 0xFF4484F4;
        /// <summary>
        /// 辅助色1
        /// #FC9C04
        /// </summary>
        public static uint AuxiliaryColor1 = 0xFFFC9C04;
        /// <summary>
        /// 辅助色2
        /// #FF4747
        /// </summary>
        public static uint AuxiliaryColor2 = 0xFFFF4747;
        /// <summary>
        /// 大标题、正文
        /// #1B2D4D
        /// </summary>
        public static uint FirstLevelTitleColor = 0xFF1B2D4D;
        /// <summary>
        /// 二级标题
        /// #4E586A
        /// </summary>
        public static uint SecondLevelTitleColor = 0xFF4E586A;
        /// <summary>
        /// 正文
        /// #798394
        /// </summary>
        public static uint TextualColor = 0xFF798394  ;
        /// <summary>
        /// 提示性文字1
        /// #C0C7D4
        /// </summary>
        public static uint PromptingColor1 = 0xFFC0C7D4;
        /// <summary>
        /// 提示性文字1
        /// #DFE1E6
        /// </summary>
        public static uint PromptingColor2 = 0xFFDFE1E6;
        /// <summary>
        /// 分割线
        /// #ECEDEE
        /// </summary>
        public static uint DividingLineColor = 0xFFECEDEE;
        /// <summary>
        /// 背景颜色
        /// #F2F3F7
        /// </summary>
        public static uint BackgroundColor = 0xFFF2F3F7;
 
        /// <summary>
        /// 主色调字体颜色
        /// 0xFFFFFFFF
        /// </summary>
        public static uint MainBackgroundColor = 0XFFFFFFFF;
 
        /// <summary>
        /// 顶部区域背景颜色
        /// 0xFFF7F7F7
        /// </summary>
        public static uint TopViewColor = 0xFFF7F7F7;
 
        public static uint WarningColor = 0xFFFF4747;
        /// <summary>
        /// 弹窗半透明背景色1
        /// </summary>
        public static uint DialogTransparentColor1 = 0x99000000;
        /// <summary>
        /// 弹窗半透明背景色2
        /// </summary>
        public static uint DialogTransparentColor2 = 0x33000000;
 
        /// <summary>
        /// 90%透明白色
        /// </summary>
        public static uint TipBgColor1 = 0xE6FFFFFF;
 
 
        #endregion
    }
 
 
    public static class CSS_FontSize
    {
        #region 字体大小
        /// <summary>
        /// 一级强调字号
        /// 24
        /// </summary>
        public static int EmphasisFontSize_FirstLevel = 24;
        /// <summary>
        /// 二级强调字号
        /// 20
        /// </summary>
        public static int EmphasisFontSize_Secondary = 20;
        /// <summary>
        /// 大 标题字体
        /// 18
        /// </summary>
        public static int HeadlineFontSize = 18;
        /// <summary>
        /// 小标题字号
        /// 16
        /// </summary>
        public static int SubheadingFontSize = 16;
        /// <summary>
        /// 正文字号
        /// 14
        /// </summary>
        public static int TextFontSize = 14;
        /// <summary>
        /// 一级提示性字号
        /// 12
        /// </summary>
        public static int PromptFontSize_FirstLevel = 12;
        /// <summary>
        /// 二级提示性字号
        /// 10
        /// </summary>
        public static int PromptFontSize_SecondaryLevel = 10;
        #endregion
    }
 
}