ansi256Fg method

AnsiPen ansi256Fg(
  1. int code
)

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

Implementation

AnsiPen ansi256Fg(int code) {
  styleStack.add(QuectoColors.ansi256(code));
  return this;
}