20% off the store --- free/reduced shipping on most orders

About

Grow With Us... 

“Llum” is the Catalan word for light: the pure, creative energy in every child—the glow of personality and individual style.   Llum clothing is made for play, but still very much dressed.  It moves effortlessly from the sandbox, to the ice cream truck, to the main event with plenty of style and no fuss. 
Reversible, adjustable, and interchangeable pieces extend wear and enjoyment. Our palette is inspired by the interplay of earth and sun, in colors, subdued or flamboyant.  We strive to create harmony through comfort and simplicity. We believe in the creative and sustaining light within every child, and in clothes that allow children simply to be, beautifully.
 
document.addEventListener('DOMContentLoaded', () => { const productJson = [...document.querySelectorAll('[id^=ProductJson-')]; if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const productVariants = JSON.parse(product.innerHTML); const unavailableVariants = []; productVariants.variants.forEach((variant) => { if (variant.available === false) { unavailableVariants.push(variant); } }); const variantOptions = [...document.querySelectorAll('#' + sectionId + ' .single-option-selector option')] const observer = new MutationObserver((mutation) => { unavailableVariants.forEach((item) => { variantOptions.forEach((option) => { if (option.value === item.title) option.remove(); }); }); observer.disconnect(); }); if (unavailableVariants.length > 0 && productVariants.options.length === 1) { const addToCartForm = document.querySelector('form[ action="/cart/add"]'); if (window.MutationObserver && addToCartForm.length) { if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } const config = { childList: true, subtree: true }; observer.observe(addToCartForm, config); } } }); } });