All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ginloader.bukkit-api.3.0.0.source-code.Color.kt Maven / Gradle / Ivy

package pluginloader.api

enum class Color(
    private val chatFormat: String,
) {
    WHITE("§f"),
    ORANGE("§6"),
    MAGENTA("§d"),
    AQUA("§b"),
    YELLOW("§e"),
    LIME("§a"),
    PINK("§c"),
    GRAY("§8"),
    SILVER("§7"),
    CYAN("§3"),
    PURPLE("§5"),
    BLUE("§1"),
    BROWN("§9"),
    GREEN("§2"),
    RED("§4"),
    BLACK("§0");

    override fun toString() = chatFormat
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy