Skip to content

Instantly share code, notes, and snippets.

@TheMartes
Forked from kocisov/index.css
Last active October 20, 2017 20:29
Show Gist options
  • Save TheMartes/d9adb266d6b7af61537e1306f9e5ec6a to your computer and use it in GitHub Desktop.
Save TheMartes/d9adb266d6b7af61537e1306f9e5ec6a to your computer and use it in GitHub Desktop.
VSCode rainbowicons
@keyframes cc {
0% {
color: #fff;
}
10% {
color: #c92a2a;
}
20% {
color: #f76707;
}
30% {
color: #a61e4d;
}
40% {
color: #862e9c;
}
50% {
color: #364fc7;
}
60% {
color: #1862ab;
}
70% {
color: #0b7285;
}
80% {
color: #2b8a3e;
}
90% {
color: #fab005;
}
100% {
color: #fff;
}
}
.label-name::before {
animation: cc 5s infinite linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment