Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (2024)

10

Your Wishlist

Saved item(s): 10

Display:

`; } } else { console.log("failed to remove"); } } else { let isAdded = addToList(myIcon.dataset.handle); if (isAdded) { savedList = readWishList(); [itemCount, itemCountFloating].forEach(item=>item.innerHTML = savedList.length); myIcon.dataset.status = "true"; myIcon.classList.add("added"); } else { console.log("failed to add") } } updateAllIcon(); }) return myIcon; } function updateAllIcon() { document.querySelectorAll(".wishlist_btn").forEach(button=>{ if (button.hasAttribute("data-handle")) { let isPresent = findItem(button.dataset.handle); if (isPresent) { button.classList.add("added"); button.dataset.status = "true"; } else { button.classList.remove("added"); button.dataset.status = "false"; } } }) } // ========================================================================================= Objective utility functions // =============================================== On-page organizing wishlist item list wishlistControls.forEach(control=>{ control.addEventListener("click", ()=>{ ["col3", "col4", "col5"].forEach(thisClass=>wishlistContainer.classList.remove(thisClass)); wishlistControls.forEach(btn=>btn.classList.remove("active")); control.classList.add("active"); wishlistContainer.classList.add(control.dataset.row); }) }) // =========================================================================== Generating products on the wishlist page function printProduct(thisProduct) { let variant_id = thisProduct.variants[0].id; let cardImageContainer = null; cardImageContainer = createElement("a"); cardImageContainer.href = `${window.Shopify.routes.root + 'products/' + thisProduct.handle}`; let cardImage = createElement("img", ["product_card_img"]); if (thisProduct.image && thisProduct.image.src) { cardImage.src = thisProduct.image.src; } else { cardImage.src = "https://cdn.shopify.com/s/files/1/0533/2089/files/placeholder-images-image_large.png?format=webp&v=1530129081"; } cardImageContainer.appendChild(cardImage); let cardTitle = null; cardTitle = createElement("a", ["product_card_title"], [], thisProduct.title); cardTitle.href = `${window.Shopify.routes.root + 'products/' + thisProduct.handle}`; let cardPrice = createElement("p", ["product_card_price"], [], `${"${{amount}}".trim().split("{")[0] + thisProduct.variants[0].price}`); let cardComparePrice = createElement("p", ["product_card_compare_price"], [], `${thisProduct.variants[0].compare_at_price.length > 0 ? "${{amount}}".trim().split("{")[0] + thisProduct.variants[0].compare_at_price : ""}`); let priceContainer = createElement("div", ["product_card_price_container"], [cardComparePrice, cardPrice]) let variantContainer = createElement("div", ["product_card_variant_container"]); let cardDetailButton = null; cardDetailButton = createElement("a", ["product_card_button", "inline"], [], "Details"); cardDetailButton.href = `${window.Shopify.routes.root + 'products/' + thisProduct.handle}`; let cardForm = createElement("form", ["product_form_custom_wishlist"]); cardForm.method = "post"; cardForm.action = `/cart/add/${variant_id}`; cardForm.acceptCharset = "UTF-8"; cardForm.enctype = "multipart/form-data"; cardForm.novalidate = "novalidate"; let cardInputProduct = createElement("input"); cardInputProduct.type = "hidden"; cardInputProduct.name = "form_type"; cardInputProduct.value = "product"; let cardInputChar = createElement("input"); cardInputChar.type = "hidden"; cardInputChar.name = "utf8"; cardInputChar.value = "✓"; let cardInputVariant = createElement("input"); cardInputVariant.type = "hidden"; cardInputVariant.name = "id"; cardInputVariant.value = variant_id; cardInputVariant.disabled = "disabled"; let cardSubmit = createElement("button", ["product_card_button"], [], "Add to cart"); cardSubmit.type = "submit"; cardSubmit.name = "add"; cardSubmit.value = variant_id; let cardInputProductId = createElement("input"); cardInputProductId.type = "hidden"; cardInputProductId.name = "product-id"; cardInputProductId.value = variant_id; [cardInputProduct, cardInputChar, cardInputVariant, cardSubmit, cardInputProductId].forEach(item=>cardForm.appendChild(item)); let cardButtonContainer = createElement("div", ["product_card_button_list"], [cardDetailButton, cardForm]); if (thisProduct.options[0].values[0] != "Default Title") { for (option in thisProduct.options) { let cardOptionName = createElement("p", ["product_card_option_name"], [], thisProduct.options[option].name); let cardVariantSelect = createElement("select", ["product_card_option_set"]); for (value in thisProduct.options[option].values) { let cardVariantOption = createElement("option", [], [], thisProduct.options[option].values[value]); cardVariantOption.value = thisProduct.options[option].values[value]; cardVariantSelect.appendChild(cardVariantOption); } let optionData = []; for (variant in thisProduct.variants) { let variantData = [ thisProduct.variants[variant].title, thisProduct.variants[variant].id, thisProduct.variants[variant].image_id != null ? thisProduct.images.find(img=>img.id == thisProduct.variants[variant].image_id).src : null, [ "${{amount}}".trim().split("{")[0] + thisProduct.variants[variant].price, thisProduct.variants[variant].compare_at_price.length > 0 ? "${{amount}}".trim().split("{")[0] + thisProduct.variants[variant].compare_at_price : "" ] ]; optionData.push(variantData); } cardVariantSelect.addEventListener("change", ()=>{ variantUpdate(optionData); }) let cardOption = createElement("div", ["product_card_option"], [cardOptionName, cardVariantSelect]); variantContainer.appendChild(cardOption) } } let cardContainer = createElement("div", ["product_card", "product"], [cardImageContainer, cardTitle, priceContainer, variantContainer, cardButtonContainer]); function variantUpdate(optionData) { let selectedDataSet = Array.from(cardContainer.querySelectorAll(".product_card_option_set"), item => item.value); let selectedVariant = null; optionData.forEach(option=>{ if (selectedVariant == null) { selectedVariant = option; selectedDataSet.forEach(item=>{ if (!option[0].includes(item)) { selectedVariant = null; } }) } }) cardPrice.innerHTML = selectedVariant[3][0]; cardComparePrice.innerHTML = selectedVariant[3][1]; selectedVariant[2] != "null" ? cardImage.src = selectedVariant[2] : null; if (cardForm.tagName == "FORM") { cardForm.action = `/cart/add/${selectedVariant[1]}`; cardInputVariant.value = selectedVariant[1]; cardSubmit.value = selectedVariant[1]; cardInputProductId.value = selectedVariant[1]; } else if (cardForm.tagName == "BUTTON") { cardForm.dataset.variant = selectedVariant[1]; } } if (!cardContainer.classList.contains("icon_holder")) { let icon = generateIcon(thisProduct.handle); icon.addEventListener("click", ()=>{ cardContainer.classList.add("hiding"); setTimeout(()=>{ cardContainer.style.display = "none"; }, 300) }) appendIcon(cardContainer, icon); } wishlistContainer.appendChild(cardContainer); } // =============================================== Fetching product data from Shopify function fetchProduct(item) { jQuery.getJSON(window.Shopify.routes.root + 'products/' + item, function(thisProduct) { printProduct(thisProduct.product); responseCount += 1; }).fail(function(response) { if (response.status == 404) { responseCount += 1; failedProducts.push(item); } }); } function updateList () { setTimeout(()=>{ if (responseCount == savedList.length) { let newList = []; savedList.forEach(save=>{ if (!failedProducts.includes(save.toLowerCase())) { newList.push(save); } }) saveWishList(newList); let updatedList = readWishList(); itemCount.innerHTML = updatedList.length; itemCountFloating.innerHTML = updatedList.length; responseCount = 0; failedProducts = []; loadingSpinner.classList.remove("active"); wishlistContainer.classList.add("active"); } else { updateList() } }, 100) } // =============================================== Manipulating wishlist window wishlistClose.addEventListener("click", ()=>{ isWishlistOpen = false; pageBody.classList.remove("no_scroll"); Array.from(wishlistSection.parentElement.children).forEach(sibling=>sibling.classList.remove("functionally_hidden")); // wishlistSection.classList.add("functionally_hidden"); wishlistContainer.classList.remove("active"); wishlistUtility.classList.remove("active"); wishlistTrigger.classList.add("active"); loadingSpinner.classList.add("active"); updateAllIcon(); }) wishlistTrigger.addEventListener("click", ()=>{ isWishlistOpen = open; pageBody.classList.add("no_scroll"); Array.from(wishlistSection.parentElement.children).forEach(sibling=>sibling.classList.add("functionally_hidden")); wishlistSection.classList.remove("functionally_hidden"); wishlistContainer.classList.add("active"); wishlistUtility.classList.add("active"); wishlistTrigger.classList.remove("active"); savedList = readWishList(); itemCount.innerHTML = savedList.length; wishlistContainer.innerHTML = ""; if (savedList.length > 0) { savedList.forEach(item=>{ let thisProduct = fetchProduct(item); }) } else { wishlistContainer.innerHTML = `

