Skip to content

Arcade Marquee

A copy-paste neon & glow component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.

Neon & GlowHTMLCSSany framework
PLAY

Copy into your project

HTML
<!-- Arcade Marquee — chasing bulbs along the top & bottom edge -->
<div class="nuda-ne2-marquee">
  <span class="nuda-ne2-marquee__bulbs nuda-ne2-marquee__bulbs--top" aria-hidden="true"></span>
  <span class="nuda-ne2-marquee__bulbs nuda-ne2-marquee__bulbs--bottom" aria-hidden="true"></span>
  <span class="nuda-ne2-marquee__text">PLAY</span>
</div>
CSS
.nuda-ne2-marquee {
  position: relative;
  width: 220px;
  height: 90px;
  background: #0c0c10;
  border: 2px solid #3a3a42;
  border-radius: 10px;
  overflow: hidden;
}

.nuda-ne2-marquee__bulbs {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background-image: radial-gradient(circle,#e4ff54 2px,transparent 2.5px);
  background-size: 16px 8px;
  background-repeat: repeat-x;
  filter: drop-shadow(0 0 3px #e4ff54);
  animation: _nuda-ne2marquee .9s linear infinite;
}

.nuda-ne2-marquee__bulbs--top {
  top: 6px;
}

.nuda-ne2-marquee__bulbs--bottom {
  bottom: 6px;
}

.nuda-ne2-marquee__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-sans-serif,system-ui,sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #fbffe0;
  text-shadow: 0 0 4px #fff,0 0 12px #e4ff54,0 0 28px rgba(228,255,84,.7);
}

@keyframes _nuda-ne2marquee {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 16px 0;
  }
}

@media (prefers-reduced-motion:reduce) {
  .nuda-ne2-marquee__bulbs {
    animation: none;
  }
}

How to use Arcade Marquee

Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.

Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.

More neon & glow components

← Browse all NudaUI components