Makes all text on page shimmer
/* ==UserStyle==
@name Shimmer All Text
@namespace greasyfork.org
@version 1.0
@description Makes all text on page shimmer
@license MIT
==/UserStyle== */
* {
background: linear-gradient(90deg, red, orange, yellow, green, blue, purple);
background-size: 400%;
-webkit-background-clip: text;
color: transparent !important;
animation: shine 6s linear infinite;
}
@keyframes shine {
to { background-position: 400% 0; }
}