Sets the background color.
(int red, int green, int blue)
| 1753 | |
| 1754 | /** Sets the background color. */ |
| 1755 | public static void setBackgroundColor(int red, int green, int blue) { |
| 1756 | setColor(red, green, blue, false); |
| 1757 | } |
| 1758 | |
| 1759 | static void setColor(int red, int green, int blue, boolean foreground) { |
| 1760 | Color c = Colors.toColor(red, green, blue); |
no test coverage detected