本文介绍了discord.py的颜色代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我发现在discord.py中更改颜色有点困难和烦人(例如,嵌入颜色).我为discord.py中使用的不同颜色代码创建了一个类,该代码可以导入到主文件中.
I found it a bit difficult and annoying to change colors in discord.py (embed color for instance). I made a class for the different color codes to use in discord.py which can be imported into the main file.
class colors:
default = 0
teal = 0x1abc9c
dark_teal = 0x11806a
green = 0x2ecc71
dark_green = 0x1f8b4c
blue = 0x3498db
dark_blue = 0x206694
purple = 0x9b59b6
dark_purple = 0x71368a
magenta = 0xe91e63
dark_magenta = 0xad1457
gold = 0xf1c40f
dark_gold = 0xc27c0e
orange = 0xe67e22
dark_orange = 0xa84300
red = 0xe74c3c
dark_red = 0x992d22
lighter_grey = 0x95a5a6
dark_grey = 0x607d8b
light_grey = 0x979c9f
darker_grey = 0x546e7a
blurple = 0x7289da
greyple = 0x99aab5
可以使用例如 colors.red
(如果需要红色).有什么更好的方法吗?
It is possible to use e.g. colors.red
if red color is wanted. Is there any better way to do this?
推荐答案
您也可以通过使用RGB代码
You could also use RGB codes by doing
embed=discord.Embed(COLOR=discord.Color.from_rgb(RGB code)
这篇关于discord.py的颜色代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!