Skip to content

Instantly share code, notes, and snippets.

@nrdmn
Created February 22, 2019 20:44
Show Gist options
  • Save nrdmn/5f7041e24f7175753f48f704c673109a to your computer and use it in GitHub Desktop.
Save nrdmn/5f7041e24f7175753f48f704c673109a to your computer and use it in GitHub Desktop.
* {
animation-name: colors;
animation-duration: 4s;
animation-iteration-count: infinite;
}
@keyframes colors {
0% { text-shadow: 0 0 1pt hsl(0, 100%, 50%); }
17% { text-shadow: 0 0 1pt hsl(60, 100%, 50%); }
33% { text-shadow: 0 0 1pt hsl(120, 100%, 50%); }
50% { text-shadow: 0 0 1pt hsl(180, 100%, 50%); }
66% { text-shadow: 0 0 1pt hsl(240, 100%, 50%); }
83% { text-shadow: 0 0 1pt hsl(300, 100%, 50%); }
100% { text-shadow: 0 0 1pt hsl(360, 100%, 50%); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment