HEX uses base-16 (0-9, A-F) for each channel. RGB uses 0-255. HSL uses Hue (0-360°), Saturation (0-100%), Lightness (0-100%). All represent the same color.
Frequently Asked Questions
How do I convert HEX to RGB?+
Split HEX into R, G, B pairs and convert each from base-16 to decimal. #FF5733 → R=255, G=87, B=51.
What is HSL color?+
HSL = Hue (color type, 0-360°), Saturation (color intensity, 0-100%), Lightness (brightness, 0-100%). Easier for humans to understand than RGB.
What does #000000 and #FFFFFF mean?+
#000000 = black (all channels 0). #FFFFFF = white (all channels 255). #FF0000 = pure red.