From 444d46a4db2747184a56ed17b4a2276a627f25b3 Mon Sep 17 00:00:00 2001 From: vini Date: Sun, 19 Jul 2026 21:13:23 -0300 Subject: [PATCH] Enlarge zodiac symbols fivefold Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_015HtPHsTnDcLVSCiF5FGHZj --- plugin/contents/ui/dancer.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugin/contents/ui/dancer.html b/plugin/contents/ui/dancer.html index f950bcc..21fff4b 100644 --- a/plugin/contents/ui/dancer.html +++ b/plugin/contents/ui/dancer.html @@ -1609,7 +1609,8 @@ function drawConstellations(c, lst, W, H, horizonPx) { /* Cada signo é rotulado pelo seu símbolo; colisões na tela ainda são evitadas. \uFE0E força a forma de texto (sem versão emoji colorida). */ c.shadowBlur = 5; - c.font = `${Math.max(14, Math.round(H * 0.015))}px ui-monospace, monospace`; + const symbolPx = Math.max(70, Math.round(H * 0.075)); + c.font = `${symbolPx}px ui-monospace, monospace`; c.textAlign = 'center'; c.textBaseline = 'middle'; c.fillStyle = 'rgba(170,225,255,0.72)'; @@ -1620,8 +1621,8 @@ function drawConstellations(c, lst, W, H, horizonPx) { if (!sc || sc.y < 24 || sc.y > horizonPx - 18) continue; const symbol = (ZODIAC_SYMBOLS[constellation.id] || constellation.name) + '\uFE0E'; const width = c.measureText(symbol).width + 14; - const box = { x1: sc.x - width / 2, y1: sc.y - 11, - x2: sc.x + width / 2, y2: sc.y + 11 }; + const box = { x1: sc.x - width / 2, y1: sc.y - symbolPx * 0.55, + x2: sc.x + width / 2, y2: sc.y + symbolPx * 0.55 }; if (occupied.some(o => box.x1 < o.x2 && box.x2 > o.x1 && box.y1 < o.y2 && box.y2 > o.y1)) continue; occupied.push(box);