Skip to main content
Blob Illustrations Collection cover
Save $9
Sample illustration from the Blob Illustrations Collection
Sample illustration from the Blob Illustrations Collection
Sample illustration from the Blob Illustrations Collection
Sample illustration from the Blob Illustrations Collection
Sample illustration from the Blob Illustrations Collection
Sample illustration from the Blob Illustrations Collection
Sample illustration from the Blob Illustrations Collection
Sample illustration from the Blob Illustrations Collection
Blob Illustrations Chapter 1: Humorous E-commerce & Empty State Vectors

Blob Illustrations Chapter 1: Humorous E-commerce & Empty State Vectors

Colorful
$39
Included

Made for digital storefronts and application interfaces. to life. Blob Illustrations Chapter 1 premium vector pack is specifically tailored for e-commerce websites, high-converting landing pages, and engaging UI empty states. Featuring a modern, vibrant aesthetic with playful characters and relatable scenes, these graphics help communicate complex ideas visually, keeping your users engaged from the first click to the final checkout.

50 elements
Blob Illustrations Chapter 2: Error 404 Empty State Vectors

Blob Illustrations Chapter 2: Error 404 Empty State Vectors

Colorful
$39
Included

Expand your design toolkit with Blob Illustrations Chapter 2. This collection features 50 fully editable, colorful vector illustrations thoughtfully divided into two highly sought-after themes: comprehensive healthcare/wellness visuals and creative error 404 empty states. Perfect for health-tech platforms or adding a touch of humor to broken links and empty dashboards, these scalable SVG and AI files bring a warm, human-centric touch to your digital products.

50 elements

Blob Illustrations Collection: 100 Illustrations

Every asset in this library relies on expressive human figures alongside whimsical animal characters. This unique mix creates an approachable atmosphere, allowing you to tell engaging visual stories across a wide variety of industries without ever feeling generic.

A Unifying Visual Language

This collection is structured to support a broad range of project needs, allowing you to build a cohesive visual identity from your primary landing pages all the way down to your internal application dashboards.

E-commerce and Retail Scenes: Online shopping should feel seamless and engaging. The collection includes dedicated graphics covering digital payments, overflowing shopping carts, fast delivery logistics, and targeted sales promotions. These visuals act as strong anchor points for marketing pages, keeping visitors interested as they scroll and guiding them naturally toward checkout.

Comprehensive Healthcare Concepts: Navigating medical platforms can often feel intimidating. We designed an extensive set of visuals to communicate complex health and wellness topics with warmth and empathy. You will find highly relatable scenes covering maternity care, digital pharmacy prescriptions, fitness routines, and inclusive accessibility themes that build immediate user trust for health tech platforms and insurance portals.

Humorous Empty States and 404 Errors

Empty states and broken links are usually frustrating roadblocks in a user journey. We believe they are actually hidden opportunities for brand building. The Blob collection provides a wealth of imaginative graphics specifically crafted for 404 pages, missing data screens, and system connection errors.

By using our distinct comical style, you can turn a dead end into a moment of delight. Instead of displaying a generic text warning, show your users a clever visual pun, a focused animal character hunting for missing files, a crashed robot, or a dramatic UFO abduction for a missing web page.

This lighthearted approach diffuses user frustration and keeps your brand personality front and center.

Built for Total Customization

We know that beautiful graphics are only helpful if they fit easily into your workflow. Every single asset in the Blob Collection is engineered for seamless integration and complete designer control.

  • Complete Brand Matching: Because these are fully editable flat vector shapes, you have total control over the final look. Easily adjust the punchy pinks, bright greens, and warm yellows to perfectly match your specific brand guidelines using your favorite design software.

  • Infinite Scalability: Provided in standard vector formats, these illustrations scale effortlessly. You can shrink them down for a mobile application menu or expand them for a massive desktop hero banner without losing a single pixel of clarity.

  • Developer Friendly: Download lightweight, web-ready SVG files that keep your website loading speeds incredibly fast, alongside beautifully organized AI source files for deeper design exploration.

Continue exploring

Featured collection mark Featured Collection 2 Packs 100+ illustrations

Blob Illustrations Collection

$69 $78 one time
You save $9 (12%) by buying individually
Illustrator PNG SVG
Collection Summary
Packs included 2
Total illustrations 100
File formats Illustrator, PNG, SVG
Individual price $78
Collection price $69
You save $9 (12%)
Better Value

Unlock all 171K+ icons and illustrations with a plan.

Get All Access
Commercial license included
Lifetime access & free updates
Figma plugin access
One-time payment or monthly subscription

Collection FAQ

