From 1fa820d07fe1bcea2b6c061314b5cb297b7572e6 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Fri, 13 Dec 2024 09:53:07 -0600 Subject: [PATCH] fix: use `ansi_light` for syntax highlighting (#251) This eliminates a bright white background color that renders for Markdown code blocks. This change was tested on light and dark terminal backgrounds and does not force a background color in either case. Fixes #249 --- src/repo_review/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repo_review/__main__.py b/src/repo_review/__main__.py index 16b28d4..d9bea0b 100644 --- a/src/repo_review/__main__.py +++ b/src/repo_review/__main__.py @@ -36,7 +36,7 @@ __all__ = ["main", "Formats", "Show", "Status"] -CODE_THEME = "default" +CODE_THEME = "ansi_light" def __dir__() -> list[str]: