Get the base style.
(self)
| 422 | return lexer_name |
| 423 | |
| 424 | def _get_base_style(self) -> Style: |
| 425 | """Get the base style.""" |
| 426 | default_style = self._theme.get_background_style() + self.background_style |
| 427 | return default_style |
| 428 | |
| 429 | def _get_token_color(self, token_type: TokenType) -> Optional[Color]: |
| 430 | """Get a color (if any) for the given token. |
no test coverage detected