Advertisement
Yassine_Abbani

Costume Colors [Themming], [Custom Control]

May 24th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.87 KB | None | 0 0
  1. #region Directives
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Drawing;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. #endregion
  9. #region Browse
  10. /* Copyright & Contact
  11. * --------------------------------------------------------------------------------<
  12. * Tool Name    : Costume Colors                                                   *
  13. * From Project : Creator Eye                                                      *
  14. * Project Lang : C#                                                               *
  15. * Creator      : Yassine Abbani                                                   *
  16. * Facebook     : https://www.facebook.com/YassineAbbani.user                      *
  17. * Pastebin     : https://pastebin.com/u/Yassine_Abbani                            *
  18. * Youtube      : https://www.youtube.com/channel/UCqvOCRs3HWbPH4yuZuTx8mw         *
  19. * Version      : 1.0 Beta                                                         *
  20. *>--------------------------------------------------------------------------------<
  21. */
  22. /* Features
  23. * ------------------------
  24. *   Custom Properties:
  25.  *  Costume Colors > Type your Own Colors and call that color with your costume color name.
  26. */
  27. /*  history
  28. * ------------------------
  29. * 1.0 (24 May 2018):
  30.  * In my Source Code Get Costume Color Manager Component code and use it at your project to transform your colors.
  31. *
  32. */
  33. #endregion
  34. #region Costume Colors
  35. public sealed class Ce_Colors
  36. {
  37.  
  38.     public static Color Red
  39.     {
  40.         get { return Color.FromArgb(204, 24, 30); }
  41.     }
  42.  
  43.     public static Color LightRed
  44.     {
  45.         get { return Color.FromArgb(230, 33, 23); }
  46.     }
  47.  
  48.     public static Color DarkRed
  49.     {
  50.         get { return Color.FromArgb(179, 18, 23); }
  51.     }
  52.  
  53.     public static Color Blue
  54.     {
  55.         get { return Color.FromArgb(18, 109, 179); }
  56.     }
  57.  
  58.     public static Color LighterBlue
  59.     {
  60.         get { return Color.FromArgb(22, 122, 198); }
  61.     }
  62.  
  63.     public static Color DarkBlue
  64.     {
  65.         get { return Color.FromArgb(9, 91, 153); }
  66.     }
  67.  
  68.     public static Color White
  69.     {
  70.         get { return Color.White; }
  71.     }
  72.  
  73.     public static Color Silver
  74.     {
  75.         get { return Color.FromArgb(211, 211, 211); }
  76.     }
  77.  
  78.     public static Color LightSilver
  79.     {
  80.         get { return Color.FromArgb(241, 241, 241); }
  81.     }
  82.  
  83.     public static Color LighterSilver
  84.     {
  85.         get { return Color.FromArgb(248, 248, 248); }
  86.     }
  87.  
  88.     public static Color DarkGray
  89.     {
  90.         get { return Color.FromArgb(51, 51, 51); }
  91.     }
  92.  
  93.     public static Color Gray
  94.     {
  95.         get { return Color.FromArgb(102, 102, 102); }
  96.     }
  97.  
  98.     public static Color LightGray
  99.     {
  100.         get { return Color.FromArgb(198, 198, 198); }
  101.     }
  102.  
  103.     public static Color LighterGray
  104.     {
  105.         get { return Color.FromArgb(233, 233, 233); }
  106.     }
  107.  
  108. }
  109. #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement