ansi256Bg method

AnsiPen ansi256Bg(
  1. int code
)

Sets background to xterm 256-color palette index code (0–255).

Implementation

AnsiPen ansi256Bg(int code) {
  styleStack.add(QuectoColors.bgAnsi256(code));
  return this;
}