RGBA to HEX Converter

RGB stands for Red, Green and Blue. These are hues of light that can be mixed together to create different color. RGBA is an extension of RGB values with an additional Alpha channel. This channel specified the opacity of color. The alpha parameter is a number between 0.0 (fully transparent) and 1.0 (fully opaque). You can use our simple calculator tool to convert RGBA to HEX code. Our RGBA to HEX color generator will help you to find the HEX value quickly.

RGBA to HEX Opacity

After conversion, you can use CSS snippet like that to ensure the opacity with HEX code.

/* RGBA Color: rgba(200, 54, 54, 0.5) */
background-color: #C83636;
opacity: 0.5;

RGBA Fallback

You can also use HEX code as a fallback of RGBA to ensure the browser support. Here is the CSS snippet.

/* RGBA Color: rgba(200, 54, 54, 0.5) */
background-color: #C83636; /* Fallback */
background-color: rgba(200, 54, 54, 0.5);

Hope you will like it.