Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #region Directives
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- #endregion
- #region Browse
- /* Copyright & Contact
- * --------------------------------------------------------------------------------<
- * Tool Name : Costume Colors *
- * From Project : Creator Eye *
- * Project Lang : C# *
- * Creator : Yassine Abbani *
- * Facebook : https://www.facebook.com/YassineAbbani.user *
- * Pastebin : https://pastebin.com/u/Yassine_Abbani *
- * Youtube : https://www.youtube.com/channel/UCqvOCRs3HWbPH4yuZuTx8mw *
- * Version : 1.0 Beta *
- *>--------------------------------------------------------------------------------<
- */
- /* Features
- * ------------------------
- * Custom Properties:
- * Costume Colors > Type your Own Colors and call that color with your costume color name.
- */
- /* history
- * ------------------------
- * 1.0 (24 May 2018):
- * In my Source Code Get Costume Color Manager Component code and use it at your project to transform your colors.
- *
- */
- #endregion
- #region Costume Colors
- public sealed class Ce_Colors
- {
- public static Color Red
- {
- get { return Color.FromArgb(204, 24, 30); }
- }
- public static Color LightRed
- {
- get { return Color.FromArgb(230, 33, 23); }
- }
- public static Color DarkRed
- {
- get { return Color.FromArgb(179, 18, 23); }
- }
- public static Color Blue
- {
- get { return Color.FromArgb(18, 109, 179); }
- }
- public static Color LighterBlue
- {
- get { return Color.FromArgb(22, 122, 198); }
- }
- public static Color DarkBlue
- {
- get { return Color.FromArgb(9, 91, 153); }
- }
- public static Color White
- {
- get { return Color.White; }
- }
- public static Color Silver
- {
- get { return Color.FromArgb(211, 211, 211); }
- }
- public static Color LightSilver
- {
- get { return Color.FromArgb(241, 241, 241); }
- }
- public static Color LighterSilver
- {
- get { return Color.FromArgb(248, 248, 248); }
- }
- public static Color DarkGray
- {
- get { return Color.FromArgb(51, 51, 51); }
- }
- public static Color Gray
- {
- get { return Color.FromArgb(102, 102, 102); }
- }
- public static Color LightGray
- {
- get { return Color.FromArgb(198, 198, 198); }
- }
- public static Color LighterGray
- {
- get { return Color.FromArgb(233, 233, 233); }
- }
- }
- #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement