Gelée de mûre
is a dark/purple theme for Jellyfin.
Everyone will be able to use this theme. Users can opt out in they're settings (display > Disable server-provided custom CSS code
)
Copy the following code, in jellyfin > settings > general > Custom css code
@import url("
https://raw.githubusercontent.com/GolDNenex/gelee-de-mure/main/theme.css");
If you want to stay fully self-hosted, you will need to host yourself the css (with nginx for example), its highly recommanded, even more if you want to customise assets (see Customization).
With Stylus (Limited):
Only you will be able to see the theme. Ideal if the owner of the jellyfin server don't want to install this theme or already use another.
After installing, multiple part of the theme can be edited. Modification need to be placed under the @import
we made before.
You can modify multiple variable in the same :root { ... }
Designation | Variable name | Default |
---|---|---|
Accent color | --accent-color | #916de4 |
Accent color darker | --accent-color-darker | #53417b |
Corner radius | --corner-radius | 12px |
Logo | --logo-img | embedded* |
Logo banner | --banner-img | embedded* |
Login background image | --login-bg-img | embedded* |
(* is included as base64 inside the css)
:root {
--accent-color: #916de4;
}
:root {
--accent-color-darker: #53417b;
}
:root {
--corner-radius: 12px;
}
:root {
--logo-img: url("https://your_domain_name.nice/logo.png") !important;
}
:root {
--banner-img: url("https://your_domain_name.nice/logo-banner.png") !important;
}
Jellyfin generate a splashscreen.png
file in the data
folder that can be use for this.
:root {
--login-bg-img: url("https://your_domain_name.nice/splashscreen.png") !important;
}
Compatible with Jellyfin >= 10.9.0
.
If you are running a older version, use the previous version BUT note that this version is concidered archived
.