Template:Toronto/css/test-stylesheet

.test {

   animation-name: color_change;
   animation-duration: 3s;
   animation-iteration-count: infinite;
   animation-direction: alternate;

}

@keyframes color_change {

   from {
       color: red;
   }
   to {
       color: blue;
   }

}