diff --git a/main.js b/main.js index 4c947bd..d161ddb 100644 --- a/main.js +++ b/main.js @@ -136,8 +136,10 @@ async function checkPriceContinuously() { console.log(`Current Price: ${priceHistory.currentPrice}`); + const randomColor = Math.floor(Math.random() * 16777215).toString(16); + const embed = new EmbedBuilder() - .setColor(0x0099ff) + .setColor(`#${randomColor}`) .setThumbnail('https://solana.com/src/img/branding/solanaLogoMark.png') .setTitle('Solana (SOL) Price Update') .setDescription(`**Current Price: \`$${priceHistory.currentPrice}\`**`)