From 9bb01c14f939d3cfa1fd9b3f78bd8c3ee3466485 Mon Sep 17 00:00:00 2001 From: cottongin Date: Mon, 6 Apr 2026 20:31:47 -0400 Subject: [PATCH] fix: change cover background back to white to distinguish text areas from black mosaic gaps Made-with: Cursor --- src/cover.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cover.py b/src/cover.py index 5ecfecb..c503ddd 100644 --- a/src/cover.py +++ b/src/cover.py @@ -114,7 +114,7 @@ def generate_mosaic_cover( ) -> str: os.makedirs(output_dir, exist_ok=True) w, h = config.COVER_SIZE - img = PILImage.new("RGBA", (w, h), color=(0, 0, 0, 255)) + img = PILImage.new("RGBA", (w, h), color=(245, 245, 245, 255)) bottom_headlines_height = 0 if headlines: