1. Gradient shimmer
One bright band sliding through clipped text — a glint, not a rainbow.
Ship it with confidence
View CSS
.shimmer-text {
background: linear-gradient(110deg,
#F1F5F9 38%, #38BDF8 50%, #F1F5F9 62%);
background-size: 220% 100%;
background-clip: text;
color: transparent;
animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
from { background-position: 120% 0; }
to { background-position: -120% 0; }
}