From 9ede6b905f17ff08538e51670ac86bfb37442bcc Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 29 Nov 2019 18:58:04 -0800 Subject: [PATCH] docs: Fix incorrect and missing colour values for Color fields (#1426) --- src/Discord.Net.Core/Entities/Roles/Color.cs | 39 ++++++++++---------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Roles/Color.cs b/src/Discord.Net.Core/Entities/Roles/Color.cs index b522ae47e..7c2d152a4 100644 --- a/src/Discord.Net.Core/Entities/Roles/Color.cs +++ b/src/Discord.Net.Core/Entities/Roles/Color.cs @@ -16,60 +16,61 @@ namespace Discord /// A color struct with the hex value of 1ABC9C. public static readonly Color Teal = new Color(0x1ABC9C); /// Gets the dark teal color value. + /// A color struct with the hex value of 11806A. public static readonly Color DarkTeal = new Color(0x11806A); /// Gets the green color value. - /// A color struct with the hex value of 11806A. + /// A color struct with the hex value of 2ECC71. public static readonly Color Green = new Color(0x2ECC71); /// Gets the dark green color value. - /// A color struct with the hex value of 2ECC71. + /// A color struct with the hex value of 1F8B4C. public static readonly Color DarkGreen = new Color(0x1F8B4C); /// Gets the blue color value. - /// A color struct with the hex value of 1F8B4C. + /// A color struct with the hex value of 3498DB. public static readonly Color Blue = new Color(0x3498DB); /// Gets the dark blue color value. - /// A color struct with the hex value of 3498DB. + /// A color struct with the hex value of 206694. public static readonly Color DarkBlue = new Color(0x206694); /// Gets the purple color value. - /// A color struct with the hex value of 206694. + /// A color struct with the hex value of 9B59B6. public static readonly Color Purple = new Color(0x9B59B6); /// Gets the dark purple color value. - /// A color struct with the hex value of 9B59B6. + /// A color struct with the hex value of 71368A. public static readonly Color DarkPurple = new Color(0x71368A); /// Gets the magenta color value. - /// A color struct with the hex value of 71368A. + /// A color struct with the hex value of E91E63. public static readonly Color Magenta = new Color(0xE91E63); /// Gets the dark magenta color value. - /// A color struct with the hex value of E91E63. + /// A color struct with the hex value of AD1457. public static readonly Color DarkMagenta = new Color(0xAD1457); /// Gets the gold color value. - /// A color struct with the hex value of AD1457. + /// A color struct with the hex value of F1C40F. public static readonly Color Gold = new Color(0xF1C40F); /// Gets the light orange color value. - /// A color struct with the hex value of F1C40F. + /// A color struct with the hex value of C27C0E. public static readonly Color LightOrange = new Color(0xC27C0E); /// Gets the orange color value. - /// A color struct with the hex value of C27C0E. + /// A color struct with the hex value of E67E22. public static readonly Color Orange = new Color(0xE67E22); /// Gets the dark orange color value. - /// A color struct with the hex value of E67E22. + /// A color struct with the hex value of A84300. public static readonly Color DarkOrange = new Color(0xA84300); /// Gets the red color value. - /// A color struct with the hex value of A84300. + /// A color struct with the hex value of E74C3C. public static readonly Color Red = new Color(0xE74C3C); /// Gets the dark red color value. - /// A color struct with the hex value of E74C3C. - public static readonly Color DarkRed = new Color(0x992D22); - /// Gets the light grey color value. /// A color struct with the hex value of 992D22. + public static readonly Color DarkRed = new Color(0x992D22); + /// Gets the light grey color value. + /// A color struct with the hex value of 979C9F. public static readonly Color LightGrey = new Color(0x979C9F); /// Gets the lighter grey color value. - /// A color struct with the hex value of 979C9F. + /// A color struct with the hex value of 95A5A6. public static readonly Color LighterGrey = new Color(0x95A5A6); /// Gets the dark grey color value. - /// A color struct with the hex value of 95A5A6. + /// A color struct with the hex value of 607D8B. public static readonly Color DarkGrey = new Color(0x607D8B); /// Gets the darker grey color value. - /// A color struct with the hex value of 607D8B. + /// A color struct with the hex value of 546E7A. public static readonly Color DarkerGrey = new Color(0x546E7A); /// Gets the encoded value for this color.