مولد صفحات تلوين للكبارInkwell — Adult Coloring Page Generator & Studio🖌️Inkwelladult coloring studio ✦ AI powered · color as you like 🖨️ Print ⬇️ Download SVG ⟳ Reset colors ✧blank canvaschoose theme, adjust complexity & start your meditative coloring journey.✒️composing your artwork… `); win.document.close(); }); document.getElementById('btn-download').addEventListener('click', () => { if (!svgReady) { showToast('No page to download'); return; } const svgElem = document.getElementById('svg-container').querySelector('svg'); if (!svgElem) return; const blob = new Blob([svgElem.outerHTML], {type: 'image/svg+xml'}); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = `inkwell-${selectedTheme}-coloring.svg`; a.click(); URL.revokeObjectURL(a.href); }); document.getElementById('btn-reset-colors').addEventListener('click', () => { if (!svgReady) return; const shapes = document.getElementById('svg-container').querySelectorAll('path, circle, ellipse, rect, polygon, polyline'); shapes.forEach(s => s.style.fill = ''); }); function showToast(msg) { const t = document.getElementById('toast'); t.textContent = msg; t.classList.add('show'); setTimeout(() => t.classList.remove('show'), 2800); }