ANSISGRCommand.backgroundColorRGB constructor

ANSISGRCommand.backgroundColorRGB(
  1. int r,
  2. int g,
  3. int b
)

RGB "true-color" background color.

Implementation

factory ANSISGRCommand.backgroundColorRGB(int r, int g, int b) {
  return ANSISGRCommand._('48;2;$r;$g;$b');
}