Gradient Trends 2026: From Mesh to OKLCH Interpolation

Article · Updated 2026-07-28 · Yexla Team

Gradients came back years ago and never left; what changes is which gradients. The current wave is soft, atmospheric and technically smarter — powered by CSS features that didn't exist when flat design died.

1. Mesh & aurora backgrounds

Layered radial gradients blurred into organic color fields — the default hero background of modern SaaS. Recipe: 3–5 radial gradients of related hues at different positions over a base color (build one in our gradient generator, type "Mesh").

background:
  radial-gradient(at 20% 30%, #6C5CE7 0, transparent 55%),
  radial-gradient(at 80% 20%, #00B8D9 0, transparent 50%),
  radial-gradient(at 60% 80%, #FF6B9D 0, transparent 55%),
  #0E1016;

2. Grainy gradients

Adding film-grain noise (an SVG turbulence overlay at low opacity) kills the "plastic" smoothness and adds editorial texture — everywhere in album art, event branding and portfolio sites.

3. Interpolation got smart: gradients in OKLab

The biggest technical upgrade: linear-gradient(in oklab, blue, orange) avoids the gray dead-zone of sRGB interpolation. Complementary sweeps finally look alive the whole way across. See why OKLab fixes this.

4. Conic accents & borders

Conic gradients power the trending animated border glow: a rotating conic behind a masked card edge. Subtle spins (20s+) read premium; fast ones read casino.

5. Text gradients, still — but disciplined

Gradient text survives on hero headlines only: two related hues, high contrast against background, never on body text. (background-clip: text remains the technique.)

StyleFeels likeUse for
Mesh/auroraAtmospheric, premiumSaaS heroes, AI products
GrainyEditorial, humanMusic, events, portfolios
OKLab duotoneClean, vividButtons, links, small accents
Conic borderInteractive, aliveCards, CTAs (sparingly)

Frequently asked questions

What is a mesh gradient?

Several radial gradients layered at different positions and blurred into an organic multi-color field — the soft 'aurora' backgrounds seen across modern product sites.

How do I make gradients look less muddy?

Interpolate in OKLab (one CSS keyword: 'in oklab') or choose stops that are neighbors on the color wheel; muddiness comes from sRGB interpolation crossing gray.

Are gradients accessible?

Backgrounds: ensure text on top passes contrast against the *lightest* area it crosses, or add a scrim. Gradient text: headlines only, with strong contrast throughout.