Section backgrounds
Graphic textures
Striped Shard
Six nodes at a low Randomness value give a sharply cut outline, filled with blue stripes.
patternirregularcooltexture
Download
Seed 8383 · 6 nodes · randomness 3
Code
Copy the code.
SVG markup
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500" width="100%"><defs><pattern id="blob-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0 0L8 0L20 12L20 20ZM0 12L8 20L0 20Z" fill="#1e8fe5" fill-rule="evenodd"/></pattern></defs><path d="M419,347Q362,444,287,380Q212,316,111,283Q10,250,84,170.5Q158,91,237.5,112.5Q317,134,396.5,192Q476,250,419,347Z" fill="url(#blob-pattern)"/></svg>CSS clip-path
.blob {
width: 500px;
height: 500px;
clip-path: path("M419,347Q362,444,287,380Q212,316,111,283Q10,250,84,170.5Q158,91,237.5,112.5Q317,134,396.5,192Q476,250,419,347Z");
}
React component
/**
* Blob — generated by blobs.app.
*
* Drop this file into your project and render <Blob /> anywhere.
*/
import { useId } from 'react';
export interface BlobProps {
/** Rendered width and height. A number is treated as px. Defaults to 100%. */
size?: number | string;
/** Class name for the root svg element. */
className?: string;
/** Accessible name. Without it the graphic is hidden from assistive tech. */
title?: string;
}
export function Blob({ size = '100%', className, title }: BlobProps) {
// Unique per instance, so two blobs on one page never share a def id.
const uid = useId().replace(/[^a-zA-Z0-9]/g, '');
const titleId = `blob-title-${uid}`;
const patternId = `blob-pattern-${uid}`;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 500 500"
width={size}
height={size}
className={className}
role={title ? 'img' : undefined}
aria-labelledby={title ? titleId : undefined}
aria-hidden={title ? undefined : true}
>
{title ? <title id={titleId}>{title}</title> : null}
<defs>
<pattern id={patternId} patternUnits="userSpaceOnUse" width="20" height="20">
<path d="M0 0L8 0L20 12L20 20ZM0 12L8 20L0 20Z" fill="#1e8fe5" fillRule="evenodd" />
</pattern>
</defs>
<path
d="M419,347Q362,444,287,380Q212,316,111,283Q10,250,84,170.5Q158,91,237.5,112.5Q317,134,396.5,192Q476,250,419,347Z"
fill={`url(#${patternId})`}
/>
</svg>
);
}
export default Blob;
Flutter painter
// Generated by blobs.app.
//
// Paint the blob:
// CustomPaint(painter: BlobPainter(), size: const Size(300, 300))
//
// Or clip a widget to it:
// ClipPath(clipper: BlobClipper(), child: child)
import 'dart:ui' as ui;
import 'package:flutter/material.dart';
/// The blob outline, scaled from its 500x500 design space to [size].
Path buildBlobPath(Size size) {
final double sx = size.width / 500.0;
final double sy = size.height / 500.0;
final Path path = Path();
path.moveTo(419.0 * sx, 347.0 * sy);
path.quadraticBezierTo(362.0 * sx, 444.0 * sy, 287.0 * sx, 380.0 * sy);
path.quadraticBezierTo(212.0 * sx, 316.0 * sy, 111.0 * sx, 283.0 * sy);
path.quadraticBezierTo(10.0 * sx, 250.0 * sy, 84.0 * sx, 170.5 * sy);
path.quadraticBezierTo(158.0 * sx, 91.0 * sy, 237.5 * sx, 112.5 * sy);
path.quadraticBezierTo(317.0 * sx, 134.0 * sy, 396.5 * sx, 192.0 * sy);
path.quadraticBezierTo(476.0 * sx, 250.0 * sy, 419.0 * sx, 347.0 * sy);
path.close();
return path;
}
class BlobPainter extends CustomPainter {
const BlobPainter();
@override
void paint(Canvas canvas, Size size) {
final Path path = buildBlobPath(size);
// Pattern and image fills are not supported in this exporter; use the SVG export.
final Paint paint = Paint()
..isAntiAlias = true
..color = const Color(0xFF1E8FE5);
canvas.drawPath(path, paint);
}
@override
bool shouldRepaint(covariant BlobPainter oldDelegate) => false;
}
/// Clips any widget to the same shape: ClipPath(clipper: BlobClipper(), ...).
class BlobClipper extends CustomClipper<Path> {
const BlobClipper();
@override
Path getClip(Size size) => buildBlobPath(size);
@override
bool shouldReclip(covariant CustomClipper<Path> oldClipper) => false;
}
Shapes