// *********************************************************************** // Assembly : HZH_Controls // Created : 2019-09-30 // // *********************************************************************** // // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com // // // Blog: https://www.cnblogs.com/bfyx // GitHub:https://github.com/kwwwvagaa/NetWinformControl // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git // // If you use this code, please keep this note. // *********************************************************************** using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; namespace HZH_Controls { /// /// Class LineColors. /// public class LineColors { /// /// The more light /// private static Color _MoreLight = ColorTranslator.FromHtml("#f2f6fc"); /// /// Gets the more light. /// /// The more light. public static Color MoreLight { get { return _MoreLight; } internal set { _MoreLight = value; } } /// /// The light /// private static Color _Light = ColorTranslator.FromHtml("#ebeef5"); /// /// Gets the light. /// /// The light. public static Color Light { get { return _Light; } internal set { _Light = value; } } /// /// The dark /// private static Color _Dark = ColorTranslator.FromHtml("#e4e7ed"); /// /// Gets the dark. /// /// The dark. public static Color Dark { get { return _Dark; } internal set { _Dark = value; } } /// /// The more dark /// private static Color _MoreDark = ColorTranslator.FromHtml("#dcdfe6"); /// /// Gets the more dark. /// /// The more dark. public static Color MoreDark { get { return _MoreDark; } internal set { _MoreDark = value; } } } }