This repository contains custom themes for my homelab apps, such as Jellyfin and Uptime Kuma. Each app can have multiple themes, and all themes are managed and built together for easy development and deployment.
Here are the currently supported apps and their themes, there may be more in the future:
Settings > Dashboard > General > Custom CSSPaste this CSS code into the Custom CSS input:
@import url('https://themes.ccrsxx.com/public/jellyfin/violetfin/style.css');
Optional: Violetfin makes heavy use of Backdrops with moving animations. Enable it in Settings > Display > Backdrops. For enabling backdrops for all users, see this tutorial.
Edit Status Page (you must be logged in).Paste this HTML code into the Footer Text input:
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
Paste this CSS code into the Custom CSS input:
@import url('https://themes.ccrsxx.com/public/uptime-kuma/violetkuma/style.css');
Themes are organized by app and theme name:
src/apps/{app}/{theme}/index.scss
public/{app}/{theme}/style.css
For example:
src/apps/jellyfin/violetfin/index.scss → public/jellyfin/violetfin/style.csssrc/apps/uptime-kuma/violetkuma/index.scss → public/uptime-kuma/violetkuma/style.cssClone the repository:
git clone https://github.com/ccrsxx/themes.git
cd themes
Install dependencies:
npm install
Run the dev watcher:
npm run dev
Paste the following into your app’s custom CSS input to use the local build:
For Jellyfin Violetfin:
@import url('http://localhost:3000/public/jellyfin/violetfin/style.css');
For Uptime Kuma Violetkuma:
@import url('http://localhost:3000/public/uptime-kuma/violetkuma/style.css');
For Uptime Kuma, use the same HTML snippet for the Footer Text input as in the installation section.
src/apps/{app}/{theme} and add an index.scss.public/{app}/{theme}/style.css.