From 5b65e4feb9d9f8c3d84012612b8e5ed9ad4308ed Mon Sep 17 00:00:00 2001
From: Still Hsu <341464@gmail.com>
Date: Wed, 27 Jun 2018 07:24:06 +0800
Subject: [PATCH] Shift color return docs
---
src/Discord.Net.Core/Entities/Roles/Color.cs | 41 ++++++++++----------
1 file changed, 21 insertions(+), 20 deletions(-)
diff --git a/src/Discord.Net.Core/Entities/Roles/Color.cs b/src/Discord.Net.Core/Entities/Roles/Color.cs
index e1de2d1f7..b3de6d5ff 100644
--- a/src/Discord.Net.Core/Entities/Roles/Color.cs
+++ b/src/Discord.Net.Core/Entities/Roles/Color.cs
@@ -15,63 +15,64 @@ namespace Discord
/// Gets the default user color value.
public static readonly Color Default = new Color(0);
/// Gets the teal color value.
+ /// A color class with the hex value of 1ABC9C.
public static readonly Color Teal = new Color(0x1ABC9C);
/// Gets the dark teal color value.
- /// A color class with the hex value of 1ABC9C.
+ /// A color class with the hex value of 11806A.
public static readonly Color DarkTeal = new Color(0x11806A);
/// Gets the green color value.
- /// A color class with the hex value of 11806A.
+ /// A color class with the hex value of 2ECC71.
public static readonly Color Green = new Color(0x2ECC71);
/// Gets the dark green color value.
- /// A color class with the hex value of 2ECC71.
+ /// A color class with the hex value of 1F8B4C.
public static readonly Color DarkGreen = new Color(0x1F8B4C);
/// Gets the blue color value.
- /// A color class with the hex value of 1F8B4C.
+ /// A color class with the hex value of 3498DB.
public static readonly Color Blue = new Color(0x3498DB);
/// Gets the dark blue color value.
- /// A color class with the hex value of 3498DB.
+ /// A color class with the hex value of 206694.
public static readonly Color DarkBlue = new Color(0x206694);
/// Gets the purple color value.
- /// A color class with the hex value of 206694.
+ /// A color class with the hex value of 9B59B6.
public static readonly Color Purple = new Color(0x9B59B6);
/// Gets the dark purple color value.
- /// A color class with the hex value of 9B59B6.
+ /// A color class with the hex value of 71368A.
public static readonly Color DarkPurple = new Color(0x71368A);
/// Gets the magenta color value.
- /// A color class with the hex value of 71368A.
+ /// A color class with the hex value of E91E63.
public static readonly Color Magenta = new Color(0xE91E63);
/// Gets the dark magenta color value.
- /// A color class with the hex value of E91E63.
+ /// A color class with the hex value of AD1457.
public static readonly Color DarkMagenta = new Color(0xAD1457);
/// Gets the gold color value.
- /// A color class with the hex value of AD1457.
+ /// A color class with the hex value of F1C40F.
public static readonly Color Gold = new Color(0xF1C40F);
/// Gets the light orange color value.
- /// A color class with the hex value of F1C40F.
+ /// A color class with the hex value of C27C0E.
public static readonly Color LightOrange = new Color(0xC27C0E);
/// Gets the orange color value.
- /// A color class with the hex value of C27C0E.
+ /// A color class with the hex value of E67E22.
public static readonly Color Orange = new Color(0xE67E22);
/// Gets the dark orange color value.
- /// A color class with the hex value of E67E22.
+ /// A color class with the hex value of A84300.
public static readonly Color DarkOrange = new Color(0xA84300);
/// Gets the red color value.
- /// A color class with the hex value of A84300.
+ /// A color class with the hex value of E74C3C.
public static readonly Color Red = new Color(0xE74C3C);
/// Gets the dark red color value.
- /// A color class with the hex value of E74C3C.
- public static readonly Color DarkRed = new Color(0x992D22);
- /// Gets the light grey color value.
/// A color class with the hex value of 992D22.
+ public static readonly Color DarkRed = new Color(0x992D22);
+ /// Gets the light grey color value.
+ /// A color class with the hex value of 979C9F.
public static readonly Color LightGrey = new Color(0x979C9F);
/// Gets the lighter grey color value.
- /// A color class with the hex value of 979C9F.
+ /// A color class with the hex value of 95A5A6.
public static readonly Color LighterGrey = new Color(0x95A5A6);
/// Gets the dark grey color value.
- /// A color class with the hex value of 95A5A6.
+ /// A color class with the hex value of 607D8B.
public static readonly Color DarkGrey = new Color(0x607D8B);
/// Gets the darker grey color value.
- /// A color class with the hex value of 607D8B.
+ /// A color class with the hex value of 546E7A.
public static readonly Color DarkerGrey = new Color(0x546E7A);
/// Gets the encoded value for this color.