Background effect player color

Hello,

How to do the same background effect as this instance?
Example: [8-Bit Cover] Route 201 (Day) | Pokémon Diamond/Pearl/Platinum - PeerTube.TV

The background color changes according to the video thumbnail.

I can’t find any plugins that do this.

thank you

Hi,

It’s from this theme: peertube-theme-dark-evolution - npm

The CSS code that seems to be responsible for this feature:

.vjs-has-started .vjs-poster {
  animation-name: fadeIn, pulse !important;
  animation-duration: 4s, 8s;
  animation-timing-function: linear, linear;
  animation-iteration-count: 1, infinite;
  filter: blur(100px) !important;
  display: block !important;
  z-index: 0 !important;
}

Thank you @Chocobozzz :slight_smile: