All Roblox color codes list & how to use them
BrickColors explainedIf you want to build better Roblox games, learning all Roblox color codes is essential. Colors shape your game’s style, improve user experience, and help create professional-looking maps, UI designs, avatars, vehicles, and buildings.
Roblox uses a built-in color system called BrickColor, which contains hundreds of predefined colors. Developers can also use RGB and HEX values through the Color3 datatype for more advanced customization. Are you confused? Here are all the details you need to know.
All 208 Roblox color RGB codes
Roblox color codes are predefined colors used inside Roblox Studio. These colors are officially called BrickColors.
Each Roblox color includes:
- A color name
- A numerical ID
- RGB values
- Internal Roblox data

How to use Roblox color codes
Good color design makes Roblox games look cleaner and more professional & you have 6 ways to show your skills.
1. Using Roblox color codes in properties
The easiest method is through the Properties panel.
- Open Roblox Studio
- Select a Part
- Open the Properties window
- Find BrickColor
- Choose a color from the dropdown list
2. Using BrickColor in Roblox scripts
Roblox uses the BrickColor datatype for predefined colors.
- Example script: workspace.Part.BrickColor = BrickColor.new("Bright red")
This changes the part color to Bright red.
Using Roblox Color IDs
You can also use the numerical ID.
workspace.Part.BrickColor = BrickColor.new(21)
21 is the ID for Bright red.

3. Using RGB colors with Color3
For advanced customization, Roblox developers use Color3.
- Example: workspace.Part.Color = Color3.fromRGB(0, 170, 255)
This creates a custom blue color.
4. Using HEX Color Codes
Roblox does not directly use HEX codes, but you can convert HEX to RGB.
#FF0000
This equals red.
Converted to Roblox:
Color3.fromRGB(255, 0, 0)
5. Random Roblox colors
You can generate random Roblox colors with one line of code.
- Example: workspace.Part.BrickColor = BrickColor.Random()
This randomly selects one of the Roblox BrickColors.
6. Changing GUI colors
You can also use Roblox color codes for UI elements.
- Example: script.Parent.BackgroundColor3 = Color3.fromRGB(255, 85, 127)
This changes a GUI background color.
When working with Roblox colors…
- Use consistent color palettes
- Avoid too many neon colors
- Match colors to your game genre
- Use contrast for readability
- Test colors with Roblox lighting

With all 208 Roblox color RGB codes available, developers have endless possibilities for creating unique game styles and visual themes. From classic colors like Bright red and Bright blue to advanced Color3 RGB combinations, mastering Roblox colors helps you build better-looking games and stronger player experiences.
If you want your Roblox projects to stand out, learning how to properly use Roblox color codes is an essential skill for every builder and developer.
That’s all for today! Meanwhile, do you want free Roblox items? Check out these:
All Related Guides
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10






