Browse Source

Change colors

master
Abheek Dhawan 4 years ago
parent
commit
781a9fd1e7
  1. 6
      index.js
  2. 1258
      package-lock.json

6
index.js

@ -40,7 +40,7 @@ client.on('messageDelete', message => {
.setThumbnail(messageAvatar) .setThumbnail(messageAvatar)
.setFooter("ID: " + messageID) .setFooter("ID: " + messageID)
.setTimestamp() .setTimestamp()
.setColor('ff0000'); .setColor('ff748c');
client.guilds.cache.get("826506878976000030").channels.cache.get("826876551756513314").send(deleteEmbed).catch(console.error); client.guilds.cache.get("826506878976000030").channels.cache.get("826876551756513314").send(deleteEmbed).catch(console.error);
}); });
@ -55,7 +55,7 @@ client.on('messageUpdate', (originalMessage, editedMessage) => {
.setThumbnail(editedMessage.author.avatarURL()) .setThumbnail(editedMessage.author.avatarURL())
.setFooter("ID: " + editedMessage.id) .setFooter("ID: " + editedMessage.id)
.setTimestamp() .setTimestamp()
.setColor('006699'); .setColor('8cbfe9');
client.guilds.cache.get("826506878976000030").channels.cache.get("826876551756513314").send(editEmbed).catch(console.error); client.guilds.cache.get("826506878976000030").channels.cache.get("826876551756513314").send(editEmbed).catch(console.error);
}); });
@ -77,7 +77,7 @@ client.on('channelCreate', channel => {
.addField("Category", channelCategory) .addField("Category", channelCategory)
.setFooter("ID: " + channelID) .setFooter("ID: " + channelID)
.setTimestamp() .setTimestamp()
.setColor('00aaff'); .setColor('8cbfe9');
client.guilds.cache.get("826506878976000030").channels.cache.get("826876551756513314").send(channelCreateEmbed).catch(console.error); client.guilds.cache.get("826506878976000030").channels.cache.get("826876551756513314").send(channelCreateEmbed).catch(console.error);
} }
}); });

1258
package-lock.json

File diff suppressed because it is too large
Loading…
Cancel
Save