如何更改代码块中的文本颜色? - discord.py

How to change the text color in a code block ? - discord.py

help = discord.Embed(description="```-@ = discord.user\n-() = required argument\n-[] = optional argument```",color=colour)

我想更改您在说明中看到的代码块中的文本颜色。有人可以帮我吗?

使用

help = discord.Embed(description="```diff\n-@ = discord.user\n-() = required argument\n-[] = optional argument```")
  • 那里的 diff 指定代码采用 diff 格式,这使得“-”之后的文本看起来是红色的,“+”之后的文本看起来是绿色的。也许这就是你想要的,有 other languages
  • discord.Embed不接受任何颜色参数