diff --git a/python/ruff-ecosystem/ruff_ecosystem/markdown.py b/python/ruff-ecosystem/ruff_ecosystem/markdown.py
index e0154834f9..80f11f0cb2 100644
--- a/python/ruff-ecosystem/ruff_ecosystem/markdown.py
+++ b/python/ruff-ecosystem/ruff_ecosystem/markdown.py
@@ -18,7 +18,10 @@ def markdown_project_section(
def markdown_plus_minus(added: int, removed: int) -> str:
- return f'+{added} -{removed}'
+ # TODO(zanieb): GitHub does not support coloring with it seems like the only
+ # way is to use LateX `${\text{\color{green}+10 \color{red}-10}}$` but
+ # it renders so ugly it's not worth doing yet
+ return f"+{added} -{removed}"
def markdown_details(summary: str, preface: str, content: str | list[str]):