You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

816 lines
23 KiB

6 years ago
<h1 align="center">
5 years ago
<img src="https://i.imgur.com/OkX6Zup.png">
6 years ago
</h1>
<p align="center">
5 years ago
A collection of themes/skins for use in conjunction with <a href="https://github.com/causefx/Organizr/" target="_blank">Organizr</a> or standalone.
6 years ago
<p align="center">
5 years ago
<a href="https://www.buymeacoffee.com/oY5Nk8GHK" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png" alt="Buy Me A Coffee" style="height: auto !important;width: auto !important;" > </a><a href="https://discord.gg/HM5uUKU" rel="noopener"><img class="alignnone" title="theme.park!" src="https://img.shields.io/badge/chat-Discord-blue.svg?style=for-the-badge&logo=discord" alt="" height="37" /></a>
</a><a href="https://technicalramblings.com/" rel="noopener"><img class="alignnone" title="technicalramblings!" src="https://img.shields.io/badge/blog-technicalramblings.com-informational.svg?style=for-the-badge" alt="" height="37" /></a>
6 years ago
<br />
<br />
5 years ago
<img src="/Screenshots/orgarr/sonarrv3.png" alt="Screen Shot 1" width="49.15%" />
<img src="/Screenshots/graforg/grafana-1.png" alt="Screen Shot 2" width="49.15%" />
<img src="/Screenshots/plexorg/plexorg.png" alt="Screen Shot 3" width="49.15%" />
<img src="/Screenshots/plpp/plpp.png" alt="Screen Shot 4" width="49.15%" />
6 years ago
</p>
6 years ago
5 years ago
# Setup
All apps have 5 themes to choose from.
5 years ago
`https://gilbn.github.io/theme.park/CSS/themes/<APP_NAME>/<THEME_NAME>.css`
```
aquamarine.css
hotline.css
dark.css
plex.css
5 years ago
space-gray.css
5 years ago
```
5 years ago
Example: `https://gilbn.github.io/theme.park/CSS/themes/sonarr/dark.css`
6 years ago
5 years ago
As most of these apps doesn't have support for custom CSS you can get around that by using [subfilter](http://nginx.org/en/docs/http/ngx_http_sub_module.html) in Nginx or a browser addon called Stylus.
5 years ago
## Subfilter method
5 years ago
### Nginx
6 years ago
Add this to your reverse proxy:
6 years ago
```nginx
6 years ago
proxy_set_header Accept-Encoding "";
sub_filter
'</head>'
5 years ago
'<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/<APP_NAME>/THEME.css">
6 years ago
</head>';
sub_filter_once on;
```
5 years ago
Where `APP_NAME` is the app you want to theme and `THEME.css` is the name of the theme. e.g. `aquamarine.css`
6 years ago
5 years ago
#### Example:
```nginx
5 years ago
location /sonarr {
proxy_pass http://localhost:8989/sonarr;
include /config/nginx/proxy.conf;
6 years ago
proxy_set_header Accept-Encoding "";
sub_filter
'</head>'
5 years ago
'<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/sonarr/plex.css">
6 years ago
</head>';
sub_filter_once on;
}
```
5 years ago
### Apache (Untested)
```apache
AddOutputFilterByType SUBSTITUTE text/html
5 years ago
Substitute 's|</head> '<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/<APP_NAME>/THEME.css">
</head>';|'
```
5 years ago
#### Example:
```apache
<Location /sonarr>
ProxyPass http://localhost:8989/sonarr
ProxyPassReverse http://localhost:8989/sonarr
AddOutputFilterByType SUBSTITUTE text/html
5 years ago
Substitute 's|</head> '<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/sonarr/plex.css">
</head>';|'
</Location>
```
5 years ago
## Stylus method
Stylus is a browser extention that can inject custom css to the webpage of your choosing.
5 years ago
Add this in the style page:
```css
@import "https://gilbn.github.io/theme.park/CSS/themes/<APP_NAME>/THEME.css";
```
Example: `@import "https://gilbn.github.io/theme.park/CSS/themes/sonarr/dark.css";`
Link to Chrome extention: https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en
Link to Firefox extention: https://addons.mozilla.org/en-US/firefox/addon/styl-us/
5 years ago
## [Feature requests](https://feathub.com/gilbN/theme.park)
[![Feature Requests](https://feathub.com/gilbN/theme.park?format=svg)](http://feathub.com/gilbN/theme.park)
5 years ago
## Current themes in the repo:
5 years ago
<ul>
<li><a href="#sonarr-v2v3---radarr---lidarr---bazarr-themes">Sonarr</a></li>
<li><a href="#sonarr-v2v3---radarr---lidarr---bazarr-themes">Radarr</a></li>
<li><a href="d#sonarr-v2v3---radarr---lidarr---bazarr-themes">Lidarr</a></li>
<li><a href="#sonarr-v2v3---radarr---lidarr---bazarr-themes">Bazarr</a></li>
<li><a href="#plex-themes">Plex</a></li>
<li><a href="#ombi-themes">Ombi</a></li>
<li><a href="#tautulli-themes">Tautulli</a></li>
<li><a href="#organizr-hotline-and-marine-theme">Organizr</a></li>
<li><a href="#grafana-themes">Grafana</a></li>
<li><a href="#sabnzbd-themes">Sabnzbd</a></li>
<li><a href="#nzbget-themes">Nzbget</a></li>
<li><a href="#nzbhydra2-themes">NZBHydra2</a></li>
<li><a href="#deluge-themes">Deluge</a></li>
<li><a href="#qbittorrent-themes">qBittorrent</a></li>
<li><a href="#guacamole-themes">Guacamole</a></li>
<li><a href="#rutorrent-themes">ruTorrent</a></li>
<li><a href="#netdata-themes">Netdata</a></li>
<li><a href="#jackett-themes">Jackett</a></li>
<li><a href="#html5-speedtest-themes">html5speedtest</a></li>
<li><a href="#filebrowser-themes">Filebrowser</a></li>
<li><a href="#monitorr-themes">Monitorr</a></li>
<li><a href="#logarr-alpha-version-themes">Logarr</a></li>
<li><a href="#php-library-presenter-themes">PLPP</a></li>
<li><a href="#synclounge-themes">Synclounge</a></li>
<li><a href="#the-lounge-themes">The Lounge</a></li>
5 years ago
</ul>
6 years ago
***
5 years ago
# Organizr Hotline and Marine theme
Custom [Organizr](https://github.com/causefx/Organizr/) themes.
<p align="center">
5 years ago
<img src="/Screenshots/organizr-themes/organizr-hotline-theme2.png" alt="Screen Shot 1" width="49.15%" />
<img src="/Screenshots/organizr-themes/organizr-marine-theme2.png" alt="Screen Shot 2" width="49.15%" />
<img src="/Screenshots/organizr-themes/organizr-hotline-theme-login.png" alt="Screen Shot 3" width="49.15%" />
<img src="/Screenshots/organizr-themes/organizr-marine-theme-login.png" alt="Screen Shot 4" width="49.15%" />
5 years ago
</p>
5 years ago
Aquamarine are the colors from https://heimdall.site that I fell in love with.
All themes are highly customizable in regards of which radial gradient color combination you want.
5 years ago
5 years ago
#### Installation: Themes can be found in the "Theme Marketplace" in Organizr.
5 years ago
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/organizr-themes/organizr-hotline-theme.png"></img>
<img src="/Screenshots/organizr-themes/organizr-hotline-theme-login.png"></img>
<img src="/Screenshots/organizr-themes/organizr-marine-theme.png"></img>
<img src="/Screenshots/organizr-themes/organizr-marine-theme-login.png"></img>
5 years ago
</p>
</details>
5 years ago
***
# Ombi Themes
Custom [Ombi](https://github.com/tidusjar/Ombi) CSS.
5 years ago
**Install by adding `@import "https://gilbn.github.io/theme.park/CSS/themes/ombi/THEME_NAME.css";` in custom css**
```
https://gilbn.github.io/theme.park/CSS/themes/ombi/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
5 years ago
![](/Screenshots/ombi/ombi.gif)
5 years ago
***
5 years ago
# Jackett Themes
5 years ago
Custom [Jackett](https://github.com/Jackett/Jackett) CSS.
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/jackett/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
5 years ago
![](/Screenshots/jackett/jackett.gif)
5 years ago
***
5 years ago
# PHP Library Presenter Themes
6 years ago
Custom [PLPP](https://github.com/Tensai75/plpp) CSS.
6 years ago
5 years ago
![](/Screenshots/plpp/plpp.gif)
6 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/plpp/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
6 years ago
***
5 years ago
# Guacamole Themes
6 years ago
Custom [Guacamole](https://guacamole.apache.org/) CSS.
6 years ago
5 years ago
![](/Screenshots/guacorg/guacamole.gif)
6 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/guacamole/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
6 years ago
6 years ago
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/guacorg/guac-1.png"></img>
<img src="/Screenshots/guacorg/guac-2.png"></img>
6 years ago
</p>
</details>
6 years ago
***
5 years ago
# Plex Themes
6 years ago
Custom [Plex](https://plex.tv) CSS.
6 years ago
5 years ago
![](/Screenshots/plexorg/plex.gif)
6 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/plex/XXX.css
aquamarine.css
hotline.css
dark.css
space-gray.css
5 years ago
```
6 years ago
***
6 years ago
5 years ago
# Sonarr v2/v3 - Radarr - Lidarr - Bazarr Themes
6 years ago
Custom [Sonarr V2 and V3](https://github.com/Sonarr/Sonarr)/[Radarr](https://github.com/Radarr/Radarr)/[Lidarr](https://github.com/Lidarr/Lidarr)/[Bazarr](https://github.com/morpheus65535/bazarr) CSS.
6 years ago
5 years ago
![](https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/orgarr/orgarr.gif)
6 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/sonarr/XXX.css
https://gilbn.github.io/theme.park/CSS/themes/radarr/XXX.css
https://gilbn.github.io/theme.park/CSS/themes/lidarr/XXX.css
https://gilbn.github.io/theme.park/CSS/themes/bazarr/XXX.css
aquamarine.css
hotline.css
plex.css
dark.css
space-gray.css
5 years ago
```
6 years ago
5 years ago
Thank you iFelix18 for doing all the hard work on v2! :)
6 years ago
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/orgarr/sonarrv3-2.png"></img>
<img src="/Screenshots/orgarr/sonarrv3-3.png"></img>
<img src="/Screenshots/orgarr/1.jpg"></img>
<img src="/Screenshots/orgarr/2.jpg"></img>
<img src="/Screenshots/orgarr/3.jpg"></img>
6 years ago
6 years ago
</p>
</details>
6 years ago
***
5 years ago
# NZBGet Themes
6 years ago
Custom CSS for [Nzbget](https://github.com/nzbget/nzbget)
6 years ago
5 years ago
![](/Screenshots/nzbget/nzbget.gif)
6 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/nzbget/XXX.css
aquamarine.css
hotline.css
plex.css
dark.css
space-gray.css
5 years ago
```
6 years ago
6 years ago
Thank you [ydkmlt84](https://github.com/ydkmlt84) for making the job easier :)
6 years ago
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/nzbget/nzbget1.jpg"></img>
<img src="/Screenshots/nzbget/nzbget2.jpg"></img>
<img src="/Screenshots/nzbget/nzbget-split-2.png"></img>
<img src="/Screenshots/nzbget/nzbget3.png"></img>
6 years ago
</p>
</details>
6 years ago
***
6 years ago
5 years ago
# SABnzbd Themes
Custom CSS for [SABnzbd](https://github.com/sabnzbd/sabnzbd)
5 years ago
![](/Screenshots/sabnzbd/sabnzbd.gif)
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/sabnzbd/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
5 years ago
**Note: SABnzbd theme must be set to `Glitter`**
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/sabnzbd/sabnzbd_dark_2.png"></img>
<img src="/Screenshots/sabnzbd/sabnzbd_dark_3.png"></img>
</p>
</details>
***
5 years ago
# Grafana Themes
6 years ago
Custom [Grafana](https://github.com/grafana/grafana) CSS for [Organizr](https://github.com/causefx/Organizr) homepage integration and consistent UI.
6 years ago
5 years ago
![](/Screenshots/graforg/grafana.gif)
6 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/grafana/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
organizr-dashboard.css
5 years ago
```
5 years ago
5 years ago
#### For panel integration on the Organizr homepage you can use `organizr-dashboard.css` if you use the Plex theme in Organizr. The theme is an "internal" theme that is meant to be used in an Organizr iframe as the background is set to transparent.
NOTE: When viewing Grafana in Organizr iframe using `organizr-dashboard.css` it will follow the Organizr theme. When viewing it outside of Organizr iframe the background will be white ect. If you don't want this you can create two reverse proxies. One for grafana organizr homepage integration and one for the regular grafana theme.
5 years ago
6 years ago
### Check out https://technicalramblings.com/blog/spice-up-your-homepage-part-ii/
6 years ago
6 years ago
![](https://technicalramblings.com/wp-content/uploads/2019/01/orgdash.jpg)
6 years ago
### **TIP:**
Click the `kiosk` button and use that link if you don't want to show the top bar and side bar inside Organizr! There are two modes, one where the side menu and variables ect disappear and one where just the panels are visible.
5 years ago
![](https://i.imgur.com/pVSKUzi.png)
Check out my Varken dashboard here: https://grafana.com/dashboards/9558
6 years ago
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/graforg/1.jpg"></img>
<img src="/Screenshots/graforg/2.jpg"></img>
6 years ago
</p>
</details>
### Custom HTML for Organizr Homepage
6 years ago
6 years ago
5 years ago
![](/Screenshots/graforg/3.jpg)
6 years ago
6 years ago
<details><summary>Expand</summary>
6 years ago
6 years ago
Thank you [Fma965](https://gist.github.com/Fma965) for the base [code](https://gist.github.com/Fma965/d30ac1fa5695304a7d6dcdc748220027)
6 years ago
Change the ***Panel name*** to what you want and the ***src*** to the panel URL.
```css
<h5><span>Panel name</span></h5>
<div class="overflowhider"><embed id="grafanadwidget1" src='https://graforg.domain.com/panel-embed-link'/>**
```
The URL can be found by clicking **share** on the panel you want to add.
6 years ago
5 years ago
<img src="/Screenshots/graforg/4.png"></img>
6 years ago
If you dont want the ***Panel name*** text, just remove the `<h5><span>` line entirely.
```css
<style>
.flex {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
background: transparent;
margin-top:10px;
box-shadow: none !important;
}
.flex-child {
flex: 1 1 1 1;
padding: 1px 1px 1px 1px;
}
#flex-grafanadwidget1 {
min-width: 25%;
}
#flex-grafanadwidget2 {
min-width: 25%;
}
#flex-grafanadwidget3 {
min-width: 25%;
}
#flex-grafanadwidget4 {
min-width: 25%;
}
@media only screen and (max-width: 1374px) {
#flex-grafanadwidget1, #flex-grafanadwidget2, #flex-grafanadwidget3, #flex-grafanadwidget4 {
min-width: 50%;
}
}
@media only screen and (max-width: 640px) {
#flex-grafanadwidget1, #flex-grafanadwidget2, #flex-grafanadwidget3, #flex-grafanadwidget4 {
min-width: 100%;
}
@media only screen and (max-width: 400px) {
.flex-child>h5 {
margin-left: 15px;
}
#announcementRow {
background-color:transparent !important;
}
.flex-child>h5 {
text-transform: uppercase;
font-weight: 600 !important;
font-size: 15px;important;
color: #eee;
}
.overflowhider {
height: 100%;
overflow: hidden;
}
#grafanadwidget1 {
position: relative;
height: calc(250px);
width: calc(100%);
}
#grafanadwidget2 {
position: relative;
height:calc(250px);
width:calc(100%);
}
#grafanadwidget3 {
position: relative;
height: calc(250px);
width: calc(100%);
}
#grafanadwidget4 {
position: relative;
height:calc(250px);
width:calc(100%);
}
</style>
<div id="announcementRow" class="row">
<div class="content-box flex">
<div class="flex-child" id="flex-grafanadwidget1">
<h5><span>Panel name</span></h5>
<div class="overflowhider"><embed id="grafanadwidget1" src='https://graforg.domain.com/panel-embed-link'/></div>
</div>
<div class="flex-child box-shadow" id="flex-grafanadwidget2">
<h5><span>Panel name</span></h5>
<div class="overflowhider"><embed id="grafanadwidget2" src='https://graforg.domain.com/panel-embed-link' /></div>
</div>
<div class="flex-child" id="flex-grafanadwidget3">
<h5><span>Panel name</span></h5>
<div class="overflowhider"><embed id="grafanadwidget3" src='https://graforg.domain.com/panel-embed-link'/></div>
</div>
<div class="flex-child box-shadow" id="flex-grafanadwidget4">
<h5><span>Panel name</span></h5>
<div class="overflowhider"><embed id="grafanadwidget4" src='https://graforg.domain.com/panel-embed-link' /></div>
</div>
</div>
</div>
```
</details>
***
5 years ago
# Netdata Themes
6 years ago
Custom [Netdata](https://github.com/firehol/netdata) CSS.
6 years ago
5 years ago
![](/Screenshots/netorg/netdata.gif)
6 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/netdata/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
organizr-dashboard.css
```
6 years ago
#### The `organizr-dashboard.css` theme is an "internal" theme that is meant to be used in an Organizr iframe as the background is set to transparent. [The theme can be used to integrate Netadata on the Organizr Homepage](https://technicalramblings.com/blog/spice-up-your-homepage/)
6 years ago
6 years ago
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/netorg/1.jpg"></img>
<img src="/Screenshots/netorg/2.jpg"></img>
6 years ago
</p>
</details>
### Custom HTML for Organizr Homepage
***
5 years ago
# Monitorr Themes
6 years ago
Custom [Monitorr](https://github.com/Monitorr/Monitorr) CSS for [Organizr](https://github.com/causefx/Organizr) homepage integration.
6 years ago
5 years ago
![](/Screenshots/monitorg/monitorr.gif)
6 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/monitorr/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
organizr-dashboard.css
```
#### The `organizr-dashboard.css` theme will mess with your Monitorr base theme. And it will hide the settings button. Go to /monitorr/settings.php for settings. It is created purely for use with "minimum" version of the index.php `https://domain.com/monitorr/index.min.php` for Organizr homepage integration.
6 years ago
**NOTE:**
5 years ago
When viewing monitorr in Organizr iframe using `organizr-dashboard.css` it will follow the Organizr theme. When viewing it outside of Organizr iframe the background will be white ect. If you don't want this you can create two reverse proxies. One for monitorr organizr homepage integration and one for the monitorr dark/plex theme. And use subfilter on both instead of adding `@import "https://gilbn.github.io/theme.park/CSS/themes/organizr-dashboard.css";` in the monitorr custom css.
6 years ago
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/monitorg/2.jpg"></img>
<img src="/Screenshots/monitorg/3.jpg"></img>
<img src="/Screenshots/monitorg/4.jpg"></img>
6 years ago
</p>
</details>
6 years ago
Add this in the Monitorr custom css box:
6 years ago
```css
5 years ago
@import "https://gilbn.github.io/theme.park/CSS/themes/monitorr/THEME_NAME.css";
6 years ago
```
And add this in custom HTML in Organizr:
```css
6 years ago
<div id="announcementRow" class="row"><h4 class="pull-left"><span>Monitorr</span></h4><hr class="hidden-xs"></div>
6 years ago
<div style="overflow:hidden; height:260px; width:calc(100% + 39px); -webkit-overflow-scrolling: touch; overflow-y: scroll;">
6 years ago
<iframe class="iframe" frameborder="0" src="https://monitorr.domain.com/index.min.php"></iframe>
6 years ago
</div>
```
6 years ago
***
# Logarr alpha version Themes
5 years ago
Custom [Logarr](https://github.com/Monitorr/logarr/tree/alpha) CSS.
5 years ago
5 years ago
![](/Screenshots/logarr/logarr.gif)
5 years ago
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/logarr/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
5 years ago
5 years ago
***
5 years ago
5 years ago
# Filebrowser Themes
Custom [Filebrowser](https://github.com/filebrowser/filebrowser) CSS.
5 years ago
![](/Screenshots/filebrowser/filebrowser.gif)
Based on https://github.com/Archmonger/Blackberry-Themes/blob/master/Themes/Blackberry-Flat/bbf_filebrowser.css
**https://github.com/Archmonger/Blackberry-Themes**
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/filebrowser/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/filebrowser/filebrowser2.png"></img>
</p>
</details>
***
5 years ago
# HTML5 Speedtest Themes
Custom [HTML5 Speedtest](https://github.com/adolfintel/speedtest) CSS.
5 years ago
![](/Screenshots/html5speedtest/speedtest.gif)
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/html5speedtest/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/html5speedtest/html5speedtest_dark.png"></img>
<img src="/Screenshots/html5speedtest/html5speedtest_plex.png"></img>
</p>
</details>
6 years ago
***
5 years ago
# Tautulli Themes
Custom [Tautulli](https://github.com/Tautulli/Tautulli) CSS.
5 years ago
5 years ago
![](/Screenshots/tautulli/tautulli.gif)
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/tautulli/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
5 years ago
```
5 years ago
***
# Deluge Themes
Custom [Deluge](https://github.com/deluge-torrent/deluge) CSS.
5 years ago
5 years ago
![](/Screenshots/deluge/deluge.gif)
5 years ago
5 years ago
Based on https://github.com/halianelf/deluge-dark @halianelf Thanks for making the job easier!
5 years ago
```
https://gilbn.github.io/theme.park/CSS/themes/deluge/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
```
***
# qBittorrent Themes
Custom [qBitorrent](https://github.com/qbittorrent/qBittorrent) CSS.
5 years ago
![](/Screenshots/qbittorrent/qbittorrent.gif)
NOTE: You need to change or remove the CSP header.
Add this in your reverse proxy:
```nginx
proxy_hide_header "x-webkit-csp";
proxy_hide_header "content-security-policy";
```
```
https://gilbn.github.io/theme.park/CSS/themes/qbittorrent/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
```
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/qbittorrent/qbit1.png"></img>
<img src="/Screenshots/qbittorrent/qbit2.png"></img>
<img src="/Screenshots/qbittorrent/qbit3.png"></img>
<img src="/Screenshots/qbittorrent/qbit4.png"></img>
<img src="/Screenshots/qbittorrent/qbit5.png"></img>
</p>
</details>
5 years ago
***
# ruTorrent Themes
Custom [ruTorrent](https://github.com/Novik/ruTorrent) CSS.
5 years ago
![](/Screenshots/rutorrent/rutorrent.gif)
5 years ago
**Theme needs to be `Standard` in settings!**
```
https://gilbn.github.io/theme.park/CSS/themes/rutorrent/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
```
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/rutorrent/rutorrent1.png"></img>
<img src="/Screenshots/rutorrent/rutorrent2.png"></img>
<img src="/Screenshots/rutorrent/rutorrent3.png"></img>
<img src="/Screenshots/rutorrent/rutorrent4.png"></img>
<img src="/Screenshots/rutorrent/rutorrent5.png"></img>
</p>
</details>
5 years ago
***
# NZBhydra2 Themes
Custom [NZBHydra](https://github.com/theotherp/nzbhydra2) CSS.
5 years ago
![](/Screenshots/nzbhydra2/nzbhydra2.gif)
```
https://gilbn.github.io/theme.park/CSS/themes/nzbhydra2/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
```
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/nzbhydra2/nzbhydra1.png"></img>
<img src="/Screenshots/nzbhydra2/nzbhydra2.png"></img>
<img src="/Screenshots/nzbhydra2/nzbhydra3.png"></img>
<img src="/Screenshots/nzbhydra2/nzbhydra4.png"></img>
<img src="/Screenshots/nzbhydra2/nzbhydra5.png"></img>
</p>
</details>
***
# Synclounge Themes
Custom [Synclounge](https://github.com/samcm/SyncLounge) CSS.
5 years ago
![](/Screenshots/synclounge/synclounge.gif)
```
https://gilbn.github.io/theme.park/CSS/themes/synclounge/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
```
### Screenshots
<details><summary>Expand</summary>
<p>
5 years ago
<img src="/Screenshots/synclounge/synclounge1.png"></img>
<img src="/Screenshots/synclounge/synclounge2.png"></img>
<img src="/Screenshots/synclounge/synclounge3.png"></img>
<img src="/Screenshots/synclounge/synclounge4.png"></img>
<img src="/Screenshots/synclounge/synclounge5.png"></img>
</p>
</details>
***
# The Lounge Themes
Custom [The Lounge](https://github.com/thelounge/thelounge) CSS.
![](/Screenshots/thelounge/thelounge.gif)
```
https://gilbn.github.io/theme.park/CSS/themes/thelounge/XXX.css
aquamarine.css
hotline.css
dark.css
plex.css
space-gray.css
```
### Screenshots
<details><summary>Expand</summary>
<p>
<img src="/Screenshots/thelounge/thelounge1.png"></img>
<img src="/Screenshots/thelounge/thelounge2.png"></img>
<img src="/Screenshots/thelounge/thelounge3.png"></img>
<img src="/Screenshots/thelounge/thelounge4.png"></img>
<img src="/Screenshots/thelounge/thelounge5.png"></img>
</p>
</details>
6 years ago
### Honourable mentions:
[leram84/layer.Cake](https://github.com/leram84/layer.Cake/)
[rg9400/Cloud-Tautulli-Theme](https://github.com/rg9400/Cloud-Tautulli-Theme)
[Burry/organizr-v2-plex-theme](https://github.com/Burry/organizr-v2-plex-theme)
[iFelix18/Darkerr](https://github.com/iFelix18/Darkerr)
[ydkmlt84/DarkerNZBget](https://github.com/ydkmlt84/DarkerNZBget)
[Archmonger/Blackberry-Themes](https://github.com/Archmonger/Blackberry-Themes)