Weatherbee Cowl

Island Yarn


$ 101.99

Introducing the Weatherbee Cowl!  As in...the weather be insane, so let's knit a pretty thing to show that!  The Weatherbee Cowl combines our luscious hand-dyed Solea Light with 50 Mohair Shades to show just what the weather is doing on the every day of the year - not just the temperature!

The Weatherbee Cowl Kit includes five 150 yard hanks of our Solea Light - dyed in relatively pale colors so that your mohair has a fighting chance to combine and show through.  The sample you see here was made with Set 1.  It also includes 4 spools of 50 Mohair Shades - representing Sunny, Cloudy, Snowy, and Rainy.  If you want to use different colors for these (or if you live in a climate where the Snowy will never get used and want to swap it), feel free to click here and leave a note in your order with color numbers (but supplies may be limited).  The Weatherbee Cowl kit also includes a FREE pattern download code for the pattern! The finished cowl at the end of the year is approximately 7" wide and 52" long (around).  You'll need a Size 6, 16 - 24" circular needle.

Since the weather can be insane and unpredictable, we cannot guarantee that you won't run out of a certain color, but later in 2023, we'll add individual minis to this listing in case you need more.  And the mohair extras can be found at the link above.

And in case you missed it last year - we also have a gorgeous kit for another the Temperature Cowl - the Hilo Temperature cowl - you can find it here!

This kit ships for FREE within the US as we always ship for free on orders over $75.

Related Products


const selectVariantByClickingImage = { // Create variant images from productJson object _createVariantImage: function (product) { const variantImageObject = {}; product.variants.forEach((variant) => { if ( typeof variant.featured_image !== 'undefined' && variant.featured_image !== null ) { const variantImage = variant.featured_image.src .split('?')[0] .replace(/http(s)?:/, ''); variantImageObject[variantImage] = variantImageObject[variantImage] || {}; product.options.forEach((option, index) => { const optionValue = variant.options[index]; const optionKey = `option-${index}`; if ( typeof variantImageObject[variantImage][optionKey] === 'undefined' ) { variantImageObject[variantImage][optionKey] = optionValue; } else { const oldValue = variantImageObject[variantImage][optionKey]; if (oldValue !== null && oldValue !== optionValue) { variantImageObject[variantImage][optionKey] = null; } } }); } }); return variantImageObject; }, _updateVariant: function (event, id, product, variantImages) { const arrImage = event.target.src .split('?')[0] .replace(/http(s)?:/, '') .split('.'); const strExtention = arrImage.pop(); const strRemaining = arrImage.pop().replace(/_[a-zA-Z0-9@]+$/, ''); const strNewImage = `${arrImage.join('.')}.${strRemaining}.${strExtention}`; if (typeof variantImages[strNewImage] !== 'undefined') { product.variants.forEach((option, index) => { const optionValue = variantImages[strNewImage][`option-${index}`]; if (optionValue !== null && optionValue !== undefined) { const selects = document.querySelectorAll('#'+ id + ' [class*=single-option-selector]'); const options = selects[index].options; for (let option, n = 0; (option = options[n]); n += 1) { if (option.value === optionValue) { selects[index].selectedIndex = n; selects[index].dispatchEvent(new Event('change')); break; } } } }); } }, _selectVariant: function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const thumbnails = document.querySelectorAll('#'+ sectionId + ' img[src*="/products/"]'); if (thumbnails.length > 1) { const productObject = JSON.parse(product.innerHTML); const variantImages = this._createVariantImage(productObject); // need to check variants > 1 if (productObject.variants.length > 1) { thumbnails.forEach((thumbnail) => { thumbnail.addEventListener('click', (e) => this._updateVariant(e, sectionId, productObject, variantImages), ); }); } } }); } }, }; if (document.readyState !== 'loading') { selectVariantByClickingImage._selectVariant(); } else { document.addEventListener( 'DOMContentLoaded', selectVariantByClickingImage._selectVariant(), ); }