From f4ef94d63fe7ba68d71a4e3a5a925fedbad29f11 Mon Sep 17 00:00:00 2001
From: ChrisDill <chris.rj.dill@gmail.com>
Date: Mon, 11 Feb 2019 11:25:09 +0000
Subject: [PATCH] Color defines now only in struct

- Color defines removed. Instead use them from Color struct. E.g Color.WHITE.
---
 Bindings/Raylib.cs | 30 +-----------------------------
 README.md          |  1 -
 2 files changed, 1 insertion(+), 30 deletions(-)

diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs
index c7838a1..0c3b0f1 100644
--- a/Bindings/Raylib.cs
+++ b/Bindings/Raylib.cs
@@ -793,35 +793,7 @@ namespace Raylib
         public const string nativeLibName = "raylib";
         public const float DEG2RAD = (float)Math.PI / 180.0f;
         public const float RAD2DEG = 180.0f / (float)Math.PI;
-
-        // Custom raylib color palette for amazing visuals
-        public static Color LIGHTGRAY = new Color(200, 200, 200, 255);
-        public static Color GRAY = new Color(130, 130, 130, 255);
-        public static Color DARKGRAY = new Color(80, 80, 80, 255);
-        public static Color YELLOW = new Color(253, 249, 0, 255);
-        public static Color GOLD = new Color(255, 203, 0, 255);
-        public static Color ORANGE = new Color(255, 161, 0, 255);
-        public static Color PINK = new Color(255, 109, 194, 255);
-        public static Color RED = new Color(230, 41, 55, 255);
-        public static Color MAROON = new Color(190, 33, 55, 255);
-        public static Color GREEN = new Color(0, 228, 48, 255);
-        public static Color LIME = new Color(0, 158, 47, 255);
-        public static Color DARKGREEN = new Color(0, 117, 44, 255);
-        public static Color SKYBLUE = new Color(102, 191, 255, 255);
-        public static Color BLUE = new Color(0, 121, 241, 255);
-        public static Color DARKBLUE = new Color(0, 82, 172, 255);
-        public static Color PURPLE = new Color(200, 122, 255, 255);
-        public static Color VIOLET = new Color(135, 60, 190, 255);
-        public static Color DARKPURPLE = new Color(112, 31, 126, 255);
-        public static Color BEIGE = new Color(211, 176, 131, 255);
-        public static Color BROWN = new Color(127, 106, 79, 255);
-        public static Color DARKBROWN = new Color(76, 63, 47, 255);
-        public static Color WHITE = new Color(255, 255, 255, 255);
-        public static Color BLACK = new Color(0, 0, 0, 255);
-        public static Color BLANK = new Color(0, 0, 0, 0);
-        public static Color MAGENTA = new Color(255, 0, 255, 255);
-        public static Color RAYWHITE = new Color(245, 245, 245, 255);
-
+        
         public const int MAX_SHADER_LOCATIONS = 32;
         public const int MAX_MATERIAL_MAPS = 12;
 
diff --git a/README.md b/README.md
index 373cd7e..c0f7f61 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,6 @@ static class Program
 The bindings are close to the original with a few changes and extensions.
 - Enums are passed in as type instead of int to avoid explicit casting to a int every time.
 - Added constructors for some of the types.
-- Color contains
 
 ## Custom build
 1. Add [raygui](https://github.com/raysan5/raygui)