Chrome Dev Tools RGBA/HSL Conversion to some new format

天涯浪子 提交于 2020-12-10 12:20:02

问题


I used to convert #1c1959db to the standard rgba(255,0,0,0.3) but now it converts to some unrecognized format rgb(28 25 89 / 86%). please guide how to fix this on chrome dev tools


回答1:


but now it converts to some unrecognized format rgb(28 25 89 / 86%).

This is the new format as defined in the specification

rgb() = rgb( <percentage>{3} [ / <alpha-value> ]? ) |
        rgb( <number>{3} [ / <alpha-value> ]? )
<alpha-value> = <number> | <percentage>

You should get used to it now but you can easily convert to the old format like below:

 rgb(28 25 89 / 86%) ---> rgba(28,25,89,0.86)

All you have to do is to add the comma seperation and transform the percentage of the alpha channel to a number between 0 and 1



来源:https://stackoverflow.com/questions/63751185/chrome-dev-tools-rgba-hsl-conversion-to-some-new-format

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!