From 7eee58d5c10b8f5877305aa5a6d668c17a3b7421 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Wed, 23 Jul 2025 11:28:32 -0500 Subject: [PATCH] font size too small --- src/of_the_day_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/of_the_day_manager.py b/src/of_the_day_manager.py index 192d7e28..694c8a80 100644 --- a/src/of_the_day_manager.py +++ b/src/of_the_day_manager.py @@ -38,8 +38,8 @@ class OfTheDayManager: # Load fonts using PIL font_dir = os.path.join(os.path.dirname(__file__), '..', 'assets', 'fonts') - self.title_font = ImageFont.truetype(os.path.join(font_dir, '5by7.regular.ttf'), 7) - self.body_font = ImageFont.truetype(os.path.join(font_dir, 'dot_digital-7.ttf'), 7) + self.title_font = ImageFont.truetype(os.path.join(font_dir, '5by7.regular.ttf'), 12) + self.body_font = ImageFont.truetype(os.path.join(font_dir, 'dot_digital-7.ttf'), 10) # Load categories and their data self.categories = self.of_the_day_config.get('categories', {})