RGB & HEX Color Converter

Pick a color or enter a value to convert instantly.

About RGB and HEX Color Values

RGB and HEX are two common ways to represent colors in web design and digital media.

RGB stands for Red, Green, and Blue. This model describes a color by mixing these three primary light colors. Each value is an integer between 0 (no color) and 255 (full intensity). For example, pure red is rgb(255, 0, 0), and white is rgb(255, 255, 255).

HEX (or Hexadecimal) is just a different way of writing RGB values. It's a six-digit code preceded by a #. The first two digits represent Red, the next two Green, and the last two Blue. These values are in "base-16" (hexadecimal) format, ranging from 00 (0) to FF (255). For example, rgb(255, 0, 0) is the same as #FF0000.