Neon gradient with glowing tubes and realistic bloom against a dark navy background

Neon Gradient Generator

Glowing neon-tube gradients with realistic bloom and light spread. The studio uses a real bloom shader so the glow follows proper luminance physics. Free editor with adjustable tube layout, palette, and background. Export PNG up to 8K, animated MP4, or React component.

Open the editor
Free·No signup·Export instantly

Looking for paid features? See pricing

What is a neon gradient?

A neon gradient renders the look of real neon signs: glowing tubes of saturated colour with a soft halo of light spreading outward, casting colour onto the surrounding background. The aesthetic is unmistakable because real neon produces a specific kind of glow that flat colour cannot reproduce. The colour comes from gas discharge (specific noble gases give specific colours), the light spreads with proper inverse-square falloff, and the saturation is much higher than what most designers reach for in normal palettes.

The Gradients.design neon generator reproduces this with a real bloom shader. The tubes are drawn first as saturated lines, then the shader spreads light outward according to luminance physics. The result reads as actual glowing tubes rather than as a colourful line with a Photoshop blur applied. This is the difference between something that looks like neon and something that looks like a brightness adjustment.

Common use cases: arcade and gaming brand identity, Y2K revival and synthwave aesthetics, music streaming backplates (especially for electronic and experimental genres), bar and restaurant signage mockups, sci-fi book and film design.

How the bloom shader works

Bloom in graphics rendering is the technique that makes bright sources of light "spill over" their boundaries. In a real photograph, this happens because of lens diffraction and sensor saturation; bright pixels leak into neighbouring pixels. Most graphics engines simulate this with a post-process pass: identify bright pixels, blur them outward with falloff, composite back over the original frame.

The studio uses a simplified version of this. The neon tubes themselves are rendered at full saturation, then a Gaussian blur pass extracts the brightness above a threshold and applies it as an additive layer with a configurable spread radius. Tunable parameters in the editor:

  • Glow intensity. How strong the bloom is overall. Higher reads as more luminous.
  • Spread radius. How far the light spreads beyond the tube. Small radius reads as small distant signs; large radius reads as huge nearby signs.
  • Threshold. How bright a pixel must be before bloom applies. Default is tuned so only the actual tube produces bloom; you can lower it for a softer, atmospheric feel.

On WebGL-capable devices, the shader runs at 60fps. On older devices the live preview reduces blur quality automatically while keeping export quality high.

Which colours read as authentic neon

Real neon gas discharge produces specific colours. Knowing which is which helps you build gradients that read as real neon rather than as generic saturated lines.

  • Hot pink and magenta: argon gas with mercury. The classic strip-club and arcade colour.
  • Cyan and aqua: helium-mercury mixtures. Reads as sci-fi and cyberpunk.
  • Sodium yellow: actual sodium-vapour lamps. Reads as urban street lighting and 1980s nostalgia.
  • Deep red and orange: pure neon gas. The original colour neon signs were associated with.
  • Green: mercury-argon with phosphor coating. Reads as biohazard and gaming.

Pastel colours and muted tones read as fake neon. If your design needs softer colours, lean on the bloom instead: keep the tube saturated but reduce the bloom intensity so the surrounding glow is gentler.

Make one in 4 steps

  1. Open the neon editor. Visit the free neon gradient generator. The canvas opens with a default electric-cyan composition glowing against deep navy.
  2. Set tube layout. Pick parallel lines, woven mesh, or scattered tubes. Parallel reads as classic neon-sign; woven reads as decorative pattern; scattered reads as nightlife.
  3. Pick neon colours. Add 1 to 5 saturated colours. Hot pink, electric cyan, sodium yellow, and deep magenta read as authentic neon. Pastel tones reduce the effect.
  4. Tune bloom and export. Adjust glow intensity and spread radius for the look you want. Export PNG up to 8K or MP4 with flicker animation on Pro plans.
Tip. Combine neon with a dark navy or near-black background (not pure black, which kills the bloom). The contrast between deep dark base and bright glowing tube is what makes the effect work.

Neon effects in pure CSS

For decorative neon accents that do not need real bloom physics, pure CSS can fake the look using text-shadow or box-shadow stacking.

Neon text using text-shadow

CSS
.neon-text {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  text-shadow:
    0 0 4px #fff,
    0 0 11px #fff,
    0 0 19px #fff,
    0 0 40px #ff00de,
    0 0 80px #ff00de,
    0 0 90px #ff00de,
    0 0 100px #ff00de,
    0 0 150px #ff00de;
}

Neon line using box-shadow

CSS
.neon-line {
  width: 200px;
  height: 4px;
  background: #00ffff;
  border-radius: 2px;
  box-shadow:
    0 0 5px #00ffff,
    0 0 15px #00ffff,
    0 0 30px #00ffff,
    0 0 60px #0099ff;
}

Flicker animation

