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
|
}
|
|
}
|