HEX to RGB / RGBA Converter

Convert HEX color codes into CSS RGB and RGBA values with color picker & opacity slider.

Alpha Opacity (for RGBA)1
rgba(6, 182, 212, 1)
RGBrgb(6, 182, 212)
RGBArgba(6, 182, 212, 1)
HEX Code#06b6d4

Our free HEX to RGB Converter helps web designers and frontend developers convert hexadecimal color strings into CSS-compatible rgb() and rgba() functions with live swatch previews.

Common Use Cases

  • CSS Styling & Transparency

    Convert hex codes into RGBA format to add opacity transparency to CSS backgrounds and borders.

  • UI Design Hand-off

    Translate hex values from Figma or Photoshop into web-ready RGB channels.

  • Canvas & WebGL Graphics

    Extract individual Red, Green, Blue integer channels (0-255) for JavaScript canvas rendering.

Key Features

Interactive Color Picker

Select colors visually using a native browser color wheel or paste hex codes directly.

Alpha Transparency Slider

Adjust alpha opacity from 0.0 to 1.0 to generate CSS rgba() color functions.

Live Color Swatch

Preview rendered color swatch with alpha blending overlay in real time.

How to Use This Tool

  1. Select or Paste HEX Code: Choose a color using the color swatch or type a 3 or 6 digit hex code (e.g. #06B6D4).
  2. Adjust Alpha Slider: Slide the alpha opacity control to adjust desired transparency for RGBA.
  3. Copy CSS Value: Click Copy next to RGB, RGBA, or HEX format to copy to clipboard.

Understanding CSS Color Representations

HEX color codes use hexadecimal notation (base-16) to define red, green, and blue components. RGB uses decimal numbers (0-255) for red, green, and blue. RGBA adds a fourth alpha channel (0.0 to 1.0) controlling transparency.

Converting HEX to RGBA allows developers to set semi-transparent overlays in CSS without affecting child element opacity.

Advanced Features and SEO Benefits

Short & Long Hex Format Support

Supports 3-character short hex shorthand (#06B) and 6-character hex strings (#06B6D4).

Frequently Asked Questions

How do I convert HEX to RGB?

HEX code is a 6-character hexadecimal string representing Red, Green, and Blue values (e.g. #06B6D4 -> RGB 6, 182, 212).