Best for
- UI implementation handoff tasks.
- Building consistent color systems in code.
Convert RGB values like `rgb(30, 144, 255)` into HEX color codes for CSS variables, theme files, and design libraries.
Input
rgb(30, 144, 255)Output
#1E90FFUse integer values only, each between 0 and 255.
Confirm design tools are not showing percentages or alpha-adjusted values.
Yes. `30,144,255` format is supported.
Yes, HEX output is normalized to uppercase for consistency.