From 3a3ca96b0ddbe2a87a940fb87cbff6bbef7c0f4b Mon Sep 17 00:00:00 2001 From: Ecstabis Date: Tue, 20 Feb 2018 22:51:03 +0000 Subject: [PATCH] Added 2 basic role colors PINKISH_PURPLE and DARK_PINKISH_PURPLE (#2303) * Added 2 basic role colors PINKISH_PURPLE and DARK_PINKISH_PURPLE * Added documentation for added Colors PINKISH_PURPLE and DARK_PINKISH_PURPLE * fix colour names * docs --- src/util/Constants.js | 2 ++ src/util/Util.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/util/Constants.js b/src/util/Constants.js index b29a2dea8..a0cccd73a 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -605,6 +605,7 @@ exports.Colors = { GREEN: 0x2ECC71, BLUE: 0x3498DB, PURPLE: 0x9B59B6, + LUMINOUS_VIVID_PINK: 0xE91E63, GOLD: 0xF1C40F, ORANGE: 0xE67E22, RED: 0xE74C3C, @@ -614,6 +615,7 @@ exports.Colors = { DARK_GREEN: 0x1F8B4C, DARK_BLUE: 0x206694, DARK_PURPLE: 0x71368A, + DARK_VIVID_PINK: 0xAD1457, DARK_GOLD: 0xC27C0E, DARK_ORANGE: 0xA84300, DARK_RED: 0x992D22, diff --git a/src/util/Util.js b/src/util/Util.js index d7988599d..c121c3deb 100644 --- a/src/util/Util.js +++ b/src/util/Util.js @@ -234,6 +234,7 @@ class Util { * - `GREEN` * - `BLUE` * - `PURPLE` + * - `LUMINOUS_VIVID_PINK` * - `GOLD` * - `ORANGE` * - `RED` @@ -244,6 +245,7 @@ class Util { * - `DARK_GREEN` * - `DARK_BLUE` * - `DARK_PURPLE` + * - `DARK_VIVID_PINK` * - `DARK_GOLD` * - `DARK_ORANGE` * - `DARK_RED`