Package com.pixelmonmod.api.helpers
Class ColorHelper
java.lang.Object
com.pixelmonmod.api.helpers.ColorHelper
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetParsedColor(String color) getParsedColorName(String color) static intrgbToDecimal(int red, int green, int blue) Converts a rgb color to a decimal color via bit-shifting the value
-
Constructor Details
-
ColorHelper
public ColorHelper()
-
-
Method Details
-
getParsedColor
-
getParsedColorName
-
rgbToDecimal
public static int rgbToDecimal(int red, int green, int blue) Converts a rgb color to a decimal color via bit-shifting the value- Parameters:
red- - The red value of the color (0-255)green- - The green value of the color (0-255)blue- - The blue value of the color (0-255)- Returns:
- - The decimal value of the color
-