FreeDev Tools

CSS Blob Generator

Organic blob shapes from the 8-value border-radius trick β€” tweak four sliders.

.blob {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 60% 40% 70% 30% / 40% 70% 30% 60%;
}

Generated locally in your browser β€” nothing is uploaded.

How to Use

  1. 1

    Drag the corner sliders

    Four sliders control the 8-value radius pair-wise.

  2. 2

    Pick the gradient

    Start and end colors plus overall size.

  3. 3

    Copy the CSS

    One border-radius line makes the shape.

Frequently Asked Questions

With the 8-value border-radius syntax β€” horizontal radii / vertical radii per corner. Asymmetric percentages turn a square into a smooth organic blob; four sliders drive the eight values.