$userBannerColor
$userBannerColor will return the profile banner color.
Usage
$userBannerColor[userID?]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| userID? | number | The ID of the user. | false | 
Example(s)
This will return your profile banner color (if any):
1client.command({2    name: "userBanner",3    code: `4  $userBannerColor[$authorID]5  `6});