From 38bf24a6e51444d526212311db15f77fa25f989a Mon Sep 17 00:00:00 2001 From: Casper Date: Sat, 22 May 2021 09:52:48 +0200 Subject: [PATCH] chore(Colors): use new Discord colors (#5624) * chore(Colors): use new Discord colors * chore(Colors): add fuchsia color * chore(Colors): add fuchsia color to ColorResolvable --- src/util/Constants.js | 9 +++++---- typings/index.d.ts | 10 ++++++---- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/util/Constants.js b/src/util/Constants.js index 9d7aead77..240292d77 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -521,14 +521,15 @@ exports.Colors = { DEFAULT: 0x000000, WHITE: 0xffffff, AQUA: 0x1abc9c, - GREEN: 0x2ecc71, + GREEN: 0x57f287, BLUE: 0x3498db, - YELLOW: 0xffff00, + YELLOW: 0xfee75c, PURPLE: 0x9b59b6, LUMINOUS_VIVID_PINK: 0xe91e63, + FUCHSIA: 0xeb459e, GOLD: 0xf1c40f, ORANGE: 0xe67e22, - RED: 0xe74c3c, + RED: 0xed4245, GREY: 0x95a5a6, NAVY: 0x34495e, DARK_AQUA: 0x11806a, @@ -543,7 +544,7 @@ exports.Colors = { DARKER_GREY: 0x7f8c8d, LIGHT_GREY: 0xbcc0c0, DARK_NAVY: 0x2c3e50, - BLURPLE: 0x7289da, + BLURPLE: 0x5865f2, GREYPLE: 0x99aab5, DARK_BUT_NOT_BLACK: 0x2c2f33, NOT_QUITE_BLACK: 0x23272a, diff --git a/typings/index.d.ts b/typings/index.d.ts index 0e574ac27..01323f494 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -561,14 +561,15 @@ declare module 'discord.js' { DEFAULT: 0x000000; WHITE: 0xffffff; AQUA: 0x1abc9c; - GREEN: 0x2ecc71; + GREEN: 0x57f287; BLUE: 0x3498db; - YELLOW: 0xffff00; + YELLOW: 0xfee75c; PURPLE: 0x9b59b6; LUMINOUS_VIVID_PINK: 0xe91e63; + FUCHSIA: 0xeb459e; GOLD: 0xf1c40f; ORANGE: 0xe67e22; - RED: 0xe74c3c; + RED: 0xed4245; GREY: 0x95a5a6; NAVY: 0x34495e; DARK_AQUA: 0x11806a; @@ -583,7 +584,7 @@ declare module 'discord.js' { DARKER_GREY: 0x7f8c8d; LIGHT_GREY: 0xbcc0c0; DARK_NAVY: 0x2c3e50; - BLURPLE: 0x7289da; + BLURPLE: 0x5865f2; GREYPLE: 0x99aab5; DARK_BUT_NOT_BLACK: 0x2c2f33; NOT_QUITE_BLACK: 0x23272a; @@ -2698,6 +2699,7 @@ declare module 'discord.js' { | 'YELLOW' | 'PURPLE' | 'LUMINOUS_VIVID_PINK' + | 'FUCHSIA' | 'GOLD' | 'ORANGE' | 'RED'