HEX ↔ RGB Converter

Convert any color between HEX, RGB and HSL — pick visually, paste a code, and copy CSS-ready values.

Color formats, briefly

HEX (#2563eb) packs red, green and blue into three byte-sized pairs — the classic web format. RGB (rgb(37, 99, 235)) states the same three channels as numbers from 0–255, and is easier to tweak in code. HSL (hsl(221, 83%, 53%)) describes hue, saturation and lightness — the most human-friendly model: change the hue to rotate the color, lower the lightness to darken it.

Frequently asked questions

Can I paste a color without the # sign?

Yes — 2563eb, #2563EB and 3-digit shorthand like #25f all work.

Why does my color look different on paper?

Screens emit light (RGB) while print reflects it (CMYK), so conversion can shift colors. These tools handle screen formats only — for print, convert in design software with a color profile.