ChatColor is a class for defining color codes.

Hierarchy

  • ChatColor

Constructors

  • Class ChatColor Constructor.

    Parameters

    • code: string

      The color code as a string.

    • Optional color: number

      The color code as a hexadecimal number. Can be undefined.

    Returns ChatColor

Properties

b?: any
code: any
color?: any
g?: any
r?: any
ALL_COLORS: ChatColor[]
AQUA: ChatColor
BLACK: ChatColor
BLUE: ChatColor
BOLD: ChatColor
DARK_AQUA: ChatColor
DARK_BLUE: ChatColor
DARK_GRAY: ChatColor
DARK_GREEN: ChatColor
DARK_PURPLE: ChatColor
DARK_RED: ChatColor
GOLD: ChatColor
GRAY: ChatColor
GREEN: ChatColor
ITALIC: ChatColor
LIGHT_PURPLE: ChatColor
MATERIAL_AMETHYST: ChatColor
MATERIAL_COPPER: ChatColor
MATERIAL_DIAMOND: ChatColor
MATERIAL_EMERALD: ChatColor
MATERIAL_GOLD: ChatColor
MATERIAL_IRON: ChatColor
MATERIAL_LAPIS: ChatColor
MATERIAL_NETHERITE: ChatColor
MATERIAL_QUARTZ: ChatColor
MATERIAL_REDSTONE: ChatColor
MINECOIN_GOLD: ChatColor
OBFUSCATED: ChatColor
PREFIX: any

PREFIX is the section sign (ยง) used in Minecraft color codes.

RESET: ChatColor
VALUES: ChatColor[]
WHITE: ChatColor
YELLOW: ChatColor

Methods

  • Retrieves the blue value of a color.

    Returns undefined | number

    The blue value of the color.

  • Retrieves the format code associated with the chat color.

    Returns string

    The format code of the chat color.

  • Retrieves the green value of the current color.

    Returns undefined | number

    The green value of the color, or undefined if it is not set.

  • Retrieve the value of the red component.

    Returns undefined | number

    The value of the red component, or undefined if it is not set.

  • Returns the hexadecimal string representation of the color code

    Returns undefined | string

    The hexadecimal representation of the color.

  • Returns the color code of the ChatColor instance.

    Returns undefined | number

    The color code of this ChatColor instance.

  • Returns the string representation of the ChatColor instance, which includes the PREFIX followed by the color code.

    Returns string

    A string representing the ChatColor instance

  • Finds the closest ChatColor code for the given RGB values

    Parameters

    • r: number

      Red part of the color.

    • g: number

      Green part of the color.

    • b: number

      Blue part of the color.

    Returns ChatColor

    The closest ChatColor for the given RGB values.

  • Removes color codes from the specified string

    Parameters

    • str: string

      The string from which color codes will be removed.

    Returns string

    The string cleared from color codes.