1
Hello, I’m having a problem, I try to choose a color, and it won’t, but already the title, Description will, someone can tell me the right one to do to pick the colors?
laranjavermelho = 0xFF4500
laranja = 0xFFA500
amarelo = 0xFFFF00
branco = 0xFFFAFA
brancofantasma = 0xF8F8FF
listacores = laranjavermelho, laranja, amarelo,branco, brancofantasma
@client.command(
description="Crie embeds legais",
brief="Crie Embed")
async def embed(ctx, title : str, description : str, cores : listacores):
embed=discord.Embed(title=title, description=description, colour = cores)
await ctx.send(embed=embed)
Most likely you want to do this:
listacores = [laranjavermelho, laranja, amarelo,branco, brancofantasma]
. (I have no experience with the Discord API).– ihavenoidea
didn’t work, but thanks
– ChickChuck2