What file formats are included in the Blob Illustrations Collection?
Every illustration across all chapters is delivered as fully optimized, web-ready SVG files and layered Adobe Illustrator (AI) source files, ensuring smooth integration for both developers and design teams.
Can I completely customize and recolor these illustrations to match my brand?
Yes. Because the entire collection is built with fully editable flat vector graphics, you have absolute control over the final outcome. You can easily adjust the vibrant colors, remove specific elements, or tweak the compositions to match your specific brand identity using software like Adobe Illustrator or Figma.
What makes the visual style of this collection unique?
This pack intentionally steps away from minimal, serious styles. Instead, it features colorful organic shapes and a humorous, comical style similar to cartoons. It blends dynamic human figures with charming animal characters to make user interfaces highly engaging and approachable.
What types of digital projects are these vectors best suited for?
The Blob Collection is incredibly versatile. It is perfect for modern e-commerce platforms, health tech startups, medical and wellness blogs, and marketing landing pages. It is especially useful for application empty states, missing data screens, or 404 error pages that need a healthy dose of personality.
Will the illustrations lose quality if I shrink them down for mobile apps or blow them up for print?
Not at all. Since they are native vector files, they feature infinite scalability. You can scale them from a tiny mobile UI icon to a large outdoor banner without any loss of crispness or quality.
Can I use the Blob Collection for commercial projects and client work?
Yes, all illustration packs within this collection come with a commercial use license. You are fully permitted to use these graphics in commercial digital products, client websites, applications, and marketing materials according to the standard GetIllustrations license agreement.
function mapFormat(fmt) { const f = fmt.toLowerCase().trim().replace(/^\./, ''); if (f === 'svg') return 'svg'; if (f === 'png') return 'png'; if (f === 'iconjar') return 'iconjar'; if (f === 'ai' || f === 'psd' || f === 'obj' || f === 'fig' || f === 'sketch' || f === 'xd' || f === 'source') return 'source'; return f; // fallback: pass as-is } let _downloadTokenCache = {}; async function getDownloadToken(assetId, assetType) { const cacheKey = `${assetType}-${assetId}`; if (_downloadTokenCache[cacheKey]) return _downloadTokenCache[cacheKey]; try { const res = await fetch(`/api/DownloadToken?assetId=${assetId}&assetType=${assetType}`); if (!res.ok) throw new Error('Token request failed'); const data = await res.json(); _downloadTokenCache[cacheKey] = data.token; return data.token; } catch (e) { console.error('Failed to get download token:', e); return null; } } async function downloadPackFormat(packId, format, event) { if (event) event.preventDefault(); const btn = event ? event.target : null; const originalText = btn ? btn.textContent : ''; if (btn) { btn.style.opacity = '0.5'; btn.style.pointerEvents = 'none'; btn.textContent = 'Preparing...'; } try { const token = await getDownloadToken(packId, 'pack'); if (!token) { alert('Please log in to download.'); return; } const dlUrl = `/admin/api/download/pack/${packId}?format=${format}&token=${token}`; window.location.href = dlUrl; // Keep loading state for formats that generate on-the-fly const slowFormats = ['iconjar', 'all', 'source']; const delay = slowFormats.includes(format) ? 15000 : 3000; setTimeout(() => { if (btn) { btn.style.opacity = '1'; btn.style.pointerEvents = 'auto'; btn.textContent = originalText; } }, delay); return; } catch (e) { alert('Download failed. Please try again.'); } if (btn) { btn.style.opacity = '1'; btn.style.pointerEvents = 'auto'; btn.textContent = originalText; } } async function downloadIllustration(illustrationId, format) { try { const token = await getDownloadToken(illustrationId, 'illustration'); if (!token) { alert('Please log in to download.'); return null; } const url = `/admin/api/download/illustration/${illustrationId}?format=${format || 'svg'}&token=${token}`; return url; } catch (e) { console.error('Download failed:', e); return null; } } document.querySelectorAll('.download-file').forEach(function (el) { el.addEventListener('click', async function (event) { event.preventDefault(); const id = this.id; downloadPackFormat(id, 'all', event); }); }); var header = document.getElementById('hero-image'); function fadeOutOnScroll(element) { if (!element) { return; } var elementHeight = element.offsetHeight; var scrollTop = document.documentElement.scrollTop; var opacity = 1; if (scrollTop > 300) { opacity = 1 - scrollTop / (elementHeight * 4); } if (opacity >= 0) { element.style.opacity = opacity; } } function scrollHandler() { fadeOutOnScroll(header); } window.addEventListener('scroll', scrollHandler);