如何将RGB值转换为常规CSS颜色值?
我尝试比较页面上元素的样式。但是一个元素动态地将其文本颜色更改为红色,但表示为 RGB 值。另一个元素(与之比较)使用 #123456 值。是否有转换器可以将 rgb 转换为#number?
例如:
#000 代替 rgb(0, 0, 0)
I trying to compare the styles of elements on my page. But one element dynamically changes it's text color to red, but represented as a rgb value. And the other element (to compare it with) uses #123456 values. Is there a converter somewhere that can take rgb and turn it into #number?
For example:
#000 instead of rgb(0, 0, 0)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
人们总是忘记 RGB 颜色可以表示为百分比,也可以表示为整数。
// 也适用于数组 -
rgbToHex([100,200,60])
// 返回值:#64c83c
People always forget that rgb colors can be expressed as percentages, as well as integers.
// also works with arrays-
rgbToHex([100,200,60])
// returned value: #64c83c
编辑。由 http://www.javascripter.net/faq/rgbtohex.htm 提供
edited. courtesy of http://www.javascripter.net/faq/rgbtohex.htm