the workspace icons flash between the two ascent colors /waybar/style.css

}

#workspaces button:hover {
        color: #CCCCCC;
        border-radius: 15px;
        animation: urgentFlash 1.5s infinite alternate;
}

@keyframes urgentFlash {
    0% {
        color: #ff00ff;
    }
    100% {
        color: #00ced1;
    }
} ```