Discord Color Picker
Browse all official Discord brand colors, pick a custom color, and instantly copy HEX, RGB, HSL, or decimal values for use in Discord embeds, bots, and server customization.
Copy Values
Official Discord Brand Colors
What is Discord Blurple?
Discord Blurple is the primary brand color of Discord, with the hex code #5865F2 (RGB: 88, 101, 242). It's the iconic purple-blue color you see on Discord's logo, buttons, and UI elements. Blurple was updated in 2021 from the original #7289DA to the current shade. When building Discord bots or designing server assets, using Blurple ensures your content feels native to the platform.
Discord Embed Color Codes
When setting embed colors in Discord bots, you need to use a decimal integer, not a hex string. For example, Blurple (#5865F2) becomes 5793266 in decimal. Use the "Decimal" copy button above to get the correct value for your color field in discord.js embeds. You can also use the 0x5865F2 format directly in many Discord libraries.
How to Use Color Codes in Discord Bots
In discord.js, set the embed color using .setColor(0x5865F2) or .setColor('#5865F2'). In Python (discord.py), use color=discord.Color(0x5865F2). The decimal value works universally across all Discord API wrappers and libraries.