THESPIKE.GG
THESPIKE
    EN
    Login
    EN
    1. Home
    2. ROBLOX
    3. Roblox Beginner Guide
    4. All Roblox color codes list & how to use them

    All Roblox color codes list & how to use them

    BrickColors explained

    ON THIS PAGE:

    • All 208 Roblox color codes
    • How to use Roblox color codes
    • When working with Roblox colors…
    Roblox Color Codes
    Written By Eray Eliaçık

    Reviewed by: Naim Rosinski

    (Content Manager & Editor)

    Last UpdatedJune 1, 2026 at 04:57AM
    Share On
    Share On

    If 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

    Color Name

    ID

    RGB

    White

    1

    242, 243, 243

    Grey

    2

    161, 165, 162

    Light yellow

    3

    249, 233, 153

    Brick yellow

    5

    215, 197, 154

    Light green (Mint)

    6

    194, 218, 184

    Light reddish violet

    9

    232, 186, 200

    Pastel Blue

    11

    128, 187, 219

    Light orange brown

    12

    203, 132, 66

    Nougat

    18

    204, 142, 105

    Bright red

    21

    196, 40, 28

    Med. reddish violet

    22

    196, 112, 160

    Bright blue

    23

    13, 105, 172

    Bright yellow

    24

    245, 205, 48

    Earth orange

    25

    98, 71, 50

    Black

    26

    27, 42, 53

    Dark grey

    27

    109, 110, 108

    Dark green

    28

    40, 127, 71

    Medium green

    29

    161, 196, 140

    Bright green

    37

    75, 151, 75

    Bright violet

    104

    107, 50, 124

    Bright orange

    106

    218, 133, 65

    Gold

    127

    220, 188, 129

    Dark red

    154

    123, 46, 47

    Reddish brown

    192

    105, 64, 40

    Medium stone grey

    194

    163, 162, 165

    Royal blue

    195

    70, 103, 164

    Dark stone grey

    199

    99, 95, 98

    Light stone grey

    208

    229, 228, 223

    Turquoise

    211

    121, 181, 181

    Rust

    216

    144, 76, 42

    Brown

    217

    124, 92, 70

    Lilac

    219

    107, 98, 155

    Bright purple

    221

    205, 98, 152

    Light pink

    223

    220, 144, 149

    Beige

    353

    202, 191, 163

    Institutional white

    1001

    248, 248, 248

    Really black

    1003

    17, 17, 17

    Really red

    1004

    255, 0, 0

    New Yeller

    1009

    255, 255, 0

    Really blue

    1010

    0, 0, 255

    Navy blue

    1011

    0, 32, 96

    Cyan

    1013

    4, 175, 236

    Magenta

    1015

    170, 0, 170

    Pink

    1016

    255, 102, 204

    Teal

    1018

    18, 238, 212

    Toothpaste

    1019

    0, 255, 255

    Lime green

    1020

    0, 255, 0

    Lavender

    1023

    140, 91, 159

    Pastel green

    1028

    204, 255, 204

    Royal purple

    1031

    98, 37, 209

    Hot pink

    1032

    255, 0, 191

    Credit: Roblox Developer Forum
    Credit: Roblox Developer Forum

    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.

    1. Open Roblox Studio
    2. Select a Part
    3. Open the Properties window
    4. Find BrickColor
    5. 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.

    Credit: Roblox Studio Classes/Youtube
    Credit: Roblox Studio Classes/Youtube

    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
    Credit: Roblox Studio Classes/Youtube
    Credit: Roblox Studio Classes/Youtube

    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:

    • New Roblox Paranormal codes
    • Latest Roblox Elemental Dungeons codes
    • Latest Roblox Haze Piece codes
    • New Roblox All Star Tower Defense X codes
    • New Roblox Anime Fighting Simulator Endless codes

    Guide Categories

    • Beginner Guides
    • Best Decal IDs
    • Game Codes
    • Blox Fruits
    • Puzzle Doors Answers
    • All Roblox Error Codes
    • Best Roblox Games
    • Dress to Impress (dti)
    • The Forge

    All Related Guides

    • How to get Dark Ring in Roblox Sailor Piece fast
      How to get Dark Ring in Roblox Sailor Piece fastLearn how to get Dark Rings fast in Sailor Piece, including Jinwoo boss location, drop rate, respawn timer, an...
    • Opera GX Forsaken rewards
      Opera GX Forsaken rewards guide (2026)Opera GX Forsaken rewards guide: unlock exclusive skins, XP Boosters, Killer Chance Tokens, and daily event re...
    • Roblox Bite By Night x Medal Quest
      Guide to the Roblox Bite By Night x Medal Quest: Get your free Fighter Class skinRoblox Bite By Night x Medal Quest guide: how to unlock the free Fighter Class Skin fast and redeem the reward...
    • What is Roblox Reality
      What is Roblox Reality? A detailed look at Roblox’s new hybrid architectureWhat is Roblox Reality? Learn how Roblox’s new AI-powered hybrid architecture brings photorealistic multiplaye...
    • What Is Roblox Plus
      What is Roblox Plus? Benefits, Robux, Premium changes & how to get itWhat is Roblox Plus? Learn benefits, pricing, Robux bundles, Premium changes, private servers, and whether Plu...
    • how to cancel roblox premium
      How to cancel Roblox PremiumLearn how to cancel Roblox Premium on mobile, PC, iPhone, and Android with simple steps to stop renewal and av...
    • avatar switcher roblox
      How to change your avatar in RobloxRoblox Avatar Switcher lets you swap saved avatars in game. Learn how it works, where to find it, and how to c...
    • Roblox Kids and Roblox Select
      Roblox Kids and Roblox Select accounts explainedRoblox Kids and Select explained: features, differences, safety settings, age system, and June 2026 release de...
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    Eray Eliaçık

    Meet Eray, a tech enthusiast passionate about AI, crypto, gaming, and more. Eray is always looking into new developments, exploring unique topics, and keeping up with the latest trends in the tech industry, and gaming is the sweetest spot.

    Eray has been rocking it as a news manager and content creator at spots like, TechBriefly, Gamelevate, Softonic, and various tech realms. Crafting over 2k tech articles, Eray captivated millions of readers for over three years.

    Now, over at THESPIKE, Eray is a content writer, blending the love for spinning stories and helpful guides for all-things gaming.

    View More
    THESPIKE
    AboutCareersPrivacy PolicyTerms of UseAbout THESPIKEDisclaimer
    Contact UsCommercialsSend an emailPost Feedback
    ResourcesBetting SitesOnline CasinosSweepstakes Casinos
    © 2026 THESPIKE.GG | All Rights Reserved | Not affiliated with Riot Games
    18+ Bet Responsibly | BeGambleAware.org
    Light Mode
    Login