From bd0d1cc34dc5db10a9f018f259ef187b61dda0fb Mon Sep 17 00:00:00 2001
From: lscambo13 <32175188+lscambo13@users.noreply.github.com>
Date: Sun, 19 Jan 2025 19:56:56 +0530
Subject: [PATCH] Update Add-Ons.md
---
Add-Ons.md | 104 +++++++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 97 insertions(+), 7 deletions(-)
diff --git a/Add-Ons.md b/Add-Ons.md
index 2e429cd..fe83020 100644
--- a/Add-Ons.md
+++ b/Add-Ons.md
@@ -5,12 +5,91 @@ This is a Jellyfin add-on that allows you to customise My Media cover arts. This
-### 🖼️ Preview
+### 🖼️ Presets
- Click here to reveal
-
-
+ This is how the covers look without this add-on.
+
+
+
+
+
+
+ This is how they look with this add-on, by default.
+
+
+
+```
+@import url("https://cdn.jsdelivr.net/gh/lscambo13/ElegantFin@main/Theme/assets/add-ons/custom-media-covers-nightly-min.css");
+```
+
+
+
+
+ You can also change these covers.
+
+
+
+
+
+
+ You can achieve a minimal design too.
+
+
+
+```
+@import url("https://cdn.jsdelivr.net/gh/lscambo13/ElegantFin@main/Theme/assets/add-ons/custom-media-covers-nightly-min.css");
+
+:root{
+ --colorOverlayMoviesCover: transparent;
+ --colorOverlayTvshowsCover: transparent;
+ --colorOverlayLivetvCover: transparent;
+ --colorOverlayPlaylistsCover: transparent;
+ --colorOverlayBoxsetsCover: transparent;
+ --colorOverlayMusicCover: transparent;
+ --colorOverlayHomevideosCover: transparent;
+ --colorOverlayBooksCover: transparent;
+ --colorOverlayFoldersCover: transparent;
+ --urlMoviesCover: transparent;
+ --urlTvshowsCover: transparent;
+ --urlLivetvCover: transparent;
+ --urlPlaylistsCover: transparent;
+ --urlBoxsetsCover: transparent;
+ --urlMusicCover: transparent;
+ --urlHomevideosCover: transparent;
+ --urlBooksCover: transparent;
+ --urlFoldersCover: transparent;
+}
+```
+
+
+
+
+
+```
+@import url("https://cdn.jsdelivr.net/gh/lscambo13/ElegantFin@main/Theme/assets/add-ons/custom-media-covers-nightly-min.css");
+
+:root{
+ --colorOverlayMoviesCover: transparent;
+ --colorOverlayTvshowsCover: transparent;
+ --colorOverlayLivetvCover: transparent;
+ --colorOverlayPlaylistsCover: transparent;
+ --colorOverlayBoxsetsCover: transparent;
+ --colorOverlayMusicCover: transparent;
+ --colorOverlayHomevideosCover: transparent;
+ --colorOverlayBooksCover: transparent;
+ --colorOverlayFoldersCover: transparent;
+ --urlMoviesCover: var(--cardBackgroundGradient);
+ --urlTvshowsCover: var(--cardBackgroundGradient);
+ --urlLivetvCover: var(--cardBackgroundGradient);
+ --urlPlaylistsCover: var(--cardBackgroundGradient);
+ --urlBoxsetsCover: var(--cardBackgroundGradient);
+ --urlMusicCover: var(--cardBackgroundGradient);
+ --urlHomevideosCover: var(--cardBackgroundGradient);
+ --urlBooksCover: var(--cardBackgroundGradient);
+ --urlFoldersCover: var(--cardBackgroundGradient);
+}
+```
@@ -26,16 +105,23 @@ This is a Jellyfin add-on that allows you to customise My Media cover arts. This
-### ⚙️ How to modify this add-on?
+### ⚙️ How to configure this add-on?
+- Remember, you do not need to configure anything if you're happy with the default set of images.
+
+
+
+
+ Click here to reveal.
+
- To configure your theme to use the custom images, you'll need to input a URL pointing to an image in variables starting with '--url' and an overlay color in variables starting with '--color'.
- The ideal Jellyfin cover sizes are `960px x 540px`, and the colors should be in rgb format i.e. `rbg(128, 128, 128)`.
- Below are all the configurable variables, but you should remove the entries you do not intend to modify:
-
-
+
```
+
:root{
@@ -63,6 +149,10 @@ This is a Jellyfin add-on that allows you to customise My Media cover arts. This
}
```
+
+
+
+
### 🆗 Read this example:
Suppose you want to modify the Live TV cover art. You'll have to modify the variables named `--colorOverlayLivetvCover` and `--urlLivetvCover`, so that your final configuration will look something like this: