We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359ddaf commit 5272cecCopy full SHA for 5272cec
src/client/ClientDataResolver.js
@@ -307,6 +307,7 @@ class ClientDataResolver {
307
* ```
308
* [
309
* 'DEFAULT',
310
+ * 'WHITE',
311
* 'AQUA',
312
* 'GREEN',
313
* 'BLUE',
src/util/Constants.js
@@ -705,6 +705,7 @@ exports.UserChannelOverrideMap = {
705
706
exports.Colors = {
707
DEFAULT: 0x000000,
708
+ WHITE: 0xFFFFFF,
709
AQUA: 0x1ABC9C,
710
GREEN: 0x2ECC71,
711
BLUE: 0x3498DB,
typings/index.d.ts
@@ -1667,6 +1667,7 @@ declare module 'discord.js' {
1667
type CollectorOptions = { time?: number };
1668
1669
type ColorResolvable = ('DEFAULT'
1670
+ | 'WHITE'
1671
| 'AQUA'
1672
| 'GREEN'
1673
| 'BLUE'
0 commit comments