""" 🍅 Gamified Pomodoro Timer — Custom Gradio Component A beautiful Pomodoro timer where a pixel-art tree grows as you stay focused. Complete sessions to grow your forest! Built entirely with gr.HTML. """ import gradio as gr from datetime import datetime # ─── Constants ──────────────────────────────────────────────────── DURATIONS = { "focus": 25, "short_break": 5, "long_break": 15, } MODE_COLORS = { "focus": "#e74c3c", "short_break": "#2ecc71", "long_break": "#3498db", } TREE_THEMES = { "classic": {"trunk": "#8B5E3C", "crown": "#2ecc71", "crown_top": "#00b894", "fruit": "#e74c3c"}, "cherry": {"trunk": "#5D4037", "crown": "#F8BBD9", "crown_top": "#F48FB1", "fruit": "#E91E63"}, "autumn": {"trunk": "#6D4C41", "crown": "#FF9800", "crown_top": "#FFC107", "fruit": "#FF5722"}, "winter": {"trunk": "#455A64", "crown": "#B0BEC5", "crown_top": "#ECEFF1", "fruit": "#81D4FA"}, "sakura": {"trunk": "#4E342E", "crown": "#FCE4EC", "crown_top": "#F8BBD0", "fruit": "#EC407A"}, } # ─── Templates ──────────────────────────────────────────────────── HTML_TEMPLATE = """