Skip to Content
Mux Docs: Home

Choose a theme for Mux Player

Learn how to configure a new Mux Player theme

Mux Player is built on top of Media Chrome that comes with simple but powerful theming capabilities. It allows you to fully control the video player UI layout and style but keeps the complexity of media state management out of the way.

Mux themes

The minimal and microvideo themes require one extra import, then set the theme attribute and you're ready to go!

Minimal theme

This theme pares down the Mux Player experience to the bare bones controls viewers need, ideal for those that want a simpler player experience.

Here's an example of a React app using the Minimal theme.

import MuxPlayer from "@mux/mux-player-react";
import "@mux/mux-player/themes/minimal";

export default function App() {
  return (
    <>
      <MuxPlayer
        theme="minimal"
        playbackId="r4rOE02cc95tbe3I00302nlrHfT023Q3IedFJW029w018KxZA"
      />
    </>
  );
}

Microvideo theme

This theme optimizes for shorter content that doesn't need the robust playback controls that longer content typically requires.

Here's an example of a HTML page using the Microvideo theme.

<script
  type="module"
  src="https://cdn.jsdelivr.net/npm/@mux/mux-player/themes/microvideo.js/+esm"
></script>
<script
  type="module"
  src="https://cdn.jsdelivr.net/npm/@mux/mux-player"
></script>
<mux-player
  theme="microvideo"
  playback-id="r4rOE02cc95tbe3I00302nlrHfT023Q3IedFJW029w018KxZA"
></mux-player>

Classic theme

This theme is the classic 1.x version of Mux Player. Here's an example of a HTML page using the Classic theme.

import MuxPlayer from "@mux/mux-player-react";
import "@mux/mux-player/themes/classic";

export default function App() {
  return (
    <>
      <MuxPlayer
        theme="classic"
        playbackId="r4rOE02cc95tbe3I00302nlrHfT023Q3IedFJW029w018KxZA"
      />
    </>
  );
}

Styling

You can use the same styling methods like explained in customize look and feel.

Note that the CSS variables, CSS parts and styling guidelines are relevant to themes that ship from @mux/mux-player/themes. Any other Media Chrome themes created by you or a third party will not necessarily share the same CSS variables and parts.

Unlike the Mux Player default theme, these themes come with some buttons disabled by default. However these can still be enabled by setting some CSS vars.

  • Seek backward button: --seek-backward-button: block;
  • Seek forward button: --seek-forward-button: block;
  • PiP (Picture-in-Picture) button: --pip-button: block

Media Chrome themes

Mux Player uses Media Chrome themes to layout and style the UI of the video player. Please read the themes documentation to learn how to create a theme.

There are two ways to consume a Media Chrome theme in Mux player.

Via an inline <template id="mytheme">

See the example on Codesandbox

Via a custom element <media-theme-mytheme>

See the example on (Codesandbox)

Was this page helpful?