Set the color of a button or multiple buttons.
// Using color names
button.light("red");
// Set the button to this decimal color
button.light(8);
// Object of numbers
button.light({
"red": 10,
"green": 20,
"blue": 30
});
// Object of numbers, abbreviated
button.light({
"r": 10,
"g": 20,
"b": 30
});
// Array of numbers
button.light([10, 20, 30]);
// Array of numbers
button.light([3, 0]);
button.dark();