mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 22:11:53 +00:00
feat(Util): add YELLOW to ColorResolvable (#3182)
This commit is contained in:
parent
ca43919642
commit
520810d484
3 changed files with 4 additions and 0 deletions
|
|
@ -422,6 +422,7 @@ exports.Colors = {
|
|||
AQUA: 0x1ABC9C,
|
||||
GREEN: 0x2ECC71,
|
||||
BLUE: 0x3498DB,
|
||||
YELLOW: 0xFFFF00,
|
||||
PURPLE: 0x9B59B6,
|
||||
LUMINOUS_VIVID_PINK: 0xE91E63,
|
||||
GOLD: 0xF1C40F,
|
||||
|
|
|
|||
|
|
@ -251,6 +251,7 @@ class Util {
|
|||
* - `AQUA`
|
||||
* - `GREEN`
|
||||
* - `BLUE`
|
||||
* - `YELLOW`
|
||||
* - `PURPLE`
|
||||
* - `LUMINOUS_VIVID_PINK`
|
||||
* - `GOLD`
|
||||
|
|
|
|||
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
|
|
@ -1685,9 +1685,11 @@ declare module 'discord.js' {
|
|||
}
|
||||
|
||||
type ColorResolvable = 'DEFAULT'
|
||||
| 'WHITE'
|
||||
| 'AQUA'
|
||||
| 'GREEN'
|
||||
| 'BLUE'
|
||||
| 'YELLOW'
|
||||
| 'PURPLE'
|
||||
| 'LUMINOUS_VIVID_PINK'
|
||||
| 'GOLD'
|
||||
|
|
|
|||
Loading…
Reference in a new issue