Bladeren bron

Switch to Horizon theme colorscheme

rigormorrtiss 4 jaren geleden
bovenliggende
commit
ec4bdb1459
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      util/discord.go

+ 2 - 2
util/discord.go

@@ -14,10 +14,10 @@ import (
 func WriteMessage(messagesTextView *tview.TextView, message discord.Message) {
 	var content strings.Builder
 
-	content.WriteString("[red::b]" + message.Author.Username + "[-:-:-] ")
+	content.WriteString("[#E95678::b]" + message.Author.Username + "[-:-:-] ")
 	// If the author of the message is a bot account, add "BOT" beside the username of the author.
 	if message.Author.Bot {
-		content.WriteString("[blue]BOT[-:-:-] ")
+		content.WriteString("[#26BBD9]BOT[-:-:-] ")
 	}
 
 	if message.Content != "" {