RootUtils

Roblox Color3 & BrickColor

Client-Side Secure

Convert Hex/RGB to Roblox Color3.new(), Color3.fromRGB(), and find the closest BrickColor.

Color Picker

59, 130, 246
r
g
b
217°, 76%, 96%
h
s
v

Medium blue

Closest BrickColor

Variations

Tint (Lighter)
Shade (Darker)
Complementary

Lua Snippets

Color3.fromRGBStandard
Color3.fromRGB(59, 130, 246)
Color3.newNormalized
Color3.new(0.231, 0.510, 0.965)
Color3.fromHSVRainbows
Color3.fromHSV(0.603, 0.760, 0.960)
ColorSequenceParticles/Beams
ColorSequence.new{ ColorSequenceKeypoint.new(0, Color3.fromRGB(59, 130, 246)), ColorSequenceKeypoint.new(1, Color3.new(1, 1, 1)) }

Is this tool broken?

Let us know if you found a bug or have a feature request.

Roblox Color Laboratory: RGB, HSV & BrickColor

The RootUtils Roblox Color Lab is more than just a converter. It's a complete suite for scripters and builders to generate every type of color code used in Roblox Lua.

Tools Included

  • Color3.fromRGB: The standard format (0-255). Use this for Parts and GUI elements.
  • Color3.new: The normalized format (0-1). Required for TweenService and Lighting properties. We automatically calculate the decimals for you.
  • Color3.fromHSV: Hue, Saturation, Value. Essential for creating rainbow loops or adjusting brightness dynamically in scripts.
  • BrickColor Matcher: Calculates the mathematically closest legacy BrickColor (e.g., "Really Red") to your custom hex code using 3D Euclidean distance.
  • ColorSequence Generator: Instantly generates the annoying ColorSequenceKeypoint code needed for ParticleEmitters, Beams, and Trails.

Tips for Designers

Use the Variations panel to find "Tints" (lighter versions) and "Shades" (darker versions) of your selected color. This is perfect for creating hover effects on UI buttons without guessing the RGB values manually.