Color Converter
Convert between HEX, RGB, and Unity Color formats.
RGB 99, 102, 241
Unity Color
new Color(0.388f, 0.4f, 0.945f) Usage
Enter HEX (
#RRGGBB) or use color picker. RGB and Unity new Color(r,g,b) (0–1 normalized) are shown automatically.When to use
Copying design tool colors to Unity scripts, sharing material colors as HEX.
Examples
#6366f1 → RGB(99,102,241) → new Color(0.388f, 0.4f, 0.945f)Tips
- Unity Color uses 0–1 float. Divide 255 values accordingly.
- Paste directly into Material Color property.
- Save palette colors for quick reuse.