Neon Glow Text

Emissive neon-style text with adjustable glow intensity.

JavaScript (plain)

const neon = new THREE.Mesh(
  new THREE.BoxGeometry(2.5, 0.6, 0.2),
  new THREE.MeshStandardMaterial({ color: 0x111111, emissive: 0x00ffff, emissiveIntensity: 2 })
)
scene.add(neon)