Back to shaders

Voronoi Cells

Customize
#1a1a3e
#2d1b4e
#00ffff
1.00
5.00
0.05
1.00
1.00
1.00
1.00
0.50

Organic cell pattern with glowing edges, energy flow, and RGB split effect.

organiccellssci-fianimatedpatternby ShaderDrop

Source Code

Quick Start

1

Download or copy the component file

2

Save to components/VoronoiCells.tsx

3

Import and use in your page

page.tsx
import { VoronoiCells } from "@/components/VoronoiCells"

export default function Page() {
  return (
    <div className="relative min-h-screen">
      <VoronoiCells className="absolute inset-0 -z-10" />
      {/* Your content here */}
    </div>
  )
}
VoronoiCells.tsx