TextColors.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Drawing;
  5. using System.Linq;
  6. using System.Text;
  7. namespace HOZProject
  8. {
  9. /// <summary>
  10. /// Class TextColor.
  11. /// </summary>
  12. public class TextColors
  13. {
  14. /// <summary>
  15. /// The more light
  16. /// </summary>
  17. private static Color _MoreLight = ColorTranslator.FromHtml("#c0c4cc");
  18. /// <summary>
  19. /// Gets the more light.
  20. /// </summary>
  21. /// <value>The more light.</value>
  22. public static Color MoreLight
  23. {
  24. get { return _MoreLight; }
  25. internal set { _MoreLight = value; }
  26. }
  27. /// <summary>
  28. /// The light
  29. /// </summary>
  30. private static Color _Light = ColorTranslator.FromHtml("#909399");
  31. /// <summary>
  32. /// Gets the light.
  33. /// </summary>
  34. /// <value>The light.</value>
  35. public static Color Light
  36. {
  37. get { return _Light; }
  38. internal set { _Light = value; }
  39. }
  40. /// <summary>
  41. /// The dark
  42. /// </summary>
  43. private static Color _Dark = ColorTranslator.FromHtml("#606266");
  44. /// <summary>
  45. /// Gets the dark.
  46. /// </summary>
  47. /// <value>The dark.</value>
  48. public static Color Dark
  49. {
  50. get { return _Dark; }
  51. internal set { _Dark = value; }
  52. }
  53. /// <summary>
  54. /// The more dark
  55. /// </summary>
  56. private static Color _MoreDark = ColorTranslator.FromHtml("#303133");
  57. /// <summary>
  58. /// Gets the more dark.
  59. /// </summary>
  60. /// <value>The more dark.</value>
  61. public static Color MoreDark
  62. {
  63. get { return _MoreDark; }
  64. internal set { _MoreDark = value; }
  65. }
  66. }
  67. }