// *********************************************************************** // 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.Linq; using System.Text; using System.Drawing; namespace HZH_Controls { /// /// Class BasisColors. /// public class BasisColors { /// /// The light /// private static Color light = ColorTranslator.FromHtml("#f5f7fa"); /// /// Gets the light. /// /// The light. public static Color Light { get { return light; } internal set { light = value; } } /// /// The medium /// private static Color medium = ColorTranslator.FromHtml("#f0f2f5"); /// /// Gets the medium. /// /// The medium. public static Color Medium { get { return medium; } internal set { medium = value; } } /// /// The dark /// private static Color dark = ColorTranslator.FromHtml("#000000"); /// /// Gets the dark. /// /// The dark. public static Color Dark { get { return dark; } internal set { dark = value; } } } }