20 CSS Neon Text Effects06 / 20

Pure CSSMIT licensed

Realistic Flickering Neon Sign

A weathered gas-discharge sign where one tube stutters and drops out of power on an irregular timeline — the 'broken vintage bulb' realism devs hunt for, achieved with a hand-tuned multi-step @keyframes, no JS.

Published

Live Demo
Try it

The code

<div class="cnt-06">
  <div class="cnt-06__wall">
    <h2 class="cnt-06__sign">
      <span class="cnt-06__steady">BAR</span>
      <span class="cnt-06__flick">OPEN</span>
    </h2>
  </div>
</div>
.cnt-06,
.cnt-06 *,
.cnt-06 *::before,
.cnt-06 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cnt-06 ::selection {
  background: oklch(0.78 0.2 25);
  color: #fff;
}

.cnt-06 {
  --accent: oklch(0.78 0.21 25);
  font-family: 'Segoe UI',system-ui,sans-serif;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
  background: radial-gradient(90% 90% at 50% 40%,#171012,#080506);
}

.cnt-06__wall {
  position: relative;
  padding: 56px 60px;
  border-radius: 8px;
  background: repeating-linear-gradient(115deg,#0f0b0c 0 22px,#120d0e 22px 44px);
  box-shadow: inset 0 0 120px rgba(0,0,0,.7);
}

.cnt-06__sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: clamp(48px,11vw,104px);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  color: #fff;
}

.cnt-06__steady {
  color: var(--accent);
  text-shadow: 0 0 5px #fff,0 0 12px var(--accent),0 0 28px var(--accent),0 0 60px var(--accent);
}

.cnt-06__flick {
  color: var(--accent);
  animation: cnt-06-flicker 5.5s infinite;
}

@keyframes cnt-06-flicker {
  0%,
    100% {
    opacity: 1;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent),0 0 74px var(--accent);
  }

  2% {
    opacity: .25;
    text-shadow: 0 0 3px color-mix(in oklch,var(--accent) 40%,transparent);
  }

  4% {
    opacity: 1;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent);
  }

  8% {
    opacity: .3;
    text-shadow: none;
  }

  9% {
    opacity: 1;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent);
  }

  40% {
    opacity: 1;
  }

  41% {
    opacity: .2;
    text-shadow: none;
  }

  42.5% {
    opacity: 1;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent);
  }

  70%,
    72% {
    opacity: 1;
  }

  71% {
    opacity: .35;
    text-shadow: 0 0 4px color-mix(in oklch,var(--accent) 50%,transparent);
  }

  88% {
    opacity: 1;
  }

  89% {
    opacity: .28;
    text-shadow: none;
  }

  90% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cnt-06__flick {
    animation: none;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent),0 0 74px var(--accent);
  }
}
/* No JavaScript — an intentionally irregular @keyframes fakes a failing tube. */
Paste this into ChatGPT, Claude, Cursor, or any coding assistant. The block below is pre-framed with everything the AI needs to integrate this demo into your project — markup, styles, scoping notes, and the source URL. Hit Copy and paste straight into your chat.
Here's a working CSS Neon Text Effect from CodeFronts. Use it as-is or adapt to your framework. All classes are scoped under a unique prefix so the code won't collide with your existing styles. MIT licensed.
Demo: Realistic Flickering Neon Sign
Source: https://codefronts.com/motion/css-neon-text-effect/realistic-flickering-neon-sign/

