| 47 | |
| 48 | |
| 49 | class ShowcaseRowModifier(RowModifier): |
| 50 | COLOR = "green" |
| 51 | |
| 52 | def apply(self, row: RowDefinition, justification_length: int): |
| 53 | return RowDefinition( |
| 54 | name=style( |
| 55 | f"{row.name}".ljust(justification_length), |
| 56 | fg=self.COLOR, |
| 57 | ), |
| 58 | text=style(row.text.strip(), fg=self.COLOR), |
| 59 | ) |
no outgoing calls