/* ==UserStyle==
@name           Shimmer All Text
@namespace      greasyfork.org
@version        1.0
@description    Makes all text on page shimmer
@license        MIT
@downloadURL https://update.greasyfork.org/scripts/563195/Shimmer%20All%20Text.user.css
@updateURL https://update.greasyfork.org/scripts/563195/Shimmer%20All%20Text.meta.css
==/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; }
}