React JSCSSBootstrap 42026-02-05

Text with Glowing Effect

The glowing effect is made up of two colors. The effect size is growing proportionately by the font size.

Vestibulum fames cras per sagittis
CSS
.glow {
  font-size: 2rem;
  font-family: Zapfino;
  color: white;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 0.25rem white,0 0 0.5rem white,0 0 0.75rem DarkKhaki,0 0 1rem DarkKhaki,0 0 1.25rem DarkKhaki,0 0 1.5rem DarkKhaki,0 0 1.75rem DarkKhaki;
  }
  to {
    text-shadow: 0 0 0.5rem white,0 0 0.75rem DeepPink,0 0 1rem DeepPink,0 0 1.25rem DeepPink,0 0 1.5rem DeepPink,0 0 1.75rem DeepPink,0 0 2rem DeepPink;
  }
}