$color
Sets the embed's border color.
Usage
$color[index;colorHex]
This function has two params.
Param
Description
Type
Required
index
The embed index that this color should belong to.
integer
yes
colorHex
The color hex of this embed color.
string
yes
Find color hexes here!
Example
bot.commands.add({
type: "command",
name: "example",
code: `$description[1;Hello World!]
$color[1;ff57e0]`
})
Last updated
Was this helpful?