!

`; } updateList() }) // =============================================== Manipulating Savelist function removeFromList(value) { let newList = []; savedList.forEach(item=>{ if (value.toLowerCase() != item.toLowerCase()) { newList.push(item); } }) return saveWishList(newList); } function addToList(value) { let newList = []; if (!savedList.includes(value)) { newList = [...savedList, value]; } else { newList = savedList; } return saveWishList(newList); } function saveWishList(value) { let isSaveLocal = saveLocal(value); let isSaveCloud = true; if (isSaveLocal && isSaveCloud) { return true; } } function readWishList() { let myLocal = readLocal(); // let myCloud = readCloud(); return myLocal; } // =============================================== Manipulating local storage function saveLocal(value) { try { const jsonString = JSON.stringify(value); localStorage.setItem("wishlist", jsonString); return true; } catch (error) { return false; } } function readLocal() { try { const storedValue = localStorage.getItem("wishlist"); if (storedValue !== null) { return JSON.parse(storedValue); } else { return []; } } catch (error) { return []; } } // =============================================== Manipulating Customer Metafield function readCloud() { } async function saveCloud(value) { } }) })()

|

BRAND: Sirio Color

Regular price $0.80

Regular price Sale price $0.80

Unit price / per

Sale Sorry - Out of Stock

Discounts, taxes and shipping calculated at checkout.

This is the maximum quantity you can select.

View full details

Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (22)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (23)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (24)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (25)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (26)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (27)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (28)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (29)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (30)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (31)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (32)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (33)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (34)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (35)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (36)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (37)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (38)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (39)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (40)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (41)Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (42)

DETAILS

FormatCover
Weight80 lb / 210 gsm / 12 pt
Size8.5 x 11 inch
12 x 12 inch
Quantity1 Sheet
FinishSmooth - CS/2
CoatingUncoated
Grain DirectionGrain Long
ApplicationsDecorative - Invitations - Cardmaking - Scrapbooking - Calligraphy - Paper Crafts - Pastel - Marker - Colored Pencil - Embossing - Debossing - Packaging and more!
Printing*Digital Printing - Letterpress - Offset Printing - Screen Printing - Blind Embossing - Hot Foil Stamping - Thermography
OtherSolid-Core - Archival Quality - Fade-Resistant - Acid and Lignin Free - Easy to Score - Cuts and Folds Cleanly by Hand or Machine
Environmental100%Recyclable and Biodegradable, pH Neutral
OriginMade in Italy - Converted in USA

Sirio Color …. Colors that range from the sea to the moon!

Sirio Color is a high-end premium uncoated cardstock paper with a smooth surface and a substantial tactile feel.

A long-life archival paper, it is solid-core, light-fast, pure elemental chlorine free and heavy metal free

Manufactured in Italy by Fedrigoni, Sirio Color is an excellent choice for cardmaking, scrapbooking, invitations, brochures, menus, report covers, stamping, calligraphy, and more.

*Laser and ink jet printer compatible provided that the printer capabilities accommodate the paper’s weight and thickness. See our Paper 101 Guide for additional information on printing, die-cutting and more.

Interested in swatches of all of our papers? Order ourProfessional Swatch Deck. Hold the paper in your hands, feel it, mix and match colors.

Start creating today and Make Something Beautiful®

Disclaimer

To assist you in finding paper that best suits your application, we offer paper samples for color matching and testing with your specific application, and recommend testing prior to purchasing your paper.
Printing: Cardstock Warehouse provides best practice recommendations for printing and other applications based on our in-house testing and specifications provided by the manufacturing paper mills. The majority of our papers are suitable for conventional printing and processing methods, however, when it comes to paper compatibility with printing and other applications, we cannot explicitly guarantee outcomes. This is due to the diverse range of consumer and professional printers and other processing equipment, each with its unique mechanical and technical characteristics. Additionally, different inks, adhesives and other processing techniques can yield varying results when used on different paper types. If you plan to utilize the services of a professional, we recommend consulting with them to address your specific needs.
Color: While we take great care to accurately photograph product colors, device screens and monitors may not display true to color; photographs are meant to be used only as a guide. When color matters, we recommend purchasing samples prior to purchasing a larger quantity.
Cardstock Warehouse Paper Co, Inc. assumes no liability for any incidental or consequential damages or losses that may occur, whether they are related to color, printing, other applications, or information provided, regardless of whether provided verbally, in writing, or on this website. Ultimately, the responsibility for the outcome lies solely with the consumer.

Recently Viewed Items

Sirio Color Cardstock | Samples | Premium 80 lb Cardstock Paper (2024)

FAQs

Can you print on 80 lb cardstock? ›

It is a medium weight card stock that will go through almost any type of printer. The 80 lb card stock is the most common weight of card stock, and is used for DIY invitations, card making, scrapbooking, flyers, post cards, die-cutting, menus, craft projects, program, and business cards.

What is the thickest cardstock? ›

Cardstock weight ranges from around 65 lbs (thinnest cardstock) to 110 lbs (thickest cardstock). Cardstock can also be measured by GSM (grams per square meter).

What is the difference between 65 lb and 110 lb cardstock? ›

Is 65 LB or 110 LB Cardstock Thicker? The rule of thumb is, the higher the GSM (grams per square meter), the thicker and heavier the cardstock is. A 65 lb cardstock would have a GSM of 176, whereas a 110 lb cardstock would have a GSM between 270 - 308.

Is 100 lb paper cardstock? ›

For reference: most postcards are printed in 100 lb cover or thicker (i.e. 14 pt cardstock is thicker than 100 lb cover) 80 lb cover feels like a thin cardstock. 100 lb cover feels more like a “regular” cardstock.

Which is thicker, 80lb or 100lb paper? ›

Same Paper, Different Weight: Both are made out of the same raw materials and out to the same production equipment. So we know the 100lb paper is 25% heavier than the 80lb gloss text and therefore thicker than the 80lb paper.

Is 80lb cardstock thick? ›

Medium weight paper is generally between 65 lbs to 80 lbs–picture the type of paper typically used in cards and you're in the right ballpark. Heavyweight paper runs from 80 lbs to 200 lbs and can be used in anything from business cards to hang tags to booklets, as it is sturdy and substantial.

What is 80 lb paper used for? ›

This makes 70 and 80 lb cover the ideal paper type for folded brochures or other types of marketing materials for business to pass onto their customers. This paper type comes in two finishing options: gloss and matte. Both options are coated and have a smooth finish, except that gloss finishing has a higher shine.

What is the highest quality cardstock? ›

350-450 GSM – The highest GSM paper is pretty much cardstock paper. This is the stiffest, sturdiest paper and is used for business cards and cardstock for invitations.

Is cardstock too thick for printer? ›

It's always best not to overload the paper feed, some printers only allow one sheet through at a time, but as cardstock is thicker than standard media it's always best to make sure you leave enough room. Ensure your media isn't creased or ripped as this can also cause issues when printing.

How thick is 80 lb paper? ›

What is the difference between 100 lb Text and 100 lb Cover?
Paper Thickness
Paper TypeApprox. Caliper (Thickness)
70lb Gloss text coated paper.0035″
80lb Gloss text coated paper.004″
100lb Gloss text coated paper.005″
23 more rows
Jan 6, 2024

Can you put 110 lb cardstock in a printer? ›

Cardstock comes in a variety of weights and finishes, so choosing the right type is critical to successful printing. Considering the weight of the card stock, the printer can typically handle up to 110 lbs or 200 gsm.

Is 85 lb cardstock good for invitations? ›

Folding invitation cards are typically made with lighter stock, as they are twice as thick after folding. A popular weight range for folding invitation cards is between 65lb-100lb cover.

What is 70 lb paper used for? ›

Common Text Paper Weights:

70-pound text. The best example of 70-pound stock is a comic book, which often uses a gloss or matte paper of this weight. It's also commonly used in large catalogs as a cheaper, lighter alternative. 80-pound text.

What GSM is 80 lb paper? ›

120 gsm

What is 110 lb cardstock used for? ›

110 lb.

This cardstock weight is typically used for index cards due to its sturdiness. It is more noticeably thicker, but can still be used for applications such as cutting, printing, and folding.

How thick of cardstock can I print on? ›

Cardstock comes in a variety of weights and finishes, so choosing the right type is critical to successful printing. Considering the weight of the card stock, the printer can typically handle up to 110 lbs or 200 gsm.

What weight cardstock can go through a printer? ›

Cover Paper

Also called cardstock, cover paper is most common for business cards, menus, invitations, postcards and rack cards. Cover weights range from 60 to 120 pounds. Cover paper can typically be run through your office copier/printer, as long as you have your print settings correctly setup.

Can you print on heavy cardstock? ›

Not only can you print on cardstock with an inkjet printer, but you can achieve really great results. Many inkjet printers can print on thick card as are versatile enough to print photo lab quality photos and graphics.

What is the best weight of cardstock for printing? ›

Lightweight Cardstock (90-120 gsm): Ideal for everyday printing tasks, such as flyers and brochures. Medium-weight Cardstock (121-200 gsm): Great for business cards, postcards, and greeting cards. Heavyweight Cardstock (201-300 gsm): Perfect for high-quality invitations, book covers, and presentations.

Top Articles
Latest Posts
Article information

Author: Sen. Emmett Berge

Last Updated:

Views: 5530

Rating: 5 / 5 (80 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Sen. Emmett Berge

Birthday: 1993-06-17

Address: 787 Elvis Divide, Port Brice, OH 24507-6802

Phone: +9779049645255

Job: Senior Healthcare Specialist

Hobby: Cycling, Model building, Kitesurfing, Origami, Lapidary, Dance, Basketball

Introduction: My name is Sen. Emmett Berge, I am a funny, vast, charming, courageous, enthusiastic, jolly, famous person who loves writing and wants to share my knowledge and understanding with you.