From c4a0208a5377b9ddb1914847ac842f4da6d3699b Mon Sep 17 00:00:00 2001 From: Stef Date: Fri, 18 Apr 2025 17:08:37 +0200 Subject: [PATCH] Update config.py --- config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.py b/config.py index cdb52a7..6811eb2 100644 --- a/config.py +++ b/config.py @@ -1,16 +1,16 @@ from wordcloud import WordCloud # type: ignore wordcloud = WordCloud( - width=800, - height=400, + width=1920, + height=1080, background_color="black", # or 'black', or any HTML color colormap="viridis", # matplotlib colormap ('plasma', 'cool', 'inferno') # font_path="path/to/font.ttf", # Use a custom font max_words=100, # Max number of words to include min_font_size=10, - max_font_size=100, + max_font_size=200, prefer_horizontal=1, # Between 0 (all vertical) and 1 (all horizontal) - scale=2, # Higher = better resolution + scale=4, # Higher = better resolution contour_color="steelblue", # Outline color (when using contour_width) contour_width=1, # For consistent layout between runs )