(self, s: tuple[object, ...], op: str)
| 92 | return f"{self.embed()}{suffix}" |
| 93 | |
| 94 | def node(self, s: tuple[object, ...], op: str) -> colored: |
| 95 | return self.__class__(enabled=self.enabled, op=op, *s) |
| 96 | |
| 97 | def black(self, *s: object) -> colored: |
| 98 | return self.node(s, fg(30 + BLACK)) |