Skip to content
uxTools
Gaming

Roblox Color3 Converter

Convert one color into every Roblox Luau form: Color3.fromRGB, Color3.new, Color3.fromHSV, hex, and the nearest legacy BrickColor. Enter hex or RGB and both stay in sync.

Color input

Hex
RGB (0-255)
Presets
Luau output
  • Color3.fromRGB
    Color3.fromRGB(13, 105, 172)
  • Color3.new (0-1 floats)
    Color3.new(0.051, 0.412, 0.675)
  • Color3.fromHSV
    Color3.fromHSV(0.57, 0.924, 0.675)
  • Hex
    #0d69ac
  • Nearest BrickColor
    BrickColor.new("Bright blue")

About this tool

Color3.fromRGB takes integer channels (0-255), while Color3.new expects floats in the 0-1 range, so the float line is rounded to ~3 decimals. fromHSV also takes hue, saturation, and value as 0-1 floats. The nearest BrickColor is found by squared euclidean distance against roughly 40 common legacy colors. Everything is computed in your browser; nothing is sent anywhere.