A weathered gas-discharge sign where one tube stutters and drops out of power on an irregular timeline — the 'broken vintage bulb' realism devs hunt for, achieved with a hand-tuned multi-step @keyframes, no JS.
## HTML
```html
<div class="cnt-06">
  <div class="cnt-06__wall">
    <h2 class="cnt-06__sign">
      <span class="cnt-06__steady">BAR</span>
      <span class="cnt-06__flick">OPEN</span>
    </h2>
  </div>
</div>
```
## CSS
```css
.cnt-06,
.cnt-06 *,
.cnt-06 *::before,
.cnt-06 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cnt-06 ::selection {
  background: oklch(0.78 0.2 25);
  color: #fff;
}

.cnt-06 {
  --accent: oklch(0.78 0.21 25);
  font-family: 'Segoe UI',system-ui,sans-serif;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
  background: radial-gradient(90% 90% at 50% 40%,#171012,#080506);
}

.cnt-06__wall {
  position: relative;
  padding: 56px 60px;
  border-radius: 8px;
  background: repeating-linear-gradient(115deg,#0f0b0c 0 22px,#120d0e 22px 44px);
  box-shadow: inset 0 0 120px rgba(0,0,0,.7);
}

.cnt-06__sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: clamp(48px,11vw,104px);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  color: #fff;
}

.cnt-06__steady {
  color: var(--accent);
  text-shadow: 0 0 5px #fff,0 0 12px var(--accent),0 0 28px var(--accent),0 0 60px var(--accent);
}

.cnt-06__flick {
  color: var(--accent);
  animation: cnt-06-flicker 5.5s infinite;
}

@keyframes cnt-06-flicker {
  0%,
    100% {
    opacity: 1;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent),0 0 74px var(--accent);
  }

  2% {
    opacity: .25;
    text-shadow: 0 0 3px color-mix(in oklch,var(--accent) 40%,transparent);
  }

  4% {
    opacity: 1;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent);
  }

  8% {
    opacity: .3;
    text-shadow: none;
  }

  9% {
    opacity: 1;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent);
  }

  40% {
    opacity: 1;
  }

  41% {
    opacity: .2;
    text-shadow: none;
  }

  42.5% {
    opacity: 1;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent);
  }

  70%,
    72% {
    opacity: 1;
  }

  71% {
    opacity: .35;
    text-shadow: 0 0 4px color-mix(in oklch,var(--accent) 50%,transparent);
  }

  88% {
    opacity: 1;
  }

  89% {
    opacity: .28;
    text-shadow: none;
  }

  90% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cnt-06__flick {
    animation: none;
    text-shadow: 0 0 5px #fff,0 0 14px var(--accent),0 0 34px var(--accent),0 0 74px var(--accent);
  }
}
```

## JavaScript
```js
/* No JavaScript — an intentionally irregular @keyframes fakes a failing tube. */
```

How this works

Realism comes from an irregular keyframe timeline: the flicker frames are placed at uneven percentages (2%, 8%, 9%, 41%…) with abrupt steps(1)-like jumps between full glow and a dim, low-shadow 'starved' state, so the eye never detects a loop. One target word (OPEN's 'E') carries a harsher stutter than the rest.

The lit state stacks white-core + coloured-bloom text-shadow layers; the dim state collapses to a faint residual glow to mimic a tube that hasn't fully struck. A faint reflection on the wall behind is a blurred, low-opacity duplicate.

Make it yours

  • Author your own flicker fingerprint by moving the keyframe percentages — clustered frames = a violent stutter, sparse = an occasional dropout.
  • Retint the tube with --accent; the dim/starved colour is derived with color-mix().
  • Make more letters unstable by giving them their own delayed copy of the flicker animation.
  • Remove the ::after wall reflection for a floating-sign look.

Gotchas — read before shipping

  • Regular, even flicker reads as 'CSS demo'; the whole effect depends on uneven timing — resist tidying the percentages.
  • Heavy flicker can be uncomfortable — the reduced-motion block pins the sign fully lit.
  • Keep at least one always-on word so the sign stays legible while another letter stutters.

Browser support

ChromeSafariFirefoxEdge
111+16.2+113+111+

Floor set by oklch(), color-mix() as this demo is written. The core technique itself goes back further — Chrome 80+.

Only text-shadow + @keyframes; color-mix for the dim tint needs Chrome 111+/Safari 16.2+ (older engines fall back to the accent).

Techniques used in this demo

Search CodeFronts

Loading…