static Color |
Color.black() |
Create a black color
|
static Color |
Color.blue() |
Create a blue color
|
static Color |
Color.brown() |
Create a brown color
|
static Color |
Color.color(float[] hsl) |
Create the color with HSL (hue, saturation, lightness) or HSL (alpha)
values
|
static Color |
Color.color(float[] hsl,
float alpha) |
Create the color with HSLA (hue, saturation, lightness, alpha) values
|
static Color |
Color.color(float red,
float green,
float blue) |
Create the color with arithmetic RGB values
|
static Color |
Color.color(float red,
float green,
float blue,
float opacity) |
Create the color with arithmetic RGB values
|
static Color |
Color.color(int color) |
Create the color as a single integer
|
static Color |
Color.color(int red,
int green,
int blue) |
Create the color with RGB values
|
static Color |
Color.color(int red,
int green,
int blue,
float opacity) |
Create the color with RGBA values
|
static Color |
Color.color(int red,
int green,
int blue,
int alpha) |
Create the color with RGBA values
|
static Color |
Color.color(String color) |
Create the color in hex
|
static Color |
Color.color(String color,
float opacity) |
Create the color in hex with an opacity
|
static Color |
Color.color(String color,
int alpha) |
Create the color in hex with an alpha
|
static Color |
Color.color(String red,
String green,
String blue) |
Create the color with individual hex colors
|
static Color |
Color.color(String red,
String green,
String blue,
float opacity) |
Create the color with individual hex colors and opacity
|
static Color |
Color.color(String red,
String green,
String blue,
String alpha) |
Create the color with individual hex colors and alpha
|
Color |
Color.copy() |
Copy the color
|
static Color |
Color.cyan() |
Create a cyan color
|
static Color |
Color.darkGray() |
Create a dark gray color
|
static Color |
Color.gray() |
Create a gray color
|
static Color |
Color.green() |
Create a green color
|
static Color |
Color.lightGray() |
Create a light gray color
|
static Color |
Color.magenta() |
Create a magenta color
|
static Color |
Color.orange() |
Create an orange color
|
static Color |
Color.pink() |
Create a pink color
|
static Color |
Color.purple() |
Create a purple color
|
static Color |
Color.red() |
Create a red color
|
static Color |
Color.violet() |
Create a violet color
|
static Color |
Color.white() |
Create a white color
|
static Color |
Color.yellow() |
Create a yellow color
|