Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/site_assets/jellyfin/aquamarine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/site_assets/jellyfin/dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/site_assets/jellyfin/dracula.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/site_assets/jellyfin/hotline.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/site_assets/jellyfin/hotpink.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/site_assets/jellyfin/maroon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/site_assets/jellyfin/nord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/site_assets/jellyfin/organizr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/site_assets/jellyfin/overseerr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/site_assets/jellyfin/plex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/site_assets/jellyfin/space-gray.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 24 additions & 7 deletions docs/themes/jellyfin.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,42 @@ Custom [{{ page.title.split()[0] }}](https://github.com/jellyfin/jellyfin) CSS

## 🛠️ Installation

### Setup
Choose one method below. Use subfiltering if you want the dashboard
themed too.

Go to `Dashboard` -> `General` and scroll down to `Branding`
### Built-in Custom CSS

In the custom CSS input field add:
These screenshots show Jellyfin 12.0.

Open **Dashboard > Branding** and add this to **Custom CSS code**, replacing
`<THEME>` with a [theme option](/theme-options/). Save your changes.

```css
@import url("https://theme-park.dev/css/base/jellyfin/<THEME>.css");
```

and hit save.

i.e.
For example, Nord:

```css
@import url("https://theme-park.dev/css/base/jellyfin/nord.css");
```

<img src="/site_assets/{{ page.title.split()[0].lower() }}/example.png"></img>
### Subfiltering, including the dashboard

Jellyfin 12 does not load its Custom CSS setting in the admin dashboard.
To theme those pages too, use [subfiltering](/setup/#subfiltering) instead of
the built-in method. Remove any theme.park import from **Custom CSS code**
and save before switching.

Follow the setup guide for your reverse proxy and inject this stylesheet into
the web client HTML, replacing `<THEME>` with your selected theme option:

```text
https://theme-park.dev/css/base/jellyfin/<THEME>.css
```

Keep injection out of API, media, and WebSocket responses. Subfiltering themes
both regular pages and the dashboard without a second import in Jellyfin.

{% set addons = extra.addons %}
{% set title = page.title.split()[0].lower() %}
Expand Down
Loading