Viewing 1 replies (of 1 total)
  • Plugin Author Brady Vercher

    (@bradyvercher)

    Hi LAmarky,

    You can customize the player colors using a little CSS. If you’re not using a custom theme or child theme, I’d recommend the Simple Custom CSS plugin or the Custom CSS module in Jetpack.

    Here’s a snippet with a few colors you can customize:

    body .cue-tracks {
    	background-color: #222;
    }
    
    body .cue-tracks,
    body .cue-track {
    	border-color: #333;
    }
    
    body .cue-track {
    	color: #bbb;
    }
    
    body .cue-track .cue-track-details .cue-track-title {
    	color: #fff;
    }
    
    body .cue-track.is-current,
    body .cue-track:hover {
    	background-color: #454545;
    }

    Cheers,
    Brady

Viewing 1 replies (of 1 total)
  • The topic ‘Optional colors available?’ is closed to new replies.