Textile Pattern Idea Generator

Theme / Inspiration
Click Generate
Motive / Key Element
Click Generate
Repeat Style
Click Generate
Color Palette (3 Colors)
Suggested Use
Click Generate

Saved Concepts (0)

Theme Motive Repeat Palette (Hex) Action
Save your best ideas above.

Add New Elements

Expand the randomizer with your unique themes and motives.

Current Custom Items

(Default items are not shown here and cannot be removed.)

No custom items added yet.

'; return; } pools.custom.forEach((item, index) => { const span = document.createElement('span'); span.className = 'item-chip'; span.innerHTML = ` ${item.name} (${item.pool}) `; list.appendChild(span); }); } // --- PDF Export --- function generatePDF() { if (savedConcepts.length === 0) { alert("Please save at least one concept to generate a PDF."); return; } const template = document.getElementById('pdf-template'); const tbody = document.getElementById('pdf-tbody'); // Set Header document.getElementById('pdf-date').innerText = new Date().toLocaleDateString(); // Populate Table tbody.innerHTML = ''; savedConcepts.forEach(concept => { const paletteHtml = concept.palette.map(c => `
${c.hex}
`).join(''); tbody.innerHTML += ` ${concept.theme} ${concept.motive} ${concept.repeat} ${concept.use} ${paletteHtml} `; }); // Show/Print/Hide template.style.display = 'block'; const opt = { margin: 0.5, filename: 'Textile_Concept_Sheet.pdf', image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'in', format: 'letter', orientation: 'landscape' } }; html2pdf().set(opt).from(template).save().then(() => { template.style.display = 'none'; }); } return { switchTab, generateConcept, saveConcept, deleteConcept, addCustomItem, removeCustomItem, generatePDF }; })();
Scroll to Top