Created
July 10, 2026 21:09
-
-
Save thomasbnt/89f483933949fd485497c86bdd24c94d to your computer and use it in GitHub Desktop.
Rainbow bar on the top of Jellyfin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 🏳️🌈 Pride Month — June */ | |
| .skinHeader::before { | |
| content: ""; | |
| display: block; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 3px; | |
| background: linear-gradient( | |
| 90deg, | |
| #e40303 0%, | |
| #ff8c00 17%, | |
| #ffed00 33%, | |
| #008026 50%, | |
| #004dff 67%, | |
| #750787 83%, | |
| #750787 100% | |
| ); | |
| z-index: 999; | |
| pointer-events: none; | |
| } |
thomasbnt
commented
Jul 10, 2026
Author
- Go to your Jellyfin instance at /web/#/dashboard/branding
- Add the CSS code into custom CSS
- Save
- Reload your page
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment