devkult_
tools26converters34
home/convert/hex-to-rgb

Convert HEX to RGB

RGB values are what you need for rgba() transparency, canvas drawing, and many design tools. This converter turns hex color codes into their red, green, and blue components, supporting both 3- and 6-digit hex.

Example · HEXRGB
HEX input
#c0392b
#1dd1a1
#54a0ff
RGB output
rgb(192, 57, 43)
rgb(29, 209, 161)
rgb(84, 160, 255)

Try it with your own data

RGBrgb(192, 57, 43)
Hex#C0392B
5.44: 1
PASSWCAG AA (4.5:1)
FAILWCAG AAA (7:1)

How to convert HEX to RGB

  1. Take your hex code, e.g. #c0392b.
  2. Split it into pairs: c0, 39, 2b.
  3. Convert each pair from hexadecimal to decimal to get rgb(192, 57, 43).

Frequently asked questions

How do I convert a 3-digit hex like #abc?

Each digit is doubled: #abc becomes #aabbcc, which is rgb(170, 187, 204). The converter expands shorthand hex automatically.

How do I add transparency?

Once you have the RGB values, use rgba(r, g, b, a) where a is an alpha between 0 (transparent) and 1 (opaque).

What is WCAG?

The Web Content Accessibility Guidelines (WCAG) define how to make web content more accessible to people with disabilities. Contrast ratios are a key part of these guidelines to ensure text is readable against its background.

What contrast ratio should I aim for?

Level AA requires a contrast ratio of at least 4.5:1 for normal text and 3:1 for large text. Level AAA requires at least 7:1 for normal text and 4.5:1 for large text.

Related converters