Back to Tools

🎨 Discord Color Picker

Choose colors and preview them in Discord embeds

Pick a Color

Color Values

Discord Decimal

5793266

HEX

#5865F2

RGB

rgb(88, 101, 242)

Color Presets

Discord Embed Preview

B
Your BotBOTToday at 12:00

Example Embed

This is how your embed will look with the selected color

Discord.js Code

const { EmbedBuilder } = require('discord.js');

const embed = new EmbedBuilder()
  .setColor(5793266)
  .setTitle('Example Embed')
  .setDescription('This is how your embed will look with the selected color');

channel.send({ embeds: [embed] });

â„šī¸ How to Use

1. Choose a color using the color picker or select from presets

2. Preview how the color looks in a Discord embed

3. Copy the decimal value to use in your Discord bot (Discord.js uses decimal values)

4. Use the generated code example as a starting point for your bot