Split before and after comparison of Youtube Music playlist. In the before version, currently playing song is highlighted in slightly lighter tone of grey which doesn't pop up. The after image shows a bright green highlight that's easier to spot.

I wrote some custom CSS to make the currently playing song in Youtube Music easier to find from the playlist view:

ytmusic-responsive-list-item-renderer[play-button-state="playing"] {
    background-color: #d0f1cf;
}
 
ytmusic-responsive-list-item-renderer[play-button-state="playing"] * {
    color: black !important;
}

I use Stylus Firefox browser extension to apply custom styles.