So I have been learning how to code MC plugins on intellij and have came across this thing in a tutorial in which when I run a command, I can output a message that is yellow and bolded...
if (cmd.getName().equalsIgnoreCase("feed")){
player.setFoodLevel(20);
player.sendMessage("§e§l[Command] §eHunger bar restored successfully!");
}
So we have special characters there modifying the colour of the output text. What is the name of the colour changer? (Like we have rgb, hex code, etc. So what is this kind called?)