.logo {
color: #f305eb;
text-shadow: 0 0 10px #f757f1;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
function blinker() {
$('.logo').fadeOut(200);
$('.logo').fadeIn(200);
}
setInterval(blinker, 5000);
</script>
<h1 class="logo">LOGO!</h1>
So I'm looking for a little help. The function above fades out/in my text for 0.2+0.2 seconds every 5 seconds. This way it makes my text disappear, but what I'm really looking for, is to change the color from #f305eb to #000 for the same timeframe. So the color will be #f305eb for 5s the for 0.2s+0.2s the color changes to black then back to #f305eb