我有一些十六进制颜色代码:#ff9b9b#ff5656#ff0202#ad0000#871515并且我想在调色板的同时显示相应的颜色,以方便地选择我想要的颜色。有没有推荐的在线工具,或者我们可以在命令行中完成?有些工具只能同时显示一种颜色,但我想一次显示几种颜色。非常感谢!
1 回答
繁星coding
TA贡献1797条经验 获得超4个赞
如果你想Python代码,你可以使用彩色的,这里的例子,其中您选择字体颜色和背景颜色。
from colored import fg, bg, attr
color = fg('#C0C0C0') + bg('#00005f') # create font and background color
res = attr('reset') # adding that to string that we print reset current colors
print(color + "Hello World !!!" + res)
添加回答
举报
0/150
提交
取消