This page is useful when a CSS hex color needs to become an RGB value for design handoff, debugging, or quick comparison. It accepts 3-digit and 6-digit hex input and turns the color into an rgb(r, g, b) string.
The current parser is intentionally small. It expects a valid hex color token and does not interpret named colors, alpha channels, or full design-system color management rules.
Three-digit hex values are expanded to six digits first, then the page converts the red, green, and blue channels into decimal output. This makes it useful for web color inspection and CSS work.
| Example | Value |
|---|---|
| Input | A 3-digit or 6-digit hex color such as #FF5733. |
| Output | An rgb(...) string with decimal channel values. |
It does not parse alpha channels, color names, or ICC/profile-aware color workflows. It is a straightforward numeric color conversion page.
The page supports 3-digit and 6-digit hex colors.
No. The current route is RGB only.
It is useful when a CSS-style hex value needs readable RGB channel output.
Convert 3-digit or 6-digit hex colors to RGB output.