Set text color via CSS style
(self, color)
| 2507 | return self |
| 2508 | |
| 2509 | def set_color(self, color): |
| 2510 | """Set text color via CSS style""" |
| 2511 | self.append_styled_span(f"color: {self.color_text(color)}") |
| 2512 | return self |
| 2513 | |
| 2514 | def set_columns(self, cols): |
| 2515 | """Set number of text columns via CSS style""" |
no test coverage detected