font change to cozette

This commit is contained in:
Chuck
2025-07-23 12:53:26 -05:00
parent 33e61634be
commit e7100c4cba
2 changed files with 1 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ class OfTheDayManager:
# Load fonts using freetype # Load fonts using freetype
font_dir = os.path.join(os.path.dirname(__file__), '..', 'assets', 'fonts') font_dir = os.path.join(os.path.dirname(__file__), '..', 'assets', 'fonts')
self.title_font = freetype.Face(os.path.join(font_dir, '6x9.bdf')) self.title_font = freetype.Face(os.path.join(font_dir, '6x9.bdf'))
self.body_font = freetype.Face(os.path.join(font_dir, '5x7.bdf')) self.body_font = freetype.Face(os.path.join(font_dir, 'cozette-8.bdf'))
# Load categories and their data # Load categories and their data
self.categories = self.of_the_day_config.get('categories', {}) self.categories = self.of_the_day_config.get('categories', {})