Advertisement
kyujouz

pulsing text

Apr 6th, 2022
554
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <style>
  2. #text01 {
  3. animation: rainbow 1s infinite;
  4. }
  5. @keyframes rainbow {
  6. 0% {
  7. color: #736CED;
  8. }
  9. 25% {
  10. color: #9F9FED;
  11. }
  12. 50% {
  13. color: #D4C1EC;
  14. }
  15. 75% {
  16. color: #F2DFD7;
  17. }
  18. 100% {
  19. color: #FEF9FF;
  20. }
  21. }
  22. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement