Uses of Class
org.bukkit.Color
Packages that use Color
Package
Description
The root package of the Bukkit API, contains generalized API classes.
Classes dedicated to handling a plugin's runtime configuration.
Interfaces for non-voxel objects that can exist in a
world
, including all players, monsters, projectiles, etc.Classes involved in manipulating player inventories and item interactions.
The interfaces used when manipulating extra data can can be stored inside
item stacks
.Classes to represent various
potion
properties and manipulation.-
Uses of Color in org.bukkit
Fields in org.bukkit declared as ColorModifier and TypeFieldDescriptionstatic Color
Color.AQUA
Aqua, or (0x00,0xFF,0xFF) in (R,G,B)static Color
Color.BLACK
Black, or (0x00,0x00,0x00) in (R,G,B)static Color
Color.BLUE
Blue, or (0x00,0x00,0xFF) in (R,G,B)static Color
Color.FUCHSIA
Fuchsia, or (0xFF,0x00,0xFF) in (R,G,B)static Color
Color.GRAY
Gray, or (0x80,0x80,0x80) in (R,G,B)static Color
Color.GREEN
Green, or (0x00,0x80,0x00) in (R,G,B)static Color
Color.LIME
Lime, or (0x00,0xFF,0x00) in (R,G,B)static Color
Color.MAROON
Maroon, or (0x80,0x00,0x00) in (R,G,B)static Color
Color.NAVY
Navy, or (0x00,0x00,0x80) in (R,G,B)static Color
Color.OLIVE
Olive, or (0x80,0x80,0x00) in (R,G,B)static Color
Color.ORANGE
Orange, or (0xFF,0xA5,0x00) in (R,G,B)static Color
Color.PURPLE
Purple, or (0x80,0x00,0x80) in (R,G,B)static Color
Color.RED
Red, or (0xFF,0x00,0x00) in (R,G,B)static Color
Color.SILVER
Silver, or (0xC0,0xC0,0xC0) in (R,G,B)static Color
Color.TEAL
Teal, or (0x00,0x80,0x80) in (R,G,B)static Color
Color.WHITE
White, or (0xFF,0xFF,0xFF) in (R,G,B)static Color
Color.YELLOW
Yellow, or (0xFF,0xFF,0x00) in (R,G,B)Methods in org.bukkit that return ColorModifier and TypeMethodDescriptionstatic Color
Color.deserialize(Map<String,Object> map)
static Color
Color.fromBGR(int bgr)
Creates a new color object from an integer that contains the blue, green, and red bytes in the lowest order 24 bits.static Color
Color.fromBGR(int blue, int green, int red)
Creates a new Color object from a blue, green, and redstatic Color
Color.fromRGB(int rgb)
Creates a new color object from an integer that contains the red, green, and blue bytes in the lowest order 24 bits.static Color
Color.fromRGB(int red, int green, int blue)
Creates a new Color object from a red, green, and blueDyeColor.getColor()
Gets the color that this dye represents.Particle.DustOptions.getColor()
The color of the particles to be displayed.DyeColor.getFireworkColor()
Gets the firework color that this dye represents.Particle.DustTransition.getToColor()
The final of the particles to be displayed.Creates a new color with its RGB components changed as if it was dyed with the colors passed in, replicating vanilla workbench dyeingCreates a new color with its RGB components changed as if it was dyed with the colors passed in, replicating vanilla workbench dyeingColor.setBlue(int blue)
Creates a new Color object with specified componentColor.setGreen(int green)
Creates a new Color object with specified componentColor.setRed(int red)
Creates a new Color object with specified componentMethods in org.bukkit that return types with arguments of type ColorModifier and TypeMethodDescriptionFireworkEffect.getColors()
Get the primary colors of the firework effect.FireworkEffect.getFadeColors()
Get the fade colors of the firework effect.Methods in org.bukkit with parameters of type ColorModifier and TypeMethodDescriptionstatic DyeColor
DyeColor.getByColor(Color color)
Gets the DyeColor with the given color value.static DyeColor
DyeColor.getByFireworkColor(Color color)
Gets the DyeColor with the given firework color value.Creates a new color with its RGB components changed as if it was dyed with the colors passed in, replicating vanilla workbench dyeingAdd a primary color to the firework effect.Add several primary colors to the firework effect.Add a fade color to the firework effect.Add several fade colors to the firework effect.Constructors in org.bukkit with parameters of type ColorModifierConstructorDescriptionDustOptions(Color color, float size)
DustTransition(Color fromColor, Color toColor, float size)
-
Uses of Color in org.bukkit.configuration
Methods in org.bukkit.configuration that return ColorModifier and TypeMethodDescriptionGets the requested Color by path.Gets the requestedColor
by path, returning a default value if not found.Methods in org.bukkit.configuration with parameters of type Color -
Uses of Color in org.bukkit.entity
Methods in org.bukkit.entity that return ColorModifier and TypeMethodDescriptionAreaEffectCloud.getColor()
Gets the color of this cloud.Arrow.getColor()
Gets the color of this arrow.Methods in org.bukkit.entity with parameters of type Color -
Uses of Color in org.bukkit.inventory
Methods in org.bukkit.inventory that return ColorModifier and TypeMethodDescriptionItemFactory.getDefaultLeatherColor()
Returns the default color for all leather armor. -
Uses of Color in org.bukkit.inventory.meta
Methods in org.bukkit.inventory.meta that return ColorModifier and TypeMethodDescriptionLeatherArmorMeta.getColor()
Gets the color of the armor.MapMeta.getColor()
Gets the map color that is set.PotionMeta.getColor()
Gets the potion color that is set.Methods in org.bukkit.inventory.meta with parameters of type Color -
Uses of Color in org.bukkit.potion
Methods in org.bukkit.potion that return Color