underlineRgb method

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

Sets underline color to 24-bit true color RGB.

Implementation

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