craiyon logo

Illustration of 'AUGUST', an end of summer collage with a cardigan, yarn, iced coffee, sunflowers, and books titled 'cozy reads'.

Illustration of 'AUGUST', an end of summer collage with a cardigan, yarn, iced coffee, sunflowers, and books titled 'cozy reads'.

import matplotlib.pyplot as plt import matplotlib.patches as patches from matplotlib.patches import FancyBboxPatch fig, ax = plt.subplots(figsize=(8.5, 11)) ax.set_xlim(0, 10) ax.set_ylim(0, 11) ax.axis('off') ax.set_facecolor("#FAF7F2") # Creme Hintergrund # Liniertes Papier for y in range(1, 11): ax.plot([0.5, 9.5], [y, y], color="#E0E0E0", linewidth=0.5) # Titel AUGUST ax.text(5, 10, "AUGUST", fontsize=36, fontweight='bold', ha='center', color="#5A7D5A") ax.text(5, 9.5, "end of summer, beginning of autumn", fontsize=10, ha='center', color="#8B7355") # 1. Cardigan links oben ax.text(1.5, 8.5, "๐Ÿงถ", fontsize=30, ha='center', va='center') # Emoji als Platzhalter ax.plot([1, 2], [8.2, 8.2], color="#8B7355") # Schultern # 2. Iced Coffee rect = FancyBboxPatch((7, 8), 1, 1.2, boxstyle="round,pad=0.1", edgecolor="#8B7355", facecolor="#F5E6C8") ax.add_patch(rect) ax.plot([7.5, 7.5], [9.2, 9.8], color="#8B7355", linewidth=2) # Strohhalm ax.text(7.5, 8.6, "๐ŸŒป", fontsize=12, ha='center', va='center') # kleine Blume # 3. Bรผcherstapel for i in range(3): rect = patches.Rectangle((1, 6.5-i*0.4), 1.5, 0.35, edgecolor="#5A7D5A", facecolor="#D4A373") ax.add_patch(rect) ax.text(1.75, 7.02, "cozy reads", fontsize=8, color="white", ha='center', va='center') # 4. Sonnenblumen-Zweig ax.plot([5, 5], [7, 6], color="#8B7355", linewidth=2) ax.plot([5, 4.5], [6.7, 6.8], color="#5A7D5A", linewidth=1.5) # Blatt grรผn ax.plot([5, 5.5], [6.4, 6.5], color="#D4A373", linewidth=1.5) # Blatt ocker # 5. Kerze Ver mais