$color
$color
will change the color of an embed
Usage
$color[index?;hex]
Parameters
Field | Type | Description | Required |
---|---|---|---|
index? | number | The embed index. | false |
hex | string | The hex color or color name (supported color names below). | true |
Embed Colors































Example(s)
This will return a red embed:
1client.command({2 name: "color",3 code: `4 $description[What a nice color!]5 $color[Red]6 `7});
1client.command({2 name: "color",3 code: `4 $description[What a nice color!]5 $color[ED4245]6 `7});