What is a particle gradient?
A particle gradient is a background visual made of many small coloured points moving together, where the overall pattern emerges from the collective motion rather than from any single particle. Think of starscapes in science fiction films, the slow drift of dust caught in sunlight, or the swirling patterns inside a snow globe. Particle gradients give you these effects without needing 3D modelling software, video footage, or hand animation.
The Gradients.design particle generator runs three physics simulations: wave (particles oscillate like a curtain in wind), cosmic (particles burst outward radially like an explosion), and aurora (particles flow upward with horizontal drift, modelled on real aurora borealis). Each can have between 500 and 50,000 particles, and each particle picks a colour from your palette as it spawns. The result is procedural, never repeats exactly, and runs at 60fps in any modern browser.
Compared to other gradient types, particles are unique because they convey real motion. A blob or morph gradient gives you organic shapes that shift, but the visual feel is "shapes change". Particle gradients give you "things move". This distinction matters for music visualisations, motion-design backplates, and anywhere you need the viewer to feel something is moving rather than reshaping.
Three motion modes, three different feelings
Each mode produces a different emotional response. Choose based on what you want the viewer to feel.
Wave
Particles oscillate left and right in coordinated waves, like a long curtain rippling in wind. The motion feels gentle and contemplative. Good for meditation backplates, slow product reveals, ambient music videos.
Cosmic
Particles burst outward radially from a centre point, slowing as they drift away. Feels like an explosion, a galaxy forming, or energy expanding. Good for product launches, sci-fi marketing, AI startup hero animations.
Aurora
Particles flow upward in a vertical sweep with subtle horizontal drift, mimicking how real aurora borealis moves. Feels otherworldly, slow, atmospheric. Good for travel and Nordic-brand marketing, fantasy book covers, slow video transitions.
You can switch modes at any time without losing your palette or particle count. The studio recompiles the simulation in roughly 100 milliseconds, so you can experiment freely with which mode works best for your composition.
Make one in 4 steps
- Open the particle editor. Visit the free particle gradient generator. The canvas opens with a default cosmic preset and roughly 5,000 particles drifting.
- Pick a motion mode. Wave (oscillating curtain), cosmic (radial outward burst), or aurora (vertical sweep). Each gives a distinctive motion signature.
- Set count and palette. More particles equals denser feel. 5,000 is a good starting point; 50,000 is the maximum. Add 2 to 6 colours to the palette.
- Export. Still PNG up to 8K captures a single frame. Pro plans export animated MP4 and WebM with seamless loop for music videos and brand reels.
Particle gradients for music visualisation
Music visualisation is the highest-volume use case for particle gradients in 2026. Streaming platforms (Spotify Canvas, Apple Music Animated Artwork, YouTube Music) all support short looping video files attached to tracks, and particle systems are one of the most popular looks for those slots.
Recommended workflow for a 30-second music video backplate:
- Open the studio at 1080 by 1920 (vertical, the format most platforms expect).
- Pick aurora or cosmic mode. Wave reads as too calm for most music.
- Use 8,000 to 15,000 particles. Music videos need higher density than static backgrounds.
- Pick 2 to 4 colours that match the track mood. Cool blues for calm; warm reds and pinks for energetic; mixed for varied tracks.
- Set motion speed slightly higher than default so the visual stays engaging at music tempo.
- Export as MP4 with 30-second seamless loop on Pro plans.
For Instagram Reels, TikTok backgrounds, and YouTube Shorts, use 9:16 vertical export. For album visualisers and embedded players, use 1:1 square. The studio supports both presets directly.
Can I make particles in pure CSS?
Sort of. Pure CSS particle effects exist but they have significant limitations. The technique uses many box-shadow declarations on a single element to fake individual particle positions, then animates the element. Example:
.particles {
position: relative;
width: 1px;
height: 1px;
box-shadow:
100px 100px white,
200px 150px white,
300px 200px white,
/* repeat for hundreds of positions */
400px 250px white;
animation: drift 60s linear infinite;
}
@keyframes drift {
to { transform: translateY(-100vh); }
}This works for static-looking starfield backgrounds with maybe 100 to 200 particles, but breaks down quickly: each particle is the same colour, all particles move identically (the whole shadow stack translates together), and the technique cannot do flow-field motion or radial bursts.
For real particle systems with thousands of independently-moving points and per-particle colour, you need WebGL or canvas. The studio handles this; if you need to embed the result in your own app, the React component export bundles the WebGL renderer as a self-contained component.
Performance and particle counts
Particle gradients are GPU-bound: the cost scales roughly linearly with particle count. Rough benchmarks on common devices:
- M1 MacBook: 50,000 particles at 60fps, no sweat.
- 2022+ phone (iPhone 14, Pixel 7): 20,000 particles at 60fps; above that, drops to 30fps.
- 2018 phone (iPhone XR, Pixel 3): 8,000 particles at 60fps; above that, drops below 30fps.
- Low-end Android (2018 budget): 3,000 particles at 30fps.
The studios live preview auto-detects device capability and adjusts particle count downward if the frame rate drops. Export quality is always at full count; only preview adjusts. This means your exported PNG or MP4 will look identical regardless of what device you build on.
For live React component embedding, you should size particle count to the slowest device you support. 5,000 is a safe default that runs smoothly almost everywhere.
Cosmic and space design
Space, astronomy, and sci-fi design lean heavily on particle gradients because the look matches how the universe actually appears: huge numbers of small bright points against a deep dark background. The cosmic mode is specifically tuned for this aesthetic.
Common compositions:
- Starfield background. Cosmic mode, slow speed, 20,000 to 30,000 particles, mostly white with a few coloured highlights. Deep navy background.
- Galaxy spiral. Cosmic mode with rotational drift, 10,000 particles, palette of purple, magenta, and gold. Useful for sci-fi book covers and space-themed marketing.
- Nebula glow. Cosmic mode at very slow speed, 15,000 particles, palette of bright pink and cyan. Pair with a heavy bloom effect (use the React component and apply CSS filter: blur to a layer beneath).
- Asteroid drift. Wave mode at slow horizontal motion, 5,000 large-radius particles, monochrome grey palette. Reads as background asteroids in a space station window.
For NASA-adjacent design (real-data-driven space visualisation), particle gradients give you the visual flavour without claiming scientific accuracy. They work well for marketing materials, educational content, and casual data visualisation, but should not replace real telescope imagery for serious astronomy work.
Where particle gradients work best
- Music streaming visualisations. Spotify Canvas, Apple Music animated artwork, YouTube Music backplates.
- Hero animations on marketing sites. Especially for AI startups, sci-fi products, and music tech.
- App splash screens with movement. Particle drift suggests the app is "alive" rather than static.
- Brand video intros and outros. 5 to 10 second particle animations make excellent transition pieces.
- Game and arcade backplates. Especially for retro arcade, space shooter, and bullet-hell game marketing.
- Generative art and NFT collections. Procedural variation means every export is unique.
- Sci-fi book and film design. Cover art and title cards lean on particle systems for that "deep space" feel.
Common mistakes
- Too many particles. Above 30,000 the canvas reads as noise, not as particles. Stay between 3,000 and 20,000 for compositions where individual motion should matter.
- Wrong mode for the feeling. Aurora mode for an explosive music track reads as too calm. Cosmic mode for meditation reads as too active. Match the mode to the emotion.
- Particles too uniform. Same size, same speed, same colour. Real particle systems have variance. Adjust size variance and use 2 to 4 palette colours minimum.
- Motion speed too high. Fast particle motion reads as agitating. Slow motion reads as ambient. For background use, slower is almost always better.
- Pure black background. Particles pop more against deep navy or near-black with a tint. Pure black flattens the visual depth.
- Particles too small. Sub-2-pixel particles disappear on retina displays. Default size of 3 to 5 pixels works well across resolutions.
- Ignoring reduced motion. For embedded particle systems on websites, wrap the animation in a prefers-reduced-motion media query. Show a static fallback for users who opt out.
Frequently asked questions
What is a particle gradient?
A particle gradient renders thousands of small colour points flowing across the canvas in coordinated motion. The studio offers three modes: wave (oscillating curtain), cosmic (radial outward burst), and aurora (vertical sweep). Each mode runs its own physics simulation.
How is this different from a procedural noise gradient?
Noise gradients are static colour fields, computed once and held still. Particle gradients animate each point with its own velocity vector, creating real motion that captures as video. The visual feel is closer to actual movement than to decorative texture.
Will this run on mobile?
Yes, up to roughly 10,000 particles at 60fps on modern phones. Above that, frame rate drops on older devices. The live preview reduces particle count automatically while keeping export quality at full settings.
Can I export as a video loop?
Yes. Pro plans include MP4 and WebM with seamless loop support. The looping works by ensuring particle positions at time T match positions at time T + duration, so the video plays continuously without a visible cut.
What gives the aurora mode its sweeping feel?
A vertical flow-field that nudges particles upward with slight horizontal drift, modelled on how real aurora borealis moves in the upper atmosphere. The mode is tuned to match that visual rhythm rather than to be physically accurate.
Can I use particle gradients for music visualisations?
Yes, a common use case. Export a long MP4 with the particle animation and overlay your audio in any video editor. The motion pairs well with electronic, ambient, and experimental music.
How many particles can I use?
Up to 50,000. Higher counts look denser but cost more GPU time. The studio adjusts live-preview quality automatically; export quality is unaffected.
Can I control particle colour individually?
You set the palette; each particle picks from it randomly. Individual per-particle colour control is not exposed in the UI but can be achieved by modifying the React component export.
