rgbBg method

AnsiPen rgbBg(
  1. int r,
  2. int g,
  3. int b
)

Sets background to 24-bit true color RGB.

Implementation

AnsiPen rgbBg(int r, int g, int b) {
  styleStack.add(QuectoColors.bgRgb(r, g, b));
  return this;
}