Roblox Color Codes
The standard BrickColor IDs and names used in Roblox development.
| ID | Name | Preview |
|---|---|---|
| 1 | White | #F2F3F3 |
| 2 | Grey | #A1A5A2 |
| 3 | Light yellow | #F9D62E |
| 5 | Brick yellow | #D7C59A |
| 9 | Light green (Mint) | #B1D2A4 |
| 11 | Light blue | #74B5D6 |
| 18 | Black | #1B2A35 |
| 21 | Bright red | #C4281C |
| 23 | Bright blue | #0D69AC |
| 24 | Bright yellow | #F5CD30 |
| 26 | Black | #1B2A35 |
| 28 | Dark green | #27462D |
| 29 | Medium green | #A1C48C |
| 37 | Bright green | #4B974B |
| 38 | Dark orange | #A05F35 |
| 45 | Light blue | #B4D2E4 |
| 100 | Light pink | #FFAAFF |
| 101 | Crimson | #E70000 |
| 102 | Medium blue | #6E99CA |
| 104 | Quiet yellow | #E5E4DF |
| 105 | Cyan | #007EA8 |
| 106 | Bright oak | #DA867A |
| 107 | Dark floral blue | #21254B |
| 119 | Br. yellowish green | #A4BD47 |
| 124 | Magenta | #9F164C |
| 125 | Gold | #DBB728 |
| 131 | Silver | #CDD2CB |
| 133 | Neon orange | #D5733D |
| 135 | Pearl | #74869D |
| 141 | Earth green | #27462D |
| 151 | Sand red | #957977 |
| 153 | Sand green | #789082 |
| 190 | Parsley green | #2C651D |
| 191 | Dark stone grey | #635F62 |
| 192 | Rust | #8F4C2A |
| 193 | Brown | #7B5D41 |
| 194 | Medium stone grey | #A3A2A5 |
| 199 | Dark grey | #635F62 |
| 217 | Brown | #7C5C46 |
| 226 | Cool yellow | #FDE08B |
| 301 | Navy blue | #0D284C |
| 302 | Dark blue | #0010B0 |
| 303 | Dark blue | #0010B0 |
| 304 | Earth blue | #203A56 |
| 305 | Earth blue | #203A56 |
| 306 | Earth blue | #203A56 |
| 307 | Earth blue | #203A56 |
| 308 | Earth blue | #203A56 |
| 309 | Deep blue | #16233E |
| 311 | Deep blue | #16233E |
| 312 | Deep blue | #16233E |
| 313 | Deep blue | #16233E |
| 314 | Deep blue | #16233E |
| 315 | Deep blue | #16233E |
| 316 | Deep blue | #16233E |
| 317 | Deep blue | #16233E |
| 318 | Deep blue | #16233E |
| 321 | Navy blue | #0D284C |
| 330 | Slime green | #56A023 |
| 334 | Daisy orange | #F8D96D |
| 1001 | Institutional white | #F8F8F8 |
| 1002 | Mid gray | #CDCDCD |
| 1003 | Really black | #111111 |
| 1004 | Really red | #FF0000 |
| 1005 | Deep orange | #FF9B00 |
| 1006 | Alder | #B48455 |
| 1007 | Dusty Rose | #A05F66 |
| 1008 | Olive | #C1BE42 |
| 1009 | New Yeller | #FFFF00 |
| 1010 | Really blue | #0000FF |
| 1011 | Navy blue | #0D284C |
| 1012 | Deep blue | #16233E |
Knowledge Base & FAQ
Frequently Asked Questions
Direct answers and solutions to common questions, technical challenges, and industry standards.
What is the difference between Color3.new, Color3.fromRGB, and Color3.fromHex in Roblox Lua?expand_more
Roblox's
Color3 datatype provides three constructors: - Color3.fromRGB(r, g, b): Accepts standard
0 to 255integers (e.g.Color3.fromRGB(255, 85, 0)). This is the most common and intuitive method for scripting. - Color3.new(r, g, b): Accepts normalized floating point numbers from
0.0 to 1.0. For example,Color3.new(1, 0, 0)is pure red, whileColor3.new(0.5, 0.5, 0.5)is 50% gray. - Color3.fromHex(hexString): Accepts standard 6-character hex strings with or without hashtag:
Color3.fromHex("#FF5500").
How do I color text in Roblox ScreenGui using RichText?expand_more
In Roblox Studio, enable the RichText property (check the box in the Properties window or set
TextLabel.RichText = true in Luau), then wrap your text in HTML-style font tags: TextLabel.Text = '<font color="#FFAA00">Gold VIP Member</font> <font color="#00FF88">[Online]</font>'You can also use RGB format inside the tag: <font color="rgb(255,170,0)">Text</font>.What are Roblox BrickColors and how do I convert them to Color3?expand_more
BrickColor is Roblox's legacy palette of 127 standardized color names and numeric IDs (like 'Bright red' ID 21, or 'Medium stone grey' ID 194). It was originally designed to emulate physical plastic toy bricks. To convert a BrickColor into a modern RGB
Color3 in your scripts, access its .Color property: local brick = BrickColor.new("Really red")
local color3 = brick.Color -- Returns Color3.fromRGB(255, 0, 0)
local id = brick.Number -- Returns integer ID 1004How do I smoothly tween or animate a Part's color in Roblox Studio?expand_more
Use Roblox's TweenService to interpolate smoothly between colors without frame drops:
local TweenService = game:GetService("TweenService")
local part = script.Parent
local tweenInfo = TweenInfo.new(1.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
local goal = { Color = Color3.fromRGB(0, 170, 255) }
local tween = TweenService:Create(part, tweenInfo, goal)
tween:Play()