Colors
EnumOn this page
discord.Colors lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.Colors.Default0x000000Default. Use the symbolic name in bot code rather than the raw value.
discord.Colors.White0xFFFFFFWhite. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Aqua0x1ABC9CAqua. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Green0x57F287Green. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Blue0x3498DBBlue. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Yellow0xFEE75CYellow. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Purple0x9B59B6Purple. Use the symbolic name in bot code rather than the raw value.
discord.Colors.LuminousVividPink0xE91E63Luminous Vivid Pink. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Fuchsia0xEB459EFuchsia. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Gold0xF1C40FGold. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Orange0xE67E22Orange. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Red0xED4245Red. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Grey0x95A5A6Grey. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkAqua0x11806ADark Aqua. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkGreen0x1F8B4CDark Green. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkBlue0x206694Dark Blue. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkPurple0x71368ADark Purple. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkVividPink0xAD1457Dark Vivid Pink. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkGold0xC27C0EDark Gold. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkOrange0xA84300Dark Orange. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkRed0x992D22Dark Red. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkGrey0x979C9FDark Grey. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkerGrey0x7F8C8DDarker Grey. Use the symbolic name in bot code rather than the raw value.
discord.Colors.LightGrey0xBCC0C0Light Grey. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Blurple0x5865F2Blurple. Use the symbolic name in bot code rather than the raw value.
discord.Colors.Greyple0x99AAB5Greyple. Use the symbolic name in bot code rather than the raw value.
discord.Colors.DarkButNotBlack0x2C2F33Dark But Not Black. Use the symbolic name in bot code rather than the raw value.
discord.Colors.NotQuiteBlack0x23272ANot Quite Black. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.Colors.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.Colors.Default)