Pasting colors as Hex RGBA, RGBA, RGB, Float RGBA, CSS RGB

Webflow only accepts HTML Hex RGB.

That would be great to be able to paste colors in many formats. Even if they’re just converted into Webflow’s color right away.

Here are the formats I often come across followed by a value example for the color #C1D321

Hex RGB 0xC1D321
Hex RGBA 0xC1D321FF
CSS RGB rgb(193, 211, 33)
CSS RGBA rgba(193, 211, 33, 1)

There are others but they’re not very relevant for Webflow designers:

Float RGBA 0.756 0.827 0.129 1
Float HSVA 0.183 0.843 0.827 1
CSS HSL hsl(66, 73%, 48%)
CSS HSLA hsla(66, 73%, 48%, 1)

Although, if you have a designer working with Webflow on a HTML5 portion of a mobile app, the suppot of the 4 formats above could be a blessing.

Also, as there is little color palettes management on Webflow at the moment, that would be cool to be able to copy/paste color values with their opacity… so CSS RGBA or Hex RGBA.

Why does colours appear in only 3 digits in Webflow sometimes? For example #666 instead of #666666.
Are these 2 are the same? Is it common to use hex in 3 digits?
Thank you

Sharthand Hex Colors, it’s a way in CSS to code colors, when you have redundant digits, you can shrink it. #112233 = #123

#ffffff = #fff = white (yes you can write 'white' and some other colors in CSS, yellow, black...)
#ff6600 = #f60
#ffcc00 = #fc0

Here are the colors > hex > shorthex

http://vincent.polenordstudio.fr/snap/CSS_Use_Shorthand_Hex_Colors_-_hexadecimal_shorthand_notation_optimize_css_2015-03-31_10-35-25.jpg

I’m quoting myself: it’s actually possible, by pasting colors in this form:

rgba(230,126,126,0.1)

I see. So #666 and #666666 are equal. Thanx, Vincent