123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
-
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- namespace HOZProject
- {
- /// <summary>
- /// Class TextColor.
- /// </summary>
- public class TextColors
- {
- /// <summary>
- /// The more light
- /// </summary>
- private static Color _MoreLight = ColorTranslator.FromHtml("#c0c4cc");
- /// <summary>
- /// Gets the more light.
- /// </summary>
- /// <value>The more light.</value>
- public static Color MoreLight
- {
- get { return _MoreLight; }
- internal set { _MoreLight = value; }
- }
- /// <summary>
- /// The light
- /// </summary>
- private static Color _Light = ColorTranslator.FromHtml("#909399");
- /// <summary>
- /// Gets the light.
- /// </summary>
- /// <value>The light.</value>
- public static Color Light
- {
- get { return _Light; }
- internal set { _Light = value; }
- }
- /// <summary>
- /// The dark
- /// </summary>
- private static Color _Dark = ColorTranslator.FromHtml("#606266");
- /// <summary>
- /// Gets the dark.
- /// </summary>
- /// <value>The dark.</value>
- public static Color Dark
- {
- get { return _Dark; }
- internal set { _Dark = value; }
- }
- /// <summary>
- /// The more dark
- /// </summary>
- private static Color _MoreDark = ColorTranslator.FromHtml("#303133");
- /// <summary>
- /// Gets the more dark.
- /// </summary>
- /// <value>The more dark.</value>
- public static Color MoreDark
- {
- get { return _MoreDark; }
- internal set { _MoreDark = value; }
- }
- }
- }
|