Colour Changing Text Code

Code for a rainbow colour changing text on your profile, replace where i put "add your own text here" with what ever u want to be coloured xx



<div class="animated_rainbow_2">add your own text here</div>

<style>
.animated_rainbow_2 {
font-size: 30px;
font-family: Arial Black, Gadget, sans-serif;
    -webkit-animation: animatedBackground_b 5s linear infinite alternate;
}

@keyframes animatedBackground_b{
0% {color: #ff8b00}
10% {color: #e8ff00}
20% {color: #5dff00}
30% {color: #00ff2e}
40% {color: #00ffb9}
50% {color: #00b9ff}
60% {color: #002eff}
70% {color: #5d00ff}
80% {color: #e800ff}
90% {color: #ff008b}
100% {color: #ff0000}
}
</style>


4 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

Katie

Katie's profile picture

I've literally been trying forever to make a code like this work so thank you


Report Comment