To install the theme, put the contents of theme.css in Custom CSS code and set a hue:
@import url("https://glcdn.githack.com/smaniottonicola/jellyfin-custom-accent/-/raw/master/theme.css"); :root { --custom-hue: <value>; }
If I want to take that theme.css
file and just save it to my server itself instead of having Jellyfin fetch it each time the CSS loads, what would I put in the @import
rule? I placed the file in my Jellyfin Docker container's config
folder and used @import "/config/theme.css”;
, but that does not seem to change the CSS at all.