CSS
.neon-flicker {
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff,
      0 0 40px #ff00de, 0 0 80px #ff00de;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

CSS text-shadow stacking handles small neon accents well. For full neon scenes (multiple tubes, complex layouts), export from the studio because CSS cannot composite many neon sources without painful performance cost.

Cyberpunk and synthwave aesthetics

Neon is the defining visual element of two related aesthetic movements: synthwave (1980s nostalgic, retro-futurist) and cyberpunk (dystopian, neon-soaked future cities). Both made big comebacks in the mid-2020s, partly because of streaming media (Stranger Things, Blade Runner 2049, Cyberpunk 2077 game) and partly because of music-genre revivals.

For synthwave: use hot pink, cyan, and deep purple. Backgrounds dark navy or deep magenta. The visual rule is that everything looks like it could be on the cover of a 1985 Magnatron arcade flyer.

For cyberpunk: more colour variety (pink, cyan, green, yellow), darker backgrounds, denser tube layouts, and often a hint of rain or atmospheric haze. The visual rule is dense urban nighttime.

The studio includes presets for both. Synthwave-grid and cyberpunk-alley are the named starting points; both export at 8K so they hold up at print or large-screen sizes.

Neon text effects: workflow

Neon text is one of the most common requests. Two reliable workflows depending on how much control you need:

Quick: CSS text-shadow stacking

The text-shadow example above is the fastest path. Works in every browser, scales cheaply, but limited control over the bloom shape. Use for blog posts, small UI accents, button hover states.

Pixel-perfect: export from the studio, composite in Photoshop or Figma

  1. In the studio, design a neon tube the same shape as your text (single straight tube, curved tube, or letterform tube).
  2. Export PNG with alpha channel.
  3. In Photoshop or Figma, create a text layer with your typography.
  4. Set the neon export as a layer above the text, blend mode Screen or Add.
  5. Adjust scale and position so the neon glow aligns with the letterforms.

For commercial use (album covers, packaging, hero images), the second workflow gives consistently better results. For web typography where text needs to remain selectable and accessible, the CSS workflow wins.

Where neon gradients work best

  • Music streaming backplates. Especially for synthwave, vapourwave, hyperpop, and electronic genres.
  • Gaming and arcade visuals. Title screens, store-page banners, Twitch overlays.
  • Cyberpunk and sci-fi brand identity. Book covers, film and TV title cards, indie game marketing.
  • Nightlife and bar branding. Restaurant, bar, and club marketing materials that need that "downtown nightlife" feel.
  • Y2K-revival fashion and consumer brands. Particularly for younger audiences (Gen Z and younger millennials).
  • Album art and music video backplates. Neon works especially well as a slowly-flickering video background.

Common mistakes

  1. Pure black background. Pure #000 kills the bloom because the glow has nothing to bleed onto visually. Use deep navy (#0a0a1a) or near-black with a tint.
  2. Pastel neon. Soft pinks and pale cyans read as faux. Real neon is hyper-saturated; embrace it.
  3. Bloom too tight. Tight bloom looks like a Photoshop outer-glow, not like real neon. Real neon has a wide, soft halo that fades far beyond the tube.
  4. Too many colours competing. 5+ neon colours fighting for attention reads as Vegas tourist trap. Stick to 2 to 3 primary colours plus an accent.
  5. Flicker too aggressive. Real broken neon flickers occasionally, not continuously. The studios flicker is tuned to read as natural; avoid cranking it to maximum.
  6. Animation triggering motion sickness. If you animate the neon for video output, wrap any CSS-based version in prefers-reduced-motion media queries.

Frequently asked questions

What is a neon gradient?

A neon gradient renders glowing tubes of saturated colour with a soft bloom halo, simulating the look of real neon signs casting light on surrounding surfaces. The studio uses a real bloom shader so the light spreads with proper luminance physics rather than appearing as a flat Photoshop blur.

How is the glow rendered?

The studio uses a real bloom shader where light intensity decays radially according to inverse-square law. Unlike a flat Photoshop blur (uniform softening), the bloom respects the saturation of the source colour and produces realistic light spill onto the surrounding background.

Can I make the neon flicker animated?

Yes. The live preview includes a subtle flicker. Pro plans export MP4 and WebM video so you can capture the animation for use in product videos, social posts, or motion design.

What colours read as authentic neon?

Hot pink, electric cyan, sodium yellow, deep magenta. Real neon comes from specific gas-discharge colours; saturating to those approximates the look. Pastel colours read as faux neon and feel less convincing.

Does it work on light backgrounds?

It works but the effect is reduced. Dark backgrounds make the bloom much more visible. The daylight neon preset is specifically tuned for white and light backgrounds with adjusted bloom intensity.

Can I use this for type effects?

Indirectly. Export as PNG and use as a layer fill in Photoshop or Figma. Composite with a clean text mask for neon signs and arcade-style typography. The neon text section below shows two CSS approaches.

Why is neon popular for music and gaming?

Y2K and cyberpunk revivals both lean heavily on neon aesthetics. Music platforms use neon backplates for synthwave, vapourwave, and electronic genres. Gaming uses neon for arcade and cyberpunk visual systems.

Can I composite multiple neon colours?

Yes. Add up to 5 colour layers. Each layer has its own tube paths and glow intensity. Useful for replicating multi-coloured neon-sign compositions like real arcade signage.

Ready to design yours?

Free, no signup required. Export to CSS, PNG, React, or MP4 video.

Open the editor