diff --git a/src/Discord.Net.Core/Entities/Roles/DiscordColors.cs b/src/Discord.Net.Core/Entities/Roles/DiscordColors.cs
new file mode 100644
index 000000000..1b5eea5d8
--- /dev/null
+++ b/src/Discord.Net.Core/Entities/Roles/DiscordColors.cs
@@ -0,0 +1,50 @@
+namespace Discord
+{
+ public struct DiscordColors
+ {
+ /// Gets the default color value
+ public static readonly Color Default = new Color(0);
+
+ /// Gets the teal color value
+ public static readonly Color Teal = new Color(0x1ABC9C);
+ /// Gets the dark teal color value
+ public static readonly Color DarkTeal = new Color(0x11806A);
+ /// Gets the green color value
+ public static readonly Color Green = new Color(0x2ECC71);
+ /// Gets the dark green color value
+ public static readonly Color DarkGreen = new Color(0x1F8B4C);
+ /// Gets the blue color value
+ public static readonly Color Blue = new Color(0x3498DB);
+ /// Gets the dark blue color value
+ public static readonly Color DarkBlue = new Color(0x206694);
+ /// Gets the purple color value
+ public static readonly Color Purple = new Color(0x9B59B6);
+ /// Gets the dark purple color value
+ public static readonly Color DarkPurple = new Color(0x71368A);
+ /// Gets the magenta color value
+ public static readonly Color Magenta = new Color(0xE91E63);
+ /// Gets the dark magenta color value
+ public static readonly Color DarkMagenta = new Color(0xAD1457);
+ /// Gets the gold color value
+ public static readonly Color Gold = new Color(0xF1C40F);
+ /// Gets the light orange color value
+ public static readonly Color LightOrange = new Color(0xC27C0E);
+ /// Gets the orange color value
+ public static readonly Color Orange = new Color(0xE67E22);
+ /// Gets the dark orange color value
+ public static readonly Color DarkOrange = new Color(0xA84300);
+ /// Gets the red color value
+ public static readonly Color Red = new Color(0xE74C3C);
+ /// Gets the dark red color value
+ public static readonly Color DarkRed = new Color(0x992D22);
+
+ /// Gets the light grey color value
+ public static readonly Color LightGrey = new Color(0x979C9F);
+ /// Gets the lighter grey color value
+ public static readonly Color LighterGrey = new Color(0x95A5A6);
+ /// Gets the dark grey color value
+ public static readonly Color DarkGrey = new Color(0x607D8B);
+ /// Gets the darker grey color value
+ public static readonly Color DarkerGrey = new Color(0x546E7A);
+ }
+}