批量显示十六进制颜色代码

我有一些十六进制颜色代码:


#ff9b9b

#ff5656

#ff0202

#ad0000

#871515

并且我想在调色板的同时显示相应的颜色,以方便地选择我想要的颜色。


有没有推荐的在线工具,或者我们可以在命令行中完成?有些工具只能同时显示一种颜色,但我想一次显示几种颜色。


非常感谢!


一只名叫tom的猫
浏览 174回答 1
1回答

繁星coding

如果你想Python代码,你可以使用彩色的,这里的例子,其中您选择字体颜色和背景颜色。from colored import fg, bg, attrcolor = fg('#C0C0C0') + bg('#00005f') # create font and background colorres = attr('reset') # adding that to string that we print reset current colorsprint(color + "Hello World !!!" + res)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python