using System; namespace HDL_ON.UI.CSS { public static class CSS_Color { #region 颜色 /// /// 主色调 /// #4484F4 /// public static uint MainColor = 0xFF4484F4; /// /// 辅助色1 /// #FC9C04 /// public static uint AuxiliaryColor1 = 0xFFFC9C04; /// /// 辅助色2 /// #FF4747 /// public static uint AuxiliaryColor2 = 0xFFFF4747; /// /// 大标题、正文 /// #1B2D4D /// public static uint FirstLevelTitleColor = 0xFF1B2D4D; /// /// 二级标题 /// #4E586A /// public static uint SecondLevelTitleColor = 0xFF4E586A; /// /// 正文 /// #798394 /// public static uint TextualColor = 0xFF798394 ; /// /// 提示性文字1 /// #C0C7D4 /// public static uint PromptingColor1 = 0xFFC0C7D4; /// /// 提示性文字1 /// #DFE1E6 /// public static uint PromptingColor2 = 0xFFDFE1E6; /// /// 分割线 /// #ECEDEE /// public static uint DividingLineColor = 0xFFECEDEE; /// /// 背景颜色 /// #F2F3F7 /// public static uint BackgroundColor = 0xFFF2F3F7; /// /// 主色调字体颜色 /// 0xFFFFFFFF /// public static uint MainBackgroundColor = 0XFFFFFFFF; /// /// 顶部区域背景颜色 /// 0xFFF7F7F7 /// public static uint TopViewColor = 0xFFF7F7F7; public static uint WarningColor = 0xFFFF4747; /// /// 弹窗半透明背景色1 /// public static uint DialogTransparentColor1 = 0x99000000; /// /// 弹窗半透明背景色1 /// public static uint DialogTransparentColor2 = 0x33000000; #endregion } public static class CSS_FontSize { #region 字体大小 /// /// 一级强调字号 /// 24 /// public static int EmphasisFontSize_FirstLevel = 24; /// /// 二级强调字号 /// 20 /// public static int EmphasisFontSize_Secondary = 20; /// /// 大 标题字体 /// 18 /// public static int HeadlineFontSize = 18; /// /// 小标题字号 /// 16 /// public static int SubheadingFontSize = 16; /// /// 正文字号 /// 14 /// public static int TextFontSize = 14; /// /// 一级提示性字号 /// 12 /// public static int PromptFontSize_FirstLevel = 12; /// /// 二级提示性字号 /// 10 /// public static int PromptFontSize_SecondaryLevel = 10; #endregion } }