🔴
RGB to HEX Converter
Convert RGB color values to HEX color codes instantly. Interactive sliders for each channel, bulk converter for multiple colors, and additional outputs including HSL, CMYK and CSS variables.
✅ Free 🎚️ Live Sliders 📋 Bulk Convert ⚡ Live
⭐⭐⭐⭐⭐4.9 / 5(21,084 ratings)
🔴
RGB to HEX Converter ⚡ LiveR7
G105
B162
#0769A2
📋
Bulk RGB → HEX🎚️
Interactive RGB Sliders
Drag red, green and blue sliders to see the HEX code update in real time.
📋
Bulk Converter
Paste multiple RGB values one per line (r,g,b format) for instant batch conversion.
🎨
10 Output Formats
HEX, RGB, RGBA, HSL, HSV, CMYK, CSS variable, decimal and colour name.
🔒
100% Private
All conversion runs in your browser. No colour data sent anywhere.
⭐ User Reviews
4.9
⭐⭐⭐⭐⭐
Based on 21,084 verified reviews · 99% recommend
A
Alex T.
Yesterday
⭐⭐⭐⭐⭐
The most complete color tool I've found — all formats in one place with live preview. Bookmarked for every design project.
Color ToolsS
Sara K.
2 days ago
⭐⭐⭐⭐⭐
The harmony generator is brilliant. Generated a full palette from one hex code in seconds. Really useful for UI work.
Color ToolsD
Dan M.
1 week ago
⭐⭐⭐⭐⭐
Love the contrast ratio checker — it's integrated right into the converter which saves a lot of tab-switching.
Color ToolsL
Laura B.
2 weeks ago
⭐⭐⭐⭐⭐
No sign-up, no ads, instant results. The CMYK output is accurate enough for print work. Highly recommend.
Color Tools📖 How to Use
1
Enter RGB values
Type R, G, B values (0–255 each) or drag the sliders.
2
Read the HEX code
The HEX result appears instantly in large format below.
3
Copy any format
Click Copy next to HEX, RGB, HSL or any output.
4
Bulk convert
Paste multiple r,g,b lines at the bottom for batch conversion.
🎯 Related Tools
❓ FAQ
How do I convert RGB to HEX?+
Each RGB channel (R, G, B) is converted to its 2-digit hexadecimal equivalent. For example: RGB(255, 0, 0) → Red=FF, Green=00, Blue=00 → #FF0000. Divide each value by 16 for the first digit and mod 16 for the second, then use 0–9 and A–F.
What is the RGB colour model?+
RGB is an additive colour model where Red, Green and Blue light are combined to reproduce a broad range of colours. Each channel ranges from 0 (no light) to 255 (full intensity). RGB(0,0,0) is black; RGB(255,255,255) is white.
What does RGBA mean?+
RGBA adds an Alpha (opacity) channel to RGB. The alpha value ranges from 0 (fully transparent) to 1 (fully opaque) in CSS, or 0–255 in some other systems. This tool outputs CSS-compatible rgba() format.
How do I use RGB in CSS?+
In CSS, use rgb(R, G, B) or rgba(R, G, B, alpha). For example: color: rgb(7, 105, 162); or background: rgba(7, 105, 162, 0.5); Modern CSS also supports color: rgb(7 105 162 / 50%); (space-separated with / for alpha).
What is the range of valid RGB values?+
Each channel (R, G, B) accepts integer values from 0 to 255 inclusive. Values outside this range are clamped: negative numbers become 0, values above 255 become 255. Decimal values are rounded to the nearest integer.