Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prayag17/JellySkin
Vibrante/minimal Jellyfin CSS using custom Icons and more!!, created for Jellyfin web :film_strip:, can be used by just one line.
https://github.com/prayag17/JellySkin
custom-css jellyfin jellyfincss
Last synced: 5 days ago
JSON representation
Vibrante/minimal Jellyfin CSS using custom Icons and more!!, created for Jellyfin web :film_strip:, can be used by just one line.
- Host: GitHub
- URL: https://github.com/prayag17/JellySkin
- Owner: prayag17
- License: gpl-3.0
- Created: 2020-09-10T11:57:41.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T08:05:23.000Z (4 months ago)
- Last Synced: 2024-10-30T05:27:00.658Z (6 days ago)
- Topics: custom-css, jellyfin, jellyfincss
- Language: SCSS
- Homepage: http://prayag17.github.io/JellySkin
- Size: 97.4 MB
- Stars: 797
- Watchers: 10
- Forks: 82
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- starred - prayag17/JellySkin - Vibrante/minimal Jellyfin CSS using custom Icons and more!!, created for Jellyfin web :film_strip:, can be used by just one line. (SCSS)
README
# JellySkin
### over engineered css theme for Jellyfin
![npm (tag)](https://img.shields.io/npm/v/jellyskin/latest?style=for-the-badge) ![jsDelivr hits (npm)](https://img.shields.io/jsdelivr/npm/hm/jellyskin?label=Downloads&style=for-the-badge) ![GitHub](https://img.shields.io/github/license/prayag17/JellySkin?style=for-the-badge)\
![GitHub Repo stars](https://img.shields.io/github/stars/prayag17/JellySkin?style=social)# âšī¸ Usage
> [!IMPORTANT]
> JellySkin requires Chrome (105 and above), Edge (105 and above), Safari (15.4 and above), Firefox (121 and above), Opera (91 and above) and any other Browser supporting Baseline 23 css features to work properly- To use the JellySkin theme copy the line below into "Dashboard -> General -> Custom CSS" and click save, it will apply immediately server-wide to all users on top of any theme they may be using. To remove the theme, clear the "Custom CSS" field and then click save. NOTE: Theme may not work when using Nginx Reverse Proxy. Scroll down below to learn how to fix this.
```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/main.css");
```- To enable Logos add this to custom css:
```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/logo.css");
```
- You can also use Jellyfin-Skin-Manager-Plugin :
> [!CAUTION]
> Jellyfin Skin Manager is not being actively maintained and might not load latest css themes# 𧊠Addons
- ## Improve Performance
- ### Remove BackdropFilter
This removes the frosted glass like effect from every place and improves performance
```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/addons/improvePerformance/removeBackdropFilter.css");
```- ### Remove scroll fade
This removes the gradient faded bar at top of a scrollable container
```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/addons/improvePerformance/removeFadingScroll.css");
```- ## Horizontal My Media
Brings back the horizontal section for My Media
```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/addons/horizontalMyMedia.css");
```- ## Using/Changing default gradient accent
If you want want to change the default jellyfin gradient accent to some other preset gradient use:
> **Note** : Remember to put gradient css files below the main.css file import. Also this won't affect the login mesh background's colors.
>
- ### Mauve```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/addons/gradients/mauve.css");
```Example:\
![image](https://user-images.githubusercontent.com/55829513/200132732-d188392a-5642-47f7-bb62-f204a85d992e.png)- ### NightSky
```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/addons/gradients/nightSky.css");
```Example:\
![image](https://user-images.githubusercontent.com/55829513/200132808-5b02c8e9-29c1-4a6b-ad3c-514588cf717a.png)- ### Sea
```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/addons/gradients/sea.css");
```Example:\
![image](https://user-images.githubusercontent.com/55829513/200132840-984deaf3-c228-4092-be8f-44c325d57782.png)- ### Custom
If you need to add your own gradient use:
```css
:root {
--accent1-light: YOUR ACCENT COLOR 1(LIGHTER SHADE);
--accent1-dark: YOUR ACCENT COLOR 1(DARKER SHADE);
--accent1-light-opacity1: YOUR ACCENT COLOR 1(WITH OPACITY 0.4);
--accent2-light: YOUR ACCENT COLOR 2(LIGHTER SHADE);
--accent2-dark: YOUR ACCENT COLOR 2(DARKER SHADE);
}
```
- ## Add blur to video theme backgroundsAdds the blur effect present on static backgrounds to video theme backgrounds as well.
*Caution*: This is a performance intensive filter and may cause considerable slowdowns on some devices.
If you are adding this to the serverwide Custom CSS, users can remove the effect using the *Remove Backdrop Filter* addon above.```css
@import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/addons/videoThemeBlur.css");
```# đģ Screenshots
- ### Login Page
![Login_Page](https://github.com/prayag17/JellySkin/assets/55829513/9ca0d0c2-9ada-4e41-93b9-e4281be20d1d)
- ### Home Screen
![Home page](https://github.com/prayag17/JellySkin/assets/55829513/075d844b-ca43-4f61-b54a-cb75110e77ed)- ### Library
![Library](https://github.com/prayag17/JellySkin/assets/55829513/c3ef8e48-df17-44f0-9708-e10dfa448237)
- ### Title Screen
![Title page](https://github.com/prayag17/JellySkin/assets/55829513/270bb0bb-a755-449d-a57d-9da4e31d6082)- ### Episodes List
![Episodes](https://github.com/prayag17/JellySkin/assets/55829513/eaded068-5930-47fd-b5d0-03cf89e1da44)# â Common Problem Fixes
- ### Unable to see blured background in Firefox
Deaktiviert From version 70: this feature is behind the `layout.css.backdrop-filter.enabled` preference (needs to be set to true) and the `gfx.webrender.all` preference (needs to be set to true).
To change preferences in Firefox, visit about:config
- ### Logos are not visible even with `logo.css`- Get Fanart Plugin, Dashboard -> Plugin -> Catalog
- Enable Fanart as a metadata provider for your libraries in the library settings, Dashboard -> Library -> Click on 3 dots on your Library -> Manage Library -> Scroll to find Metadata provider and enable Fanart in all of them.
- Rescan your drive and also enable `Replace Metadata` and scan- ### Background not visible
- Go to Settings -> Display -> and enable `Backdrops` option
- ### Fix for Nginx Reverse Proxy
When using the Nginx Reverse proxy config from the Jellyfin docs the theme will probably not work by default. (If you are using the subpath config, you can ignore all this.)
This config includes an CSP (Content Security Policy) with headers that don't allow for loading in external content that are not defined there.
In the nginx config you should add the URLs of all the CSS files you've imported through the "Custom CSS" box.
this:```shell
add_header Content-Security-Policy "default-src https: data: blob: http://image.tmdb.org; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://www.gstatic.com/cv/js/sender/v1/cast_sender.js https://www.youtube.com blob:; worker-src 'self' blob:; connect-src 'self'; object-src 'none'; frame-ancestors 'self'";
```becomes (with only adding the default style):
```shell
add_header Content-Security-Policy "default-src https: data: blob: http://image.tmdb.org; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/main.css; script-src 'self' 'unsafe-inline' https://www.gstatic.com/cv/js/sender/v1/cast_sender.js https://www.youtube.com blob:; worker-src 'self' blob:; connect-src 'self'; object-src 'none'; frame-ancestors 'self'";
```If you don't do this the theme will simply not load (reverts back to default theme) and the browser console will spit out an error. Even if you paste in all the CSS, the font will still not load since it is loaded from a disallowed external source.
- ### How to report a Bug or request a Feature?
- Go to
- Click on `New Issue` button
- Select the appropriate template- ### How to contribute
- Fork this repository.
- Add your patch/feature
- Create a pull request and thats it