HEX to RGB Converter
Convert any HEX color code to RGB, HSL and HSV instantly. Copy values with one click for CSS, design tools, or any creative workflow.
① Enter a HEX code or pick a color ② Convert to get RGB, HSL & HSV ③ Click any value to copy
Paste any 6-digit HEX code (e.g. #FF4500) and instantly get the equivalent RGB, HSL and HSV values. Click any result to copy it to your clipboard.
Red, Green, Blue — the standard color model for screens. Each channel ranges from 0 to 255. Used natively in CSS with the rgb() function.
HSL (Hue, Saturation, Lightness) and HSV (Hue, Saturation, Value) describe colors in a more intuitive, perceptual way — closer to how humans see color.
HEX to RGB, HSL and HSV — how the conversion works
HEX color codes are the hexadecimal representation of the three RGB channels (Red, Green, Blue). For example, #FF4500 equals R=255, G=69, B=0. The CSS rgb() function is the most widely used format in stylesheets and design systems. HSL (Hue, Saturation, Lightness) adds an intuitive dimension: Hue 0–360°, saturation and lightness as percentages. HSV uses Value instead of Lightness, making it more natural for visual color mixing in Figma, Adobe, and other tools. All three formats are usable directly in CSS, SVG and canvas.