Skip to content

Instantly share code, notes, and snippets.

@theuntitled
Created June 9, 2017 12:51
Show Gist options
  • Save theuntitled/c36e1d9cfdc46502bba9cbb694c43adf to your computer and use it in GitHub Desktop.
Save theuntitled/c36e1d9cfdc46502bba9cbb694c43adf to your computer and use it in GitHub Desktop.
Rainbow text effect for your text
.easteregg {
animation: rainbow 1s infinite linear;
-moz-animation: rainbow 1s infinite linear;
-webkit-animation: rainbow 1s infinite linear;
-o-animation: rainbow 1s infinite linear;
-webkit-transition: color;
-moz-transition: color;
-o-transition: color;
transition: color
}
@keyframes rainbow {
0% {
color: #ff0000
}
14% {
color: #ff00ff
}
29% {
color: #0000ff
}
42% {
color: #00ffff
}
57% {
color: #00ff00
}
82% {
color: #ffff00
}
100% {
color: #ff0000
}
}
@-moz-keyframes rainbow {
0% {
color: #ff0000
}
14% {
color: #ff00ff
}
29% {
color: #0000ff
}
42% {
color: #00ffff
}
57% {
color: #00ff00
}
82% {
color: #ffff00
}
100% {
color: #ff0000
}
}
@-webkit-keyframes rainbow {
0% {
color: #ff0000
}
14% {
color: #ff00ff
}
29% {
color: #0000ff
}
42% {
color: #00ffff
}
57% {
color: #00ff00
}
82% {
color: #ffff00
}
100% {
color: #ff0000
}
}
@-o-keyframes rainbow {
0% {
color: #ff0000
}
14% {
color: #ff00ff
}
29% {
color: #0000ff
}
42% {
color: #00ffff
}
57% {
color: #00ff00
}
82% {
color: #ffff00
}
100% {
color: #ff0000
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment