svg-blob-generator
SVG blobs are organic, asymmetric closed shapes β the inverse of geometric circles and squares. They became a 2018+ design trend on landing pages, mobile-app illustrations, and marketing graphics, providing visual interest without the rigid feel of grid-aligned shapes. The ZTools SVG Blob Generator produces random blobs via mathematical perturbation of a circle (n control points placed on a circle, each radius offset by random amounts), with adjustable complexity (number of bumps), randomness (irregularity), and color/gradient. Output is a single <svg> element ready to paste into HTML, React (as JSX), or design tools.
Use casesβ
Landing-page hero backgroundsβ
A large pastel blob behind hero text adds movement and breaks the rectangular grid. Stripe, Notion, Slack marketing pages all use this pattern.
Avatar / profile picture backdropsβ
Place a circular avatar over a blob shape for a softer, more organic profile-card look. Common in Dribbble shots and modern marketing.
Decorative section dividersβ
Replace flat horizontal section breaks with blob-shaped transitions. Adds rhythm to long-scroll pages.
Empty-state illustrationsβ
Pair a blob with a centered icon for friendlier "no data" / "all done" / "nothing here yet" screens. Less sterile than plain icon-on-white.
How it worksβ
- Set complexity β 3β20 control points. More points = more bumps. 6β10 is the visual sweet spot.
- Set randomness β 0β100%. 0 = perfect circle; 100 = wild asymmetry. 30β60% is "blob-like".
- Pick color or gradient β Solid fill, two-stop linear gradient, or three-stop radial gradient.
- Re-roll for variation β Each click generates a new random blob with the same parameters β sample 5β10 and pick the best.
- Copy SVG β Single
<svg>element with<path>β paste into HTML / JSX / design app. No external dependencies.
Examplesβ
Input: 8 points, 50% randomness, indigo
Output: Soft asymmetric blob suitable for hero background β saved as inline SVG.
Input: 15 points, 80% randomness, gradient
Output: Highly irregular blob with light-to-dark gradient β decorative accent shape.
Input: 6 points, 30% randomness, currentColor
Output: Subtle organic shape; inherits text color via currentColor.
Frequently asked questionsβ
Why SVG instead of PNG?
SVG scales infinitely without pixelation, has tiny file size (a blob is < 1KB), inherits CSS colors via currentColor, and animates trivially. PNG fixes you to one resolution and color.
How does the algorithm work?
N control points are placed on a circle, each at a slightly randomised distance from center. A BΓ©zier curve smoothly connects them, producing the closed organic shape.
Can I animate the blob?
Yes β animate the SVG path's d attribute via SMIL or, more commonly, with a JS library that morphs between two blob shapes (e.g. blobs.app, or a custom morph-between-paths function).
Will it work in old browsers?
SVG support is universal (IE9+, all modern browsers). The blob path is just <path d="..."> β works everywhere SVG works.
Can I edit the blob in Figma?
Yes β paste the SVG into Figma; it converts to a vector shape you can edit point-by-point.
Are blobs accessible?
They're decorative β add role="presentation" and aria-hidden="true" to the SVG so screen readers skip them.
Tipsβ
- Generate 5β10 blobs per design and pick the best β randomness means the first roll is rarely the best.
- Use
aria-hidden="true"on decorative blobs so screen readers skip them. - Keep blob complexity β€ 10 for hero backgrounds; more bumps look noisy at large sizes.
- Pair with
currentColorand CSS variables for theme-aware blobs that change in dark mode. - For animated morphing, use a library like flubber.js to interpolate between two blob
dattributes.
Try it nowβ
The full svg-blob-generator runs in your browser at https://ztools.zaions.com/svg-blob-generator β no signup, no upload, no data leaves your device.
Last updated: 2026-05-06 Β· Author: Ahsan Mahmood Β· Edit this page on GitHub