diff --git a/.github/workflows/auto-build.yml b/.github/workflows/auto-build.yml
index 0248ae30bb..efdb9adbea 100644
--- a/.github/workflows/auto-build.yml
+++ b/.github/workflows/auto-build.yml
@@ -78,7 +78,7 @@ jobs:
docker push ghcr.io/gilbn/theme.park:$directory
done
- name: manually build
- if: ${{ github.event.inputs.app != 'build-all-the-mods' }}
+ if: ${{ github.event.inputs.app && github.event.inputs.app != 'build-all-the-mods' }}
run: |
docker build docker-mods/${{ github.event.inputs.app }} --tag ghcr.io/gilbn/theme.park:${{ github.event.inputs.app }}${{ github.event.inputs.append-tag }}
docker push ghcr.io/gilbn/theme.park:${{ github.event.inputs.app }}${{ github.event.inputs.append-tag }}
@@ -124,7 +124,7 @@ jobs:
docker push gilbn/theme.park:$directory
done
- name: manually build
- if: ${{ github.event.inputs.app != 'build-all-the-mods' }}
+ if: ${{ github.event.inputs.app && github.event.inputs.app != 'build-all-the-mods' }}
run: |
docker build docker-mods/${{ github.event.inputs.app }} --tag gilbn/theme.park:${{ github.event.inputs.app }}${{ github.event.inputs.append-tag }}
docker push gilbn/theme.park:${{ github.event.inputs.app }}${{ github.event.inputs.append-tag }}
diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml
index fdf4a01609..2fb8d37558 100644
--- a/.github/workflows/docker-build.yml
+++ b/.github/workflows/docker-build.yml
@@ -14,7 +14,7 @@ on:
- develop
- testing
tag:
- description: 'Add a tag'
+ description: 'Append a the tag with "-custom" e.g :develop-custom'
push:
branches:
- develop
@@ -29,68 +29,68 @@ jobs:
architecture: [linux-arm-v7,linux-arm64,linux-amd64]
steps:
- name: checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3.1.0
with:
fetch-depth: 0
- name: Prepare
id: prep
run: |
- ARCHITECTURE=${{ matrix.architecture }}
- echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
- echo ::set-output name=title::${GITHUB_REPOSITORY,,}:${{ github.ref_name }}
- echo ::set-output name=revision::${GITHUB_SHA}
- echo ::set-output name=source::${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY,,}/tree/${{ github.ref_name }}
- echo ::set-output name=vendor::${{ github.repository_owner }}
- echo ::set-output name=url::${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY,,}/blob/master/README.md
- echo ::set-output name=VERSION::${{ github.event.release.tag_name }}
- echo ::set-output name=platform::${ARCHITECTURE//-/\/}
- echo ::set-output name=cache::${GITHUB_REPOSITORY,,}:${{ github.ref_name }}-cache-${{ matrix.architecture }}
- echo ::set-output name=tag::${GITHUB_REPOSITORY,,}:${{ github.ref_name }}-${GITHUB_SHA:0:7}-${GITHUB_RUN_NUMBER}-${{ matrix.architecture }}
- echo ::set-output name=release::${{ github.event.release.target_commitish }}
+ echo "ARCHITECTURE=${{ matrix.architecture }}" >> $GITHUB_ENV
+ echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV
+ echo "title=${GITHUB_REPOSITORY,,}:${{ github.ref_name }}" >> $GITHUB_ENV
+ echo "revision=${GITHUB_SHA}" >> $GITHUB_ENV
+ echo "source=${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY,,}/tree/${{ github.ref_name }}" >> $GITHUB_ENV
+ echo "vendor=${{ github.repository_owner }}" >> $GITHUB_ENV
+ echo "url=${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY,,}/blob/master/README.md" >> $GITHUB_ENV
+ echo "VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
+ echo "platform=${ARCHITECTURE//-/\/}" >> $GITHUB_ENV
+ echo "cache=${GITHUB_REPOSITORY,,}:${{ github.ref_name }}-cache-${{ matrix.architecture }}${{ github.event.inputs.tag }}" >> $GITHUB_ENV
+ echo "tag=${GITHUB_REPOSITORY,,}:${{ github.ref_name }}-${GITHUB_SHA:0:7}-${GITHUB_RUN_NUMBER}-${{ matrix.architecture }}${{ github.event.inputs.tag }}" >> $GITHUB_ENV
+ echo "release=${{ github.event.release.target_commitish }}" >> $GITHUB_ENV
- name: Set up QEMU
- uses: docker/setup-qemu-action@v1
+ uses: docker/setup-qemu-action@v2.1.0
- name: Set up Docker Buildx
id: buildx
- uses: docker/setup-buildx-action@v1
+ uses: docker/setup-buildx-action@v2.2.1
- name: Login to GitHub Container Registry
- uses: docker/login-action@v1
+ uses: docker/login-action@v2.1.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_PAT }}
- name: Login to Docker Hub
- uses: docker/login-action@v1
+ uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DH_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: build&push
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v3.2.0
with:
push: ${{ github.event_name != 'pull_request' }}
- platforms: ${{ steps.prep.outputs.platform }}
+ platforms: ${{ env.platform }}
file: ./${{ matrix.architecture }}.Dockerfile
- cache-from: docker.io/${{ steps.prep.outputs.cache }}
- cache-to: docker.io/${{ steps.prep.outputs.cache }}
+ cache-from: docker.io/${{ env.cache }}
+ cache-to: docker.io/${{ env.cache }}
tags: |
- docker.io/${{ steps.prep.outputs.tag }}
- ghcr.io/${{ steps.prep.outputs.tag }}
+ docker.io/${{ env.tag }}
+ ghcr.io/${{ env.tag }}
labels: |
- org.opencontainers.image.created=${{ steps.prep.outputs.created }}
- org.opencontainers.image.title=${{ steps.prep.outputs.title }}
- org.opencontainers.image.revision=${{ steps.prep.outputs.revision }}
- org.opencontainers.image.source=${{ steps.prep.outputs.source }}
- org.opencontainers.image.vendor=${{ steps.prep.outputs.vendor }}
- org.opencontainers.image.url=${{ steps.prep.outputs.url }}
- org.opencontainers.image.version=${{ steps.prep.outputs.VERSION }}
+ org.opencontainers.image.created=${{ env.created }}
+ org.opencontainers.image.title=${{ env.title }}
+ org.opencontainers.image.revision=${{ env.revision }}
+ org.opencontainers.image.source=${{ env.source }}
+ org.opencontainers.image.vendor=${{ env.vendor }}
+ org.opencontainers.image.url=${{ env.url }}
+ org.opencontainers.image.version=${{ env.VERSION }}
build-args: |
- TP_RELEASE=${{ steps.prep.outputs.VERSION }}
- BUILD_DATE=${{ steps.date_time.outputs.created }}
- BUILD_ARCHITECTURE=${{ matrix.architecture }}
+ TP_RELEASE=${{ env.VERSION }}
+ BUILD_DATE=${{ env.created }}
+ BUILD_ARCHITECTURE=${{ env.ARCHITECTURE }}
publish:
runs-on: ubuntu-latest
@@ -100,11 +100,11 @@ jobs:
needs: [build-and-push-it-to-the-limit]
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3.1.0
- name: Login to DockerHub
if: matrix.registry == 'docker.io'
- uses: docker/login-action@v1
+ uses: docker/login-action@v2.1.0
with:
registry: docker.io
username: ${{ secrets.DH_USER }}
@@ -112,7 +112,7 @@ jobs:
- name: Login to GitHub Container Registry
if: matrix.registry == 'ghcr.io'
- uses: docker/login-action@v1
+ uses: docker/login-action@v2.1.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
@@ -123,16 +123,16 @@ jobs:
DOCKER_CLI_EXPERIMENTAL: enabled
run: |
IMAGE=${{ matrix.registry }}/${GITHUB_REPOSITORY,,}
- TAG=${{ github.ref_name }}
- SOURCE=${IMAGE}:${TAG}-${GITHUB_SHA:0:7}-${GITHUB_RUN_NUMBER}
- VERSION=${{ steps.prep.outputs.VERSION }}
- [[ -f linux-amd64.Dockerfile ]] && AMD64=${SOURCE}-linux-amd64
- [[ -f linux-arm64.Dockerfile ]] && ARM64=${SOURCE}-linux-arm64
- [[ -f linux-arm-v7.Dockerfile ]] && ARMV7=${SOURCE}-linux-arm-v7
+ TAG=${{ github.ref_name }}-${GITHUB_SHA:0:7}-${GITHUB_RUN_NUMBER}
+ SOURCE=${IMAGE}:${TAG}
+ [[ -f linux-amd64.Dockerfile ]] && AMD64=${SOURCE}-linux-amd64${{ github.event.inputs.tag }}
+ [[ -f linux-arm64.Dockerfile ]] && ARM64=${SOURCE}-linux-arm64${{ github.event.inputs.tag }}
+ [[ -f linux-arm-v7.Dockerfile ]] && ARMV7=${SOURCE}-linux-arm-v7${{ github.event.inputs.tag }}
+ docker manifest create ${IMAGE}:${TAG}${{ github.event.inputs.tag }} ${AMD64} ${ARM64} ${ARMV7}
+ docker manifest push ${IMAGE}:${TAG}${{ github.event.inputs.tag }}
+ TAG=${{ github.ref_name }}${{ github.event.inputs.tag }}
docker manifest create ${IMAGE}:${TAG} ${AMD64} ${ARM64} ${ARMV7}
docker manifest push ${IMAGE}:${TAG}
- docker manifest create ${IMAGE}:${TAG}-${GITHUB_SHA:0:7} ${AMD64} ${ARM64} ${ARMV7}
- docker manifest push ${IMAGE}:${TAG}-${GITHUB_SHA:0:7}
- name: Latest manifest
if: ${{ github.event.release.target_commitish == 'master' }}
env:
diff --git a/banners/tp_banner.png b/banners/tp_banner.png
index 02313cd530..bde70360f8 100644
Binary files a/banners/tp_banner.png and b/banners/tp_banner.png differ
diff --git a/css/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css b/css/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css
index 7b31e22548..c8338ec07d 100644
--- a/css/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css
+++ b/css/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css
@@ -1,8 +1,8 @@
- .mantine-Avatar-root[class*="bazarr-"] img {
+ .bazarr-Avatar-root[class*="bazarr-"] img {
display: none !important;
}
- .mantine-Avatar-root[class*="bazarr-"]:before {
+ .bazarr-Avatar-root[class*="bazarr-"]:before {
background-image: url("/css/addons/bazarr/bazarr-4k-logo/bazarr4k.png");
display: inline-block;
width: 32px;
@@ -14,6 +14,6 @@
-o-background-size: cover;
}
- #root>div>nav>div>div.mantine-Group-root.mantine-Group-child[class*="bazarr-"]>div>span:after {
+ #root>div>header>div>div.bazarr-Group-root[class*="bazarr-"]>div>span:after {
content: " 4K";
}
\ No newline at end of file
diff --git a/css/addons/bazarr/bazarr-4k-logo/bazarr4k.png b/css/addons/bazarr/bazarr-4k-logo/bazarr4k.png
index 7c6c7924cf..3e774d9f2e 100644
Binary files a/css/addons/bazarr/bazarr-4k-logo/bazarr4k.png and b/css/addons/bazarr/bazarr-4k-logo/bazarr4k.png differ
diff --git a/css/addons/bazarr/bazarr-darker/bazarr-darker.css b/css/addons/bazarr/bazarr-darker/bazarr-darker.css
index e4514d9870..d06c841424 100644
--- a/css/addons/bazarr/bazarr-darker/bazarr-darker.css
+++ b/css/addons/bazarr/bazarr-darker/bazarr-darker.css
@@ -37,19 +37,19 @@
}
/* HEADER */
-.mantine-Header-root[class*="bazarr-"] {
+.bazarr-Header-root[class*="bazarr-"] {
background-color: var(--header-color) !important;
border-bottom: 1px solid var(--transparency-light-15);
}
/* SIDE MENU */
-.mantine-Navbar-root[class*="bazarr-"] {
+.bazarr-Navbar-root[class*="bazarr-"] {
background-color: var(--side-menu-color) !important;
color: white !important;
}
-#root>div>div>main>div>div.mantine-Group-root[class*="bazarr-"],
-#root>div>div>main>div>div>div.mantine-Group-root[class*="bazarr-"],
-#root>div>div>main>form>div.mantine-Group-root[class*="bazarr-"] {
+#root>div>div>main>div>div.bazarr-Group-root[class*="bazarr-"],
+#root>div>div>main>div>div>div.bazarr-Group-root[class*="bazarr-"],
+#root>div>div>main>form>div.bazarr-Group-root[class*="bazarr-"] {
background: #262626 !important;
}
\ No newline at end of file
diff --git a/css/addons/lidarr/lidarr-alt-calendar/lidarr-alt-calendar.css b/css/addons/lidarr/lidarr-alt-calendar/lidarr-alt-calendar.css
new file mode 100644
index 0000000000..4789dc3531
--- /dev/null
+++ b/css/addons/lidarr/lidarr-alt-calendar/lidarr-alt-calendar.css
@@ -0,0 +1,19 @@
+[class*="CalendarEvent-downloaded-"] {
+ background: rgb(var(--calendar-downloaded) / .4) !important;
+}
+
+[class*="CalendarEvent-downloading-"] {
+ background: rgb(var(--calendar-downloading) / .4) !important;
+}
+
+[class*="CalendarEvent-unmonitored-"] {
+ background: rgb(var(--calendar-unmonitored) / .4) !important;
+}
+
+[class*="CalendarEvent-missing-"] {
+ background: rgb(var(--calendar-missing) / .4) !important;
+}
+
+[class*="CalendarEvent-unreleased-"] {
+ background: rgb(var(--calendar-unreleased) / .4) !important;
+}
\ No newline at end of file
diff --git a/css/addons/organizr/glass/example.jpg b/css/addons/organizr/glass/example.jpg
index f938bc5d23..aa3d3e5160 100644
Binary files a/css/addons/organizr/glass/example.jpg and b/css/addons/organizr/glass/example.jpg differ
diff --git a/css/addons/radarr/radarr-4k-logo/radarr-v3-mobile.png b/css/addons/radarr/radarr-4k-logo/radarr-v3-mobile.png
index 65dee23691..a187ee653f 100644
Binary files a/css/addons/radarr/radarr-4k-logo/radarr-v3-mobile.png and b/css/addons/radarr/radarr-4k-logo/radarr-v3-mobile.png differ
diff --git a/css/addons/radarr/radarr-4k-logo/radarr4k-v3.png b/css/addons/radarr/radarr-4k-logo/radarr4k-v3.png
index ee888e27d0..65f2b8525a 100644
Binary files a/css/addons/radarr/radarr-4k-logo/radarr4k-v3.png and b/css/addons/radarr/radarr-4k-logo/radarr4k-v3.png differ
diff --git a/css/addons/radarr/radarr-4k-logo/radarr4k.png b/css/addons/radarr/radarr-4k-logo/radarr4k.png
index 469c3675d1..ac86fcb455 100644
Binary files a/css/addons/radarr/radarr-4k-logo/radarr4k.png and b/css/addons/radarr/radarr-4k-logo/radarr4k.png differ
diff --git a/css/addons/radarr/radarr-alt-calendar/radarr-alt-calendar.css b/css/addons/radarr/radarr-alt-calendar/radarr-alt-calendar.css
new file mode 100644
index 0000000000..ee66372dca
--- /dev/null
+++ b/css/addons/radarr/radarr-alt-calendar/radarr-alt-calendar.css
@@ -0,0 +1,31 @@
+
+[class*="CalendarEvent-event-"] {
+ background: rgb(var(--calendar-unmonitored) / .4);
+}
+
+[class*="CalendarEvent-downloaded-"] {
+ background: rgb(var(--calendar-available) / .4) !important;
+}
+
+[class*="CalendarEvent-missing-"],
+[class*="CalendarEvent-missingMonitored"] {
+ background-color: rgb(var(--calendar-missing) / .4);
+}
+
+[class*="CalendarEvent-missingUnmonitored-"] {
+ background: rgb(var(--calendar-missing-unmonitored) / .4) !important;
+}
+
+[class*="CalendarEvent-unreleased-"],
+[class*="CalendarEvent-continuing-"] {
+ background: rgb(var(--calendar-unaired) / .4) !important;
+}
+
+[class*="CalendarEvent-unmonitored-"] {
+ background: rgb(var(--calendar-unmonitored) / .4) !important;
+}
+
+[class*="CalendarEvent-downloading-"],
+[class*="CalendarEvent-queue-"] {
+ background: rgb(var(--calendar-downloading) / .4) !important;
+}
\ No newline at end of file
diff --git a/css/addons/readarr/readarr-alt-calendar/readarr-alt-calendar.css b/css/addons/readarr/readarr-alt-calendar/readarr-alt-calendar.css
new file mode 100644
index 0000000000..3cdff79e43
--- /dev/null
+++ b/css/addons/readarr/readarr-alt-calendar/readarr-alt-calendar.css
@@ -0,0 +1,20 @@
+[class*="CalendarEvent-downloaded-"]:not([class*="AgendaEvent-"]) {
+ background: rgb(var(--calendar-downloaded) / .4) !important;
+}
+
+[class*="CalendarEvent-missing-"]:not([class*="AgendaEvent-"]) {
+ background: rgb(var(--calendar-missing) / .4) !important;
+}
+
+[class*="CalendarEvent-unreleased-"]:not([class*="AgendaEvent-"]) {
+ background: rgb(var(--calendar-unreleased) / .4) !important;
+}
+
+[class*="CalendarEvent-unmonitored-"]:not([class*="AgendaEvent-"]) {
+ background: rgb(var(--calendar-unmonitored) / .4) !important;
+}
+
+[class*="CalendarEvent-downloading-"]:not([class*="AgendaEvent-"]),
+[class*="CalendarEvent-queue-"]:not([class*="AgendaEvent-"]) {
+ background: rgb(var(--calendar-downloading) / .4) !important;
+}
\ No newline at end of file
diff --git a/css/addons/sonarr/sonarr-4k-logo/sonarr-4k.png b/css/addons/sonarr/sonarr-4k-logo/sonarr-4k.png
index a42e2fa59a..6046b6d4e3 100644
Binary files a/css/addons/sonarr/sonarr-4k-logo/sonarr-4k.png and b/css/addons/sonarr/sonarr-4k-logo/sonarr-4k.png differ
diff --git a/css/addons/sonarr/sonarr-4k-text-logo/sonarr-4k-text-logo.css b/css/addons/sonarr/sonarr-4k-text-logo/sonarr-4k-text-logo.css
new file mode 100644
index 0000000000..9dc5b9037a
--- /dev/null
+++ b/css/addons/sonarr/sonarr-4k-text-logo/sonarr-4k-text-logo.css
@@ -0,0 +1,55 @@
+@media (min-width: 752px) {
+ [class*="PageHeader-logo-"] {
+ display: none !important;
+ }
+ [class*="PageHeader-logoContainer-"]:before {
+ background-image: url("/css/addons/sonarr/sonarr-4k-text-logo/sonarr-4k-text.png");
+ display: inline-block;
+ margin-left: 15px;
+ width: 124px;
+ height: 40px;
+ content:"";
+ background-size: cover;
+ -webkit-background-size: cover;
+ -moz-background-size: cover;
+ -o-background-size: cover;
+ }
+}
+
+
+[class*="LoadingPage-logoFull-"] {
+ display: none !important;
+}
+
+[class*="LoadingPage-page-"]:before {
+ background-image: url("/css/addons/sonarr/sonarr-4k-text-logo/sonarr-4k-text.png");
+ display: inline-block;
+ width: 124px;
+ height: 40px;
+ content:"";
+ background-size: cover;
+ -webkit-background-size: cover;
+ -moz-background-size: cover;
+ -o-background-size: cover;
+ margin-top: 50px;
+ margin-right: auto;
+ margin-left: auto;
+
+}
+
+@media (max-width: 767px) {
+ [class*="PageHeader-logo-"] {
+ display: none !important;
+ }
+ [class*="PageHeader-logoContainer-"]:before {
+ background-image: url("/css/addons/sonarr/sonarr-4k-logo/sonarr-4k.png");
+ display: inline-block;
+ width: 32px;
+ height: 32px;
+ content:"";
+ background-size: cover;
+ -webkit-background-size: cover;
+ -moz-background-size: cover;
+ -o-background-size: cover;
+ }
+}
diff --git a/css/addons/sonarr/sonarr-4k-text-logo/sonarr-4k-text.png b/css/addons/sonarr/sonarr-4k-text-logo/sonarr-4k-text.png
new file mode 100644
index 0000000000..90caa9d60a
Binary files /dev/null and b/css/addons/sonarr/sonarr-4k-text-logo/sonarr-4k-text.png differ
diff --git a/css/addons/unraid/login-page/alien/logo/uscss_nostromo.jpg b/css/addons/unraid/login-page/alien/logo/uscss_nostromo.jpg
index 1276c6cab1..903b3dbf18 100644
Binary files a/css/addons/unraid/login-page/alien/logo/uscss_nostromo.jpg and b/css/addons/unraid/login-page/alien/logo/uscss_nostromo.jpg differ
diff --git a/css/addons/unraid/login-page/alien/logo/weyland-yutani-logo-by-synthetic-dreamer1.png b/css/addons/unraid/login-page/alien/logo/weyland-yutani-logo-by-synthetic-dreamer1.png
index 64690ca1fa..bbc2c556e4 100644
Binary files a/css/addons/unraid/login-page/alien/logo/weyland-yutani-logo-by-synthetic-dreamer1.png and b/css/addons/unraid/login-page/alien/logo/weyland-yutani-logo-by-synthetic-dreamer1.png differ
diff --git a/css/addons/unraid/login-page/alien/logo/wings.png b/css/addons/unraid/login-page/alien/logo/wings.png
index 1e395a981c..e1e76710b3 100644
Binary files a/css/addons/unraid/login-page/alien/logo/wings.png and b/css/addons/unraid/login-page/alien/logo/wings.png differ
diff --git a/css/addons/unraid/login-page/alien/logo/wings_green2.png b/css/addons/unraid/login-page/alien/logo/wings_green2.png
index eecdd1b2d6..f5b08f7e7b 100644
Binary files a/css/addons/unraid/login-page/alien/logo/wings_green2.png and b/css/addons/unraid/login-page/alien/logo/wings_green2.png differ
diff --git a/css/addons/unraid/login-page/alien/logo/wings_shadow.png b/css/addons/unraid/login-page/alien/logo/wings_shadow.png
index d1169c6356..0dfb81c1e7 100644
Binary files a/css/addons/unraid/login-page/alien/logo/wings_shadow.png and b/css/addons/unraid/login-page/alien/logo/wings_shadow.png differ
diff --git a/css/addons/unraid/login-page/alien/logo/wings_yellow.png b/css/addons/unraid/login-page/alien/logo/wings_yellow.png
index fbc2d77732..5175b60969 100644
Binary files a/css/addons/unraid/login-page/alien/logo/wings_yellow.png and b/css/addons/unraid/login-page/alien/logo/wings_yellow.png differ
diff --git a/css/addons/unraid/login-page/alien/wallpaper/hallway2.jpg b/css/addons/unraid/login-page/alien/wallpaper/hallway2.jpg
index 11f46c9382..5b80aa8a0e 100644
Binary files a/css/addons/unraid/login-page/alien/wallpaper/hallway2.jpg and b/css/addons/unraid/login-page/alien/wallpaper/hallway2.jpg differ
diff --git a/css/addons/unraid/login-page/alien/wallpaper/hallway3.jpg b/css/addons/unraid/login-page/alien/wallpaper/hallway3.jpg
index 71309461a3..dbb85e5e29 100644
Binary files a/css/addons/unraid/login-page/alien/wallpaper/hallway3.jpg and b/css/addons/unraid/login-page/alien/wallpaper/hallway3.jpg differ
diff --git a/css/addons/unraid/login-page/alien/wallpaper/noise.png b/css/addons/unraid/login-page/alien/wallpaper/noise.png
index 302cf49d6f..b9c59dafb9 100644
Binary files a/css/addons/unraid/login-page/alien/wallpaper/noise.png and b/css/addons/unraid/login-page/alien/wallpaper/noise.png differ
diff --git a/css/addons/unraid/login-page/alien/wallpaper/ripley.jpg b/css/addons/unraid/login-page/alien/wallpaper/ripley.jpg
index ff0cc01ce8..bae238d904 100644
Binary files a/css/addons/unraid/login-page/alien/wallpaper/ripley.jpg and b/css/addons/unraid/login-page/alien/wallpaper/ripley.jpg differ
diff --git a/css/addons/unraid/login-page/alien/wallpaper/scanner.jpg b/css/addons/unraid/login-page/alien/wallpaper/scanner.jpg
index f86fa7a098..15c5c3a92d 100644
Binary files a/css/addons/unraid/login-page/alien/wallpaper/scanner.jpg and b/css/addons/unraid/login-page/alien/wallpaper/scanner.jpg differ
diff --git a/css/addons/unraid/login-page/alien/wallpaper/xeno.jpg b/css/addons/unraid/login-page/alien/wallpaper/xeno.jpg
index 8b9797d6fc..fcac495b42 100644
Binary files a/css/addons/unraid/login-page/alien/wallpaper/xeno.jpg and b/css/addons/unraid/login-page/alien/wallpaper/xeno.jpg differ
diff --git a/css/addons/unraid/login-page/custom_login.sh b/css/addons/unraid/login-page/custom_login.sh
index 19abdce186..a6dbbee2d8 100644
--- a/css/addons/unraid/login-page/custom_login.sh
+++ b/css/addons/unraid/login-page/custom_login.sh
@@ -16,6 +16,8 @@ DISABLE_THEME="false"
# If your custom domain uses a subfolder you must escape the forward slash. (custom.com\/subfolder)
+ # If you are on an Unraid version older than 6.10 you need to update the LOGIN_PAGE variable to "/usr/local/emhttp/login.php"
+
echo -e "Variables set:\\n\
TYPE = ${TYPE}\\n\
THEME = ${THEME}\\n\
@@ -25,16 +27,15 @@ ADD_JS = ${ADD_JS}\\n\
JS = ${JS}\\n\
DISABLE_THEME = ${DISABLE_THEME}\\n"
+echo "NOTE: Change the LOGIN_PAGE variable to /usr/local/emhttp/login.php if you are on a version older than 6.10"
+LOGIN_PAGE="/usr/local/emhttp/webGui/include/.login.php"
+
+
IFS='"'
set $(cat /etc/unraid-version)
UNRAID_VERSION="$2"
IFS=$' \t\n'
-LOGIN_PAGE="/usr/local/emhttp/login.php"
-# Changing file path to login.php if version >= 6.10
-if [[ "${UNRAID_VERSION}" =~ ^6.10.* ]]; then
-echo "Unraid version: ${UNRAID_VERSION}, changing path to login page"
-LOGIN_PAGE="/usr/local/emhttp/webGui/include/.login.php"
-fi
+echo "Unraid version: ${UNRAID_VERSION}"
# Restore login.php
if [ ${DISABLE_THEME} = "true" ]; then
diff --git a/css/addons/unraid/login-page/fallout/logo/vault-tec_green.png b/css/addons/unraid/login-page/fallout/logo/vault-tec_green.png
index 8cfa9d0d97..32c850a13a 100644
Binary files a/css/addons/unraid/login-page/fallout/logo/vault-tec_green.png and b/css/addons/unraid/login-page/fallout/logo/vault-tec_green.png differ
diff --git a/css/addons/unraid/login-page/fallout/logo/vault-tec_white.png b/css/addons/unraid/login-page/fallout/logo/vault-tec_white.png
index 81f7ff7402..04d129d9c0 100644
Binary files a/css/addons/unraid/login-page/fallout/logo/vault-tec_white.png and b/css/addons/unraid/login-page/fallout/logo/vault-tec_white.png differ
diff --git a/css/addons/unraid/login-page/fallout/wallpaper/terminal.jpg b/css/addons/unraid/login-page/fallout/wallpaper/terminal.jpg
index a767780c28..dfa2cb2d34 100644
Binary files a/css/addons/unraid/login-page/fallout/wallpaper/terminal.jpg and b/css/addons/unraid/login-page/fallout/wallpaper/terminal.jpg differ
diff --git a/css/addons/unraid/login-page/fallout/wallpaper/terminal2.jpg b/css/addons/unraid/login-page/fallout/wallpaper/terminal2.jpg
index 5424c647eb..4f09dbbc22 100644
Binary files a/css/addons/unraid/login-page/fallout/wallpaper/terminal2.jpg and b/css/addons/unraid/login-page/fallout/wallpaper/terminal2.jpg differ
diff --git a/css/addons/whisparr/whisparr-alt-calendar/whisparr-alt-calendar.css b/css/addons/whisparr/whisparr-alt-calendar/whisparr-alt-calendar.css
new file mode 100644
index 0000000000..827f653350
--- /dev/null
+++ b/css/addons/whisparr/whisparr-alt-calendar/whisparr-alt-calendar.css
@@ -0,0 +1,58 @@
+:root {
+ --calendar-in-cinemas: 53 197 244;
+ --calendar-downloading: 122 67 182;
+ --calendar-unmonitored: 173 173 173;
+ --calendar-unaired: 93 156 236;
+ --calendar-missing: 240 80 80;
+ --calendar-missing-unmonitored: 255 165 0;
+ --calendar-available: 39 194 76;
+}
+
+/* CALENDAR */
+[class*="CalendarEvent-downloaded-"] {
+ background: rgb(var(--calendar-available) / .4) !important;
+
+}
+
+[class*="CalendarEvent-missing-"],
+[class*="CalendarEvent-missingMonitored"] {
+ background-color: rgb(var(--calendar-missing) / .4);
+
+}
+
+[class*="CalendarEvent-missingUnmonitored-"] {
+ background: rgb(var(--calendar-missing-unmonitored) / .4) !important;
+
+}
+
+[class*="CalendarEvent-unreleased-"],
+[class*="CalendarEvent-continuing-"] {
+ background: rgb(var(--calendar-unaired) / .4) !important;
+
+}
+
+[class*="CalendarEvent-event-"] {
+ background: rgb(var(--calendar-unmonitored) / .4);
+}
+
+[class*="CalendarEvent-unmonitored-"] {
+ background: rgb(var(--calendar-unmonitored) / .4) !important;
+
+}
+
+[class*="CalendarEvent-downloading-"],
+[class*="CalendarEvent-queue-"] {
+ background: rgb(var(--calendar-downloading) / .4) !important;
+
+}
+
+/* Color Impaired Mode */
+
+[class*="CalendarEvent-missing-"].colorImpaired,
+[class*="CalendarEvent-missingMonitored-"].colorImpaired {
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-missing) / .2), rgb(var(--calendar-missing) / .2) 5px, rgb(var(--calendar-missing) / .4) 5px, rgb(var(--calendar-missing) / .4) 10px) !important;
+}
+
+[class*="CalendarEvent-missingUnmonitored-"].colorImpaired {
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-missing-unmonitored) / .2), rgb(var(--calendar-missing-unmonitored) / .2) 5px, rgb(var(--calendar-missing-unmonitored) / .4) 5px, rgb(var(--calendar-missing-unmonitored) / .4) 10px) !important;
+}
\ No newline at end of file
diff --git a/css/base/bazarr/bazarr-base.css b/css/base/bazarr/bazarr-base.css
index 26629e053f..6330801811 100644
--- a/css/base/bazarr/bazarr-base.css
+++ b/css/base/bazarr/bazarr-base.css
@@ -21,17 +21,17 @@ html {
color: var(--text-hover) !important;
}
-.mantine-Text-root[class*="bazarr-"]:not(.mantine-Badge-light span div):not(.mantine-Progress-bar div):not(a) {
+.bazarr-Text-root[class*="bazarr-"]:not(.bazarr-Badge-light span div):not(.bazarr-Progress-bar div):not(a) {
color: var(--text);
}
a,
-.mantine-Text-root.mantine-Anchor-root[class*="bazarr-"] {
+.bazarr-Text-root.bazarr-Anchor-root[class*="bazarr-"] {
color: var(--link-color);
}
a:hover,
-.mantine-Text-root.mantine-Anchor-root[class*="bazarr-"]:hover {
+.bazarr-Text-root.bazarr-Anchor-root[class*="bazarr-"]:hover {
color: var(--link-color-hover);
}
@@ -42,58 +42,56 @@ h3,
h4,
h5,
h6,
-.mantine-Blockquote-icon {
+.bazarr-Blockquote-icon {
color: var(--text-hover) !important;
}
/* HEADER */
-.mantine-Header-root[class*="bazarr-"] {
+.bazarr-Header-root[class*="bazarr-"] {
background: var(--main-bg-color);
border-bottom: 1px solid var(--transparency-light-15);
}
/* SUBHEADER */
-/* .mantine-Container-root[class*="bazarr-"] .mantine-Group-root[class*="bazarr-"]:not(td>*):not(.mantine-Card-root div), */
-#root>div>div>main>div>div.mantine-Group-root[class*="bazarr-"],
-#root>div>div>main>div>div>div.mantine-Group-root[class*="bazarr-"]:not([role="navigation"]),
-#root>div>div>main>form>div.mantine-Group-root[class*="bazarr-"] {
+#root>div>div>main>div>div.bazarr-Group-root[class*="bazarr-"],
+#root>div>div>main>form>div.bazarr-Group-root[class*="bazarr-"] {
background: var(--transparency-dark-25);
}
-.mantine-Button-icon.mantine-Button-leftIcon[class*="bazarr-"] {
+.bazarr-Button-icon.bazarr-Button-leftIcon[class*="bazarr-"] {
color: var(--text)
}
/* SIDEMENU */
-.mantine-Navbar-root[class*="bazarr-"] {
+.bazarr-Navbar-root[class*="bazarr-"] {
background: var(--transparency-dark-25);
border-right: 1px solid var(--transparency-light-15);
}
-.mantine-Divider-root .mantine-Divider-horizontal[class*="bazarr-"] {
+.bazarr-Divider-root .bazarr-Divider-horizontal[class*="bazarr-"] {
border-top-color: var(--transparency-light-10);
}
-.mantine-Navbar-root[class*="bazarr-"] .mantine-Stack-root[class*="bazarr-"] a[aria-current="page"] {
+.bazarr-Navbar-root[class*="bazarr-"] .bazarr-Stack-root[class*="bazarr-"] a[aria-current="page"] {
background: var(--transparency-dark-15) !important;
border-left: 2px solid rgb(var(--accent-color));
}
-.mantine-Navbar-root[class*="bazarr-"] .mantine-Stack-root[class*="bazarr-"] a {
+.bazarr-Navbar-root[class*="bazarr-"] .bazarr-Stack-root[class*="bazarr-"] a {
border-left: 2px solid var(--transparency-light-10);
}
-.mantine-Navbar-root[class*="bazarr-"] .mantine-Stack-root a [class*="bazarr-"]:hover:not(.mantine-Badge-light):not(.mantine-Badge-inner),
-.mantine-Navbar-root[class*="bazarr-"] .mantine-Stack-root [class*="bazarr-"]:hover:not(.mantine-Badge-light):not(.mantine-Badge-inner) {
+.bazarr-Navbar-root[class*="bazarr-"] .bazarr-Stack-root a [class*="bazarr-"]:hover:not(.bazarr-Badge-light):not(.bazarr-Badge-inner),
+.bazarr-Navbar-root[class*="bazarr-"] .bazarr-Stack-root [class*="bazarr-"]:hover:not(.bazarr-Badge-light):not(.bazarr-Badge-inner) {
color: rgb(var(--accent-color));
background: transparent;
}
-.mantine-Navbar-root[class*="bazarr-"] {
+.bazarr-Navbar-root[class*="bazarr-"] {
background: var(--main-bg-color);
}
@@ -111,11 +109,12 @@ h6,
border-bottom: 1px solid var(--transparency-light-20) !important;
}
-[class*="bazarr-"].__mantine-ref-striped tbody tr:nth-of-type(2n+1) {
+[class*="bazarr-"].__bazarr-ref-striped tbody tr:nth-of-type(2n+1),
+[class*="bazarr-"][data-striped] tbody tr:nth-of-type(2n+1) {
background: var(--transparency-dark-15) !important;
}
-.mantine-Table-root .__mantine-ref-striped .mantine-Table-striped[class*="bazarr-"] {
+.bazarr-Table-root .__bazarr-ref-striped .bazarr-Table-striped[class*="bazarr-"] {
color: var(--text)
}
@@ -124,28 +123,28 @@ h6,
color: var(--text-hover) !important;
}
-.mantine-Skeleton-root.mantine-Skeleton-visible[class*="bazarr-"]::after {
+.bazarr-Skeleton-root.bazarr-Skeleton-visible[class*="bazarr-"]::after {
background: var(--transparency-light-10);
}
-.mantine-Skeleton-root.mantine-Skeleton-visible[class*="bazarr-"]::before {
+.bazarr-Skeleton-root.bazarr-Skeleton-visible[class*="bazarr-"]::before {
background: var(--transparency-dark-25);
}
/* PAGINATION */
-.mantine-Group-child.mantine-Pagination-item {
+.bazarr-Group-child.bazarr-Pagination-item {
border: 1px solid var(--transparency-light-10);
background: var(--transparency-dark-15);
color: var(--text);
}
-.mantine-Group-child.mantine-Pagination-item[class*="bazarr-"]:disabled {
+.bazarr-Group-child.bazarr-Pagination-item[class*="bazarr-"]:disabled {
background: var(--transparency-light-15);
color: var(--text-muted);
}
-.mantine-Group-child.mantine-Pagination-item.mantine-Pagination-active[class*="bazarr-"] {
+.bazarr-Group-child.bazarr-Pagination-item.bazarr-Pagination-active[class*="bazarr-"] {
background: rgb(var(--accent-color));
color: var(--label-text-color);
}
@@ -153,332 +152,360 @@ h6,
/* BUTTONS */
-.mantine-Button-filled.mantine-Button-root.mantine-Group-child[class*="bazarr-"] {
+.bazarr-UnstyledButton-root.bazarr-Button-root {
color: var(--button-text);
background: var(--button-color);
}
-.mantine-Button-filled.mantine-Button-root.mantine-Group-child[class*="bazarr-"]:hover {
+.bazarr-UnstyledButton-root.bazarr-Button-root:disabled,
+.bazarr-UnstyledButton-root.bazarr-Button-root[data-disabled] {
+ border-color: transparent;
+ background-color: var(--transparency-light-15);
+ color: var(--text-muted);
+}
+
+.bazarr-UnstyledButton-root.bazarr-Button-root:hover {
color: var(--button-text-hover);
background: var(--button-color-hover);
+ border: 1px solid var(--button-color-hover) !important;
}
-.mantine-Button-subtle.mantine-Button-root.mantine-Group-child[class*="bazarr-"]:hover {
+.bazarr-Button-subtle.bazarr-Button-root.bazarr-Group-child[class*="bazarr-"]:hover {
background: var(--transparency-dark-15);
}
-.mantine-Button-subtle.mantine-Button-root.mantine-Group-child[class*="bazarr-"]:not(.__mantine-ref-loading):disabled {
+.bazarr-Button-subtle.bazarr-Button-root.bazarr-Group-child[class*="bazarr-"]:not(.__bazarr-ref-loading):disabled {
background: transparent;
opacity: .5;
}
-.mantine-ActionIcon-hover.mantine-ActionIcon-root[class*="bazarr-"]:hover {
+.bazarr-ActionIcon-hover.bazarr-ActionIcon-root[class*="bazarr-"]:hover {
background: var(--transparency-dark-15);
}
-.mantine-Button-filled.mantine-Button-root[class*="bazarr-"] {
+.bazarr-Button-filled.bazarr-Button-root[class*="bazarr-"] {
color: var(--button-text);
background: var(--button-color);
}
-.mantine-Button-filled.mantine-Button-root[class*="bazarr-"]:hover {
+.bazarr-Button-filled.bazarr-Button-root[class*="bazarr-"]:hover {
color: var(--button-text-hover);
background: var(--button-color-hover);
}
-[class*="bazarr-"].mantine-Switch-input:checked {
+[class*="bazarr-"].bazarr-Switch-input:checked {
background-color: rgb(var(--accent-color));
border-color: rgb(var(--accent-color));
}
-[class*="bazarr-"].mantine-Switch-input:checked::before {
+input:checked+[class*="bazarr-"] {
+ background-color: rgb(var(--accent-color)) !important;
+ border-color: rgb(var(--accent-color)) !important;
+ color: rgb(255, 255, 255);
+ transition: color 150ms ease 0s;
+}
+
+[class*="bazarr-"].bazarr-Switch-input:checked::before {
border-color: var(--label-text-color);
background: var(--label-text-color);
}
-[class*="bazarr-"].mantine-Switch-input:checked::after {
+[class*="bazarr-"].bazarr-Switch-input:checked::after {
color: var(--label-text-color);
}
-[class*="bazarr-"].mantine-Switch-label {
+[class*="bazarr-"].bazarr-Switch-label {
color: var(--text-hover);
}
-[class*="bazarr-"].mantine-Switch-input {
+[class*="bazarr-"].bazarr-Switch-input {
background: var(--transparency-dark-15);
border: 1px solid var(--transparency-light-10);
}
-.mantine-UnstyledButton-root.__mantine-ref-control.mantine-Accordion-control[class*="bazarr-"]:hover {
+.bazarr-UnstyledButton-root.__bazarr-ref-control.bazarr-Accordion-control[class*="bazarr-"]:hover {
background: var(--transparency-dark-15);
}
-.mantine-Accordion-item[class*="bazarr-"] {
+.bazarr-Accordion-item[class*="bazarr-"] {
border-bottom: var(--transparency-light-10) 1px solid;
}
-.__mantine-ref-icon.mantine-Accordion-icon[class*="bazarr-"] {
+.__bazarr-ref-icon.bazarr-Accordion-icon[class*="bazarr-"] {
color: rgb(var(--accent-color))
}
-.mantine-ActionIcon-transparent.mantine-ActionIcon-root[class*="bazarr-"] {
+.bazarr-ActionIcon-transparent.bazarr-ActionIcon-root[class*="bazarr-"] {
color: rgb(var(--accent-color))
}
-.mantine-UnstyledButton-root[class*="bazarr-"] {
- color: var(--text);
+.bazarr-UnstyledButton-root[class*="bazarr-"] {
+ color: var(--button-text);
border: 1px solid var(--transparency-light-10);
}
-.mantine-UnstyledButton-root[class*="bazarr-"]:hover {
+.bazarr-UnstyledButton-root[class*="bazarr-"]:hover {
box-shadow: rgb(0 0 0 / 5%) 0px 1px 3px, rgb(0 0 0 / 5%) 0px 20px 25px -5px, rgb(0 0 0 / 4%) 0px 10px 10px -5px;
border: 1px solid rgb(var(--accent-color));
}
-.mantine-Slider-bar[class*="bazarr-"] {
+.bazarr-Slider-bar[class*="bazarr-"] {
background: rgb(var(--accent-color));
}
-.mantine-Slider-thumb[class*="bazarr-"] {
+.bazarr-Slider-thumb[class*="bazarr-"] {
border: 4px solid rgb(var(--accent-color));
color: var(--label-text-color);
background: var(--label-text-color);
}
-.mantine-Slider-mark.mantine-Slider-markFilled[class*="bazarr-"] {
+.bazarr-Slider-mark.bazarr-Slider-markFilled[class*="bazarr-"] {
border: 2px solid var(--label-text-color);
background: var(--label-text-color);
}
-[class*="bazarr-"].mantine-Slider-track::before {
+[class*="bazarr-"].bazarr-Slider-track::before {
background: var(--transparency-dark-15);
}
-[class*="bazarr-"].mantine-Slider-mark {
+[class*="bazarr-"].bazarr-Slider-mark {
border: 2px solid rgb(var(--accent-color));
background-color: rgb(var(--accent-color))
}
/* ACTION BUTTON */
-.mantine-ActionIcon-light.mantine-ActionIcon-root[class*="bazarr-"] {
+.bazarr-ActionIcon-root[class*="bazarr-"] {
background: var(--button-color);
color: var(--button-text);
border: 1px solid var(--button-color)
}
-.mantine-ActionIcon-light.mantine-ActionIcon-root[class*="bazarr-"]:hover {
+.bazarr-ActionIcon-root[class*="bazarr-"]:disabled {
+ background: var(--transparency-light-15);
+ color: var(--text-muted);
+ border: 1px solid var(--transparency-light-15);
+}
+
+
+.bazarr-ActionIcon-root[class*="bazarr-"]:hover {
background: var(--button-color-hover);
color: var(--button-text-hover);
border: 1px solid var(--button-color-hover)
}
-.mantine-ActionIcon-hover.mantine-ActionIcon-root.mantine-Group-child[class*="bazarr-"] {
+.bazarr-ActionIcon-hover.bazarr-ActionIcon-root.bazarr-Group-child[class*="bazarr-"] {
color: var(--text);
}
/* BADGES/PROGRESSBARS */
-.mantine-Progress-root[class*="bazarr-"] {
+.bazarr-Progress-root[class*="bazarr-"] {
background: var(--transparency-dark-15);
}
-.mantine-Badge-light.mantine-Badge-root[class*="bazarr-"]:not(#root > div > div > main > div > div > div.mantine-Stack-root[class*="bazarr-"] > div[class*="bazarr-"] > table > tbody > tr > td > div > div > div > div) {
+.bazarr-Badge-root[class*="bazarr-"]:not(#root > div > div > main > div > div > div.bazarr-Stack-root[class*="bazarr-"] > div[class*="bazarr-"] > table > tbody > tr > td > div > div > div > div) {
background-color: rgb(var(--accent-color));
color: var(--label-text-color)
}
-[class*="mantine-MultiSelect-"].mantine-MultiSelect-value[class*="bazarr-"],
-.mantine-ActionIcon-transparent.mantine-ActionIcon-root.mantine-MultiSelect-defaultValueRemove[class*="bazarr-"] {
+[class*="bazarr-MultiSelect-"].bazarr-MultiSelect-value[class*="bazarr-"],
+.bazarr-ActionIcon-transparent.bazarr-ActionIcon-root.bazarr-MultiSelect-defaultValueRemove[class*="bazarr-"] {
background: rgb(var(--accent-color));
color: var(--label-text-color)
}
/* INPUT */
-[class*="mantine-Autocomplete-"].mantine-Autocomplete-input.mantine-Autocomplete-withIcon[class*="bazarr-"],
-[class*="mantine-TextInput-"].mantine-TextInput-input[class*="bazarr-"],
-[class*="mantine-NumberInput-"].mantine-NumberInput-input[class*="bazarr-"],
-[class*="mantine-PasswordInput-"].mantine-PasswordInput-input.mantine-PasswordInput-input[class*="bazarr-"] {
+[class*="bazarr-Autocomplete-"].bazarr-Autocomplete-input.bazarr-Autocomplete-withIcon[class*="bazarr-"],
+[class*="bazarr-TextInput-"].bazarr-TextInput-input[class*="bazarr-"],
+[class*="bazarr-NumberInput-"].bazarr-NumberInput-input[class*="bazarr-"],
+[class*="bazarr-PasswordInput-"].bazarr-PasswordInput-input.bazarr-PasswordInput-input[class*="bazarr-"] {
background: var(--transparency-dark-25);
border: 1px solid var(--transparency-light-10);
color: var(--text);
}
-[class*="mantine-Autocomplete-"].mantine-Autocomplete-input.mantine-Autocomplete-withIcon[class*="bazarr-"]:focus,
-[class*="mantine-Autocomplete-"].mantine-Autocomplete-input.mantine-Autocomplete-withIcon[class*="bazarr-"]:focus-within,
-[class*="mantine-TextInput-"].mantine-TextInput-input[class*="bazarr-"]:focus,
-[class*="mantine-TextInput-"].mantine-TextInput-input[class*="bazarr-"]:focus-within,
-[class*="mantine-NumberInput-"].mantine-NumberInput-input[class*="bazarr-"]:focus,
-[class*="mantine-NumberInput-"].mantine-NumberInput-input[class*="bazarr-"]:focus-within,
-[class*="mantine-PasswordInput-"].mantine-PasswordInput-input.mantine-PasswordInput-input[class*="bazarr-"]:focus,
-[class*="mantine-PasswordInput-"].mantine-PasswordInput-input.mantine-PasswordInput-input[class*="bazarr-"]:focus-within {
+[class*="bazarr-Autocomplete-"].bazarr-Autocomplete-input.bazarr-Autocomplete-withIcon[class*="bazarr-"]:focus,
+[class*="bazarr-Autocomplete-"].bazarr-Autocomplete-input.bazarr-Autocomplete-withIcon[class*="bazarr-"]:focus-within,
+[class*="bazarr-TextInput-"].bazarr-TextInput-input[class*="bazarr-"]:focus,
+[class*="bazarr-TextInput-"].bazarr-TextInput-input[class*="bazarr-"]:focus-within,
+[class*="bazarr-NumberInput-"].bazarr-NumberInput-input[class*="bazarr-"]:focus,
+[class*="bazarr-NumberInput-"].bazarr-NumberInput-input[class*="bazarr-"]:focus-within,
+[class*="bazarr-PasswordInput-"].bazarr-PasswordInput-input.bazarr-PasswordInput-input[class*="bazarr-"]:focus,
+[class*="bazarr-PasswordInput-"].bazarr-PasswordInput-input.bazarr-PasswordInput-input[class*="bazarr-"]:focus-within {
outline: none;
border-color: rgb(var(--accent-color)) !important;
color: var(--text-hover)
}
-.mantine-NumberInput-control.mantine-NumberInput-controlUp[class*="bazarr-"] {
+.bazarr-NumberInput-control.bazarr-NumberInput-controlUp[class*="bazarr-"] {
border-bottom-color: var(--transparency-light-10);
border-left-color: var(--transparency-light-10);
}
-.mantine-NumberInput-control.mantine-NumberInput-controlDown[class*="bazarr-"] {
+.bazarr-NumberInput-control.bazarr-NumberInput-controlDown[class*="bazarr-"] {
border-left-color: var(--transparency-light-10);
}
-.mantine-NumberInput-control.mantine-NumberInput-controlUp[class*="bazarr-"]::after {
+.bazarr-NumberInput-control.bazarr-NumberInput-controlUp[class*="bazarr-"]::after {
border-color: transparent transparent var(--text);
}
-.mantine-NumberInput-control.mantine-NumberInput-controlDown[class*="bazarr-"]::after {
+.bazarr-NumberInput-control.bazarr-NumberInput-controlDown[class*="bazarr-"]::after {
border-color: var(--text) transparent transparent;
}
-[class*="bazarr-"].mantine-Checkbox-inner input {
+[class*="bazarr-"].bazarr-Checkbox-inner input {
background: var(--transparency-dark-15);
border: 1px solid var(--transparency-light-10);
}
-[class*="bazarr-"].mantine-Checkbox-input:checked {
+[class*="bazarr-"].bazarr-Checkbox-input:checked {
background-color: rgb(var(--accent-color));
border-color: rgb(var(--accent-color));
}
-.__mantine-ref-icon[class*="bazarr-"].mantine-Checkbox-icon {
+.__bazarr-ref-icon[class*="bazarr-"].bazarr-Checkbox-icon {
color: var(--label-text-color)
}
-[class*="mantine-TextInput-"].mantine-TextInput-input[class*="bazarr-"],
-[class*="mantine-Autocomplete-"].mantine-Autocomplete-input.mantine-Autocomplete-withIcon[class*="bazarr-"] {
+[class*="bazarr-TextInput-"].bazarr-TextInput-input[class*="bazarr-"],
+[class*="bazarr-Autocomplete-"].bazarr-Autocomplete-input.bazarr-Autocomplete-withIcon[class*="bazarr-"] {
color: var(--text);
}
textarea,
-[class*="mantine-Textarea-"].mantine-Textarea-input[class*="bazarr-"] {
+[class*="bazarr-Textarea-"].bazarr-Textarea-input[class*="bazarr-"] {
background: var(--transparency-dark-15);
}
textarea:focus,
-[class*="mantine-Textarea-"].mantine-Textarea-input[class*="bazarr-"]:focus,
+[class*="bazarr-Textarea-"].bazarr-Textarea-input[class*="bazarr-"]:focus,
textarea:focus-within,
-[class*="mantine-Textarea-"].mantine-Textarea-input[class*="bazarr-"]:focus-within {
+[class*="bazarr-Textarea-"].bazarr-Textarea-input[class*="bazarr-"]:focus-within {
border-color: rgb(var(--accent-color)) !important;
}
/* SELECT */
-.mantine-Select-wrapper[class*="bazarr-"] input,
-[class*="mantine-MultiSelect-"].mantine-MultiSelect-input[class*="bazarr-"] {
+.bazarr-Select-wrapper[class*="bazarr-"] input,
+[class*="bazarr-MultiSelect-"].bazarr-MultiSelect-input[class*="bazarr-"] {
background-color: var(--transparency-dark-15);
color: var(--text);
border: 1px solid var(--transparency-light-10);
}
-[class*="mantine-MultiSelect-"].mantine-MultiSelect-input[class*="bazarr-"]:focus,
-[class*="mantine-MultiSelect-"].mantine-MultiSelect-input[class*="bazarr-"]:focus-within {
+[class*="bazarr-MultiSelect-"].bazarr-MultiSelect-input[class*="bazarr-"]:focus,
+[class*="bazarr-MultiSelect-"].bazarr-MultiSelect-input[class*="bazarr-"]:focus-within {
border-color: rgb(var(--accent-color)) !important;
}
-.mantine-Select-wrapper[class*="bazarr-"] input:focus,
-.mantine-Select-wrapper[class*="bazarr-"] input:focus-within {
+.bazarr-Select-wrapper[class*="bazarr-"] input:focus,
+.bazarr-Select-wrapper[class*="bazarr-"] input:focus-within {
outline: none;
border-color: rgb(var(--accent-color)) !important;
}
/* DROPDOWNS */
-.mantine-Paper-root.mantine-Menu-body[class*="bazarr-"] {
+.bazarr-Select-dropdown {
+ background: rgba(255, 0, 0, 0.283);
+}
+
+.bazarr-Paper-root.bazarr-Menu-body[class*="bazarr-"],
+.bazarr-Menu-dropdown[class*="bazarr-"] {
border: 1px solid var(--transparency-light-10);
background: var(--drop-down-menu-bg);
}
-[class*="bazarr-"].mantine-Menu-itemInner {
+[class*="bazarr-"].bazarr-Menu-itemInner {
color: var(--text);
}
-.mantine-Menu-item[class*="bazarr-"]:disabled [class*="bazarr-"].mantine-Menu-itemInner {
+.bazarr-Menu-item[class*="bazarr-"]:disabled [class*="bazarr-"].bazarr-Menu-itemInner {
color: var(--text-muted) !important;
}
-.mantine-Menu-item.mantine-Menu-itemHovered[class*="bazarr-"] {
+.bazarr-Menu-item.bazarr-Menu-itemHovered[class*="bazarr-"] {
background-color: var(--transparency-light-10);
color: var(--text-hover);
}
-.mantine-Menu-item[class*="bazarr-"]:hover {
+.bazarr-Menu-item[class*="bazarr-"]:hover {
color: var(--text-hover);
+ background-color: var(--transparency-light-10);
}
-.mantine-ScrollArea-root.mantine-Paper-root.mantine-Select-dropdown[class*="bazarr-"] {
+.bazarr-ScrollArea-root.bazarr-Paper-root.bazarr-Select-dropdown[class*="bazarr-"] {
background: var(--drop-down-menu-bg);
border: 1px solid var(--drop-down-menu-bg);
}
-.mantine-Select-item.mantine-Select-selected[class*="bazarr-"] {
+.bazarr-Select-item.bazarr-Select-selected[class*="bazarr-"] {
background: var(--transparency-light-10);
}
-[class*="bazarr-"].mantine-Select-item:hover {
+[class*="bazarr-"].bazarr-Select-item:hover {
background: var(--transparency-dark-15)
}
-.mantine-ScrollArea-root.mantine-Paper-root.mantine-Autocomplete-dropdown[class*="bazarr-"] {
+.bazarr-ScrollArea-root.bazarr-Paper-root.bazarr-Autocomplete-dropdown[class*="bazarr-"] {
background: var(--drop-down-menu-bg);
color: var(--text);
border: 1px solid var(--drop-down-menu-bg);
}
-.mantine-Autocomplete-item.mantine-Autocomplete-hovered[class*="bazarr-"] {
+.bazarr-Autocomplete-item.bazarr-Autocomplete-hovered[class*="bazarr-"] {
background: var(--transparency-dark-15);
}
-[class*="bazarr-"].mantine-Autocomplete-item {
+[class*="bazarr-"].bazarr-Autocomplete-item {
color: var(--text);
}
/* MODAL */
-.mantine-Paper-root.mantine-Modal-modal[class*="bazarr-"] {
+.bazarr-Paper-root.bazarr-Modal-modal[class*="bazarr-"] {
color: var(--text);
box-shadow: rgb(0 0 0 / 5%) 0px 1px 3px, rgb(0 0 0 / 5%) 0px 28px 23px -7px, rgb(0 0 0 / 4%) 0px 12px 12px -7px;
background: var(--modal-bg-color);
}
-.mantine-Divider-root.mantine-Divider-horizontal[class*="bazarr-"] {
+.bazarr-Divider-root.bazarr-Divider-horizontal[class*="bazarr-"] {
border-top-color: var(--transparency-light-10);
}
-.mantine-ActionIcon-hover.mantine-ActionIcon-root.mantine-Modal-close[class*="bazarr-"]:hover {
+.bazarr-ActionIcon-hover.bazarr-ActionIcon-root.bazarr-Modal-close[class*="bazarr-"]:hover {
background: var(--transparency-dark-15);
}
-.mantine-ActionIcon-hover.mantine-ActionIcon-root.mantine-Modal-close[class*="bazarr-"] {
+.bazarr-ActionIcon-hover.bazarr-ActionIcon-root.bazarr-Modal-close[class*="bazarr-"] {
color: var(--text);
}
-.mantine-ActionIcon-hover.mantine-ActionIcon-root[class*="bazarr-"] {
+.bazarr-ActionIcon-hover.bazarr-ActionIcon-root[class*="bazarr-"] {
color: var(--text);
}
/* RELEASES */
-.mantine-Paper-root.mantine-Card-root[class*="bazarr-"] {
+.bazarr-Paper-root.bazarr-Card-root[class*="bazarr-"] {
background: var(--transparency-dark-15);
}
-.mantine-List-item[class*="bazarr-"] {
+.bazarr-List-item[class*="bazarr-"] {
color: var(--text);
}
/* ALERTS */
-.mantine-Alert-root.mantine-Alert-light[class*="bazarr-"] {
+.bazarr-Alert-root[class*="bazarr-"] {
background: var(--transparency-dark-15);
}
-[class*="bazarr-"].mantine-Alert-message {
+[class*="bazarr-"].bazarr-Alert-message {
color: var(--text);
}
-[class*="bazarr-"].mantine-Alert-label {
+[class*="bazarr-"].bazarr-Alert-label {
color: var(--text-hover)
}
@@ -504,41 +531,41 @@ line {
}
/* NOTIFICATIONS */
-.mantine-Notification-root.mantine-Notification-withIcon[class*="bazarr-"],
-.mantine-Notification-root[class*="bazarr-"] {
+.bazarr-Notification-root.bazarr-Notification-withIcon[class*="bazarr-"],
+.bazarr-Notification-root[class*="bazarr-"] {
background: var(--drop-down-menu-bg);
border: 1px solid var(--drop-down-menu-bg);
}
code,
-.mantine-Code-root[class*="bazarr-"] {
+.bazarr-Code-root[class*="bazarr-"] {
background: rgb(var(--accent-color));
color: var(--label-text-color);
}
-.mantine-Code-root.mantine-Code-block[class*="bazarr-"] {
+.bazarr-Code-root.bazarr-Code-block[class*="bazarr-"] {
background: var(--transparency-dark-15);
color: var(text);
}
/* SPINNER */
-.mantine-Notification-root.mantine-Notification-withIcon[class*="bazarr-"] svg {
+.bazarr-Notification-root.bazarr-Notification-withIcon[class*="bazarr-"] svg {
stroke: rgb(var(--accent-color));
}
/* PROGRESSBAR */
-[class*="bazarr-"].mantine-Progress-bar[style="width: 100%;"] {
+[class*="bazarr-"].bazarr-Progress-bar[style="width: 100%;"] {
background: rgb(var(--accent-color));
}
-[class*="bazarr-"].mantine-Progress-bar[style="width: 100%;"] .mantine-Text-root.mantine-Progress-label[class*="bazarr-"] {
+[class*="bazarr-"].bazarr-Progress-bar[style="width: 100%;"] .bazarr-Text-root.bazarr-Progress-label[class*="bazarr-"] {
color: var(--label-text-color);
}
/* LOADER */
-.mantine-LoadingOverlay-root[class*="bazarr-"] svg {
+.bazarr-LoadingOverlay-root[class*="bazarr-"] svg {
stroke: rgb(var(--accent-color));
}
\ No newline at end of file
diff --git a/css/base/lidarr/lidarr-base.css b/css/base/lidarr/lidarr-base.css
index f934a224ce..9efcb2e267 100644
--- a/css/base/lidarr/lidarr-base.css
+++ b/css/base/lidarr/lidarr-base.css
@@ -15,12 +15,11 @@
@import url("/css/defaults/servarr-base.css");
:root {
- --calendar-downloading: 122 67 182;
--calendar-downloaded: 39 194 76;
- --calendar-unreleased: 93 156 236;
- --calendar-partial: 255, 165, 0;
+ --calendar-downloading: 122 67 182;
--calendar-unmonitored: 173 173 173;
--calendar-missing: 240 80 80;
+ --calendar-unreleased: 93 156 236;
}
/* LIDARR SPECIFIC */
@@ -213,56 +212,21 @@
}
/* CALENDAR */
-[class*="CalendarEvent-downloaded-"] {
- background: rgb(var(--calendar-available) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-downloaded-"]:hover {
- background: rgb(var(--calendar-available) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-missing-"] {
- background: rgb(var(--calendar-missing) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-missing-"]:hover {
- background: rgba(var(--calendar-missing) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-unreleased-"] {
- background: rgb(var(--calendar-unaired) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-unreleased-"]:hover {
- background: rgb(var(--calendar-unaired) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-unmonitored-"] {
- background: rgb(var(--calendar-unmonitored) / .7) !important;
- border-left-color: transparent !important;
+[class*="CalendarEvent-event-"]>div>div>a {
+ color: var(--transparency-light-95) !important;
}
-[class*="Calendar-calendar-"] [class*="CalendarEvent-unmonitored-"]:hover {
- background: rgb(var(--calendar-unmonitored) / .5) !important;
- border-left-color: transparent !important;
+/* Color Impaired Mode */
+[class*="CalendarEvent-unmonitored-"].colorImpaired {
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-unmonitored) / .2), rgb(var(--calendar-unmonitored) / .2) 5px, rgb(var(--calendar-unmonitored) / .4) 5px, rgb(var(--calendar-unmonitored) / .4) 10px) !important;
}
-[class*="CalendarEvent-downloading-"],
-[class*="CalendarEvent-queue-"] {
- background: rgb(var(--calendar-downloading) / .7) !important;
- border-left-color: transparent !important;
+[class*="CalendarEvent-missing-"].colorImpaired{
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-missing) / .2), rgb(var(--calendar-missing) / .2) 5px, rgb(var(--calendar-missing) / .4) 5px, rgb(var(--calendar-missing) / .4) 10px) !important;
}
-[class*="Calendar-calendar-"] [class*="CalendarEvent-downloading-"]:hover,
-[class*="Calendar-calendar-"] [class*="CalendarEvent-queue-"]:hover {
- background: rgb(var(--calendar-downloading) / .5) !important;
- border-left-color: transparent !important;
+[class*="CalendarEvent-unreleased-"].colorImpaired{
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-unreleased) / .2), rgb(var(--calendar-unreleased) / .2) 5px, rgb(var(--calendar-unreleased) / .4) 5px, rgb(var(--calendar-unreleased) / .4) 10px) !important;
}
[class*="ArtistIndexHeader-sortName-"]:hover,
diff --git a/css/base/overseerr/overseerr-base.css b/css/base/overseerr/overseerr-base.css
index d12d00cc51..3af4236d34 100644
--- a/css/base/overseerr/overseerr-base.css
+++ b/css/base/overseerr/overseerr-base.css
@@ -2,18 +2,24 @@
@import url("/css/defaults/transparent.css");
/* TEXT */
-[class*="text-gray-"]:not(button:disabled):not(button) {
+[class*="text-gray-"]:not(button:disabled):not(button):not(.text-gray-100) {
color: var(--text);
}
-[class*="text-indigo-"]:not(.text-indigo-100) {
- color: rgb(var(--accent-color))
+[class*="text-indigo-"]:not(.text-indigo-100),
+.text-overseerr {
+ color: rgb(var(--accent-color));
}
.text-indigo-100 {
color: var(--label-text-color);
}
+.text-gray-400,
+.text-gray-200 {
+ color: var(--transparency-light-95) !important;
+}
+
h1,
h2,
h3,
@@ -68,13 +74,21 @@ button[class*="bg-indigo-"],
button[class*="bg-gray-"],
button[class*="border-indigo-"],
button[class*="border-gray-"],
-#__next > div > div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64 > main > div > div > div.relative.z-40.mt-6.mb-12.lg\:flex.lg\:items-end.lg\:justify-between.lg\:space-x-5 > div.flex.flex-col-reverse.mt-6.space-y-4.space-y-reverse.justify-stretch.lg\:flex-row.lg\:justify-end.lg\:space-x-reverse.lg\:space-y-0.lg\:space-x-3 > a,
+#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div.relative.z-40.mt-6.mb-12.lg\:flex.lg\:items-end.lg\:justify-between.lg\:space-x-5>div.flex.flex-col-reverse.mt-6.space-y-4.space-y-reverse.justify-stretch.lg\:flex-row.lg\:justify-end.lg\:space-x-reverse.lg\:space-y-0.lg\:space-x-3>a,
button.input-action {
- background-color: var(--button-color);
- border-color: var(--button-color);
+ background-color: rgb(var(--accent-color), .5);
+ border-color: rgb(var(--accent-color), .5);
+ color: var(--button-text);
+}
+
+#headlessui-listbox-button-\:r5\:>span:nth-child(1)>span.ml-1.truncate.text-gray-400 {
color: var(--button-text);
}
+.focus\:border-blue-300:focus {
+ border-color: rgb(var(--accent-color)) !important;
+}
+
button[type="submit"],
button[class="input-action"] {
color: var(--button-text)
@@ -86,10 +100,10 @@ button[class*="border-indigo-"]:hover,
button[class*="border-gray-"]:hover,
button.input-action:hover,
button[class="input-action"]:hover,
-#__next > div > div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64 > main > div > div > div.relative.z-40.mt-6.mb-12.lg\:flex.lg\:items-end.lg\:justify-between.lg\:space-x-5 > div.flex.flex-col-reverse.mt-6.space-y-4.space-y-reverse.justify-stretch.lg\:flex-row.lg\:justify-end.lg\:space-x-reverse.lg\:space-y-0.lg\:space-x-3 > a:hover {
- background-color: var(--button-color-hover);
- border-color: var(--button-color-hover);
- color: var(--button-text-hover);
+#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div.relative.z-40.mt-6.mb-12.lg\:flex.lg\:items-end.lg\:justify-between.lg\:space-x-5>div.flex.flex-col-reverse.mt-6.space-y-4.space-y-reverse.justify-stretch.lg\:flex-row.lg\:justify-end.lg\:space-x-reverse.lg\:space-y-0.lg\:space-x-3>a:hover {
+ background-color: rgb(var(--accent-color), .8);
+ border-color: rgb(var(--accent-color), .8);
+ color: var(--button-text-hover) !important;
}
button[type="submit"]:hover,
@@ -123,13 +137,36 @@ textarea:focus {
input[type=password],
input[type=text],
-select,
textarea {
border-color: rgba(255, 255, 255, .1);
background: var(--transparency-dark-25);
color: var(--text);
}
+select:focus {
+ border-color: rgba(255, 255, 255, .1) !important;
+ background: var(--drop-down-menu-bg) !important;
+ color: var(--text) !important;
+}
+
+select,
+#__next>div>div.relative.mb-16.flex.w-0.min-w-0.flex-1.flex-col.lg\:ml-64>main>div>div>div.mb-4.flex.flex-col.justify-between.lg\:flex-row.lg\:items-end>div.mt-2.flex.flex-grow.flex-col.sm\:flex-row.lg\:flex-grow-0>div>span {
+ border-color: rgba(255, 255, 255, .1) !important;
+ background: var(--transparency-dark-25) !important;
+ color: var(--text) !important;
+}
+
+select {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
+ background-position: right .5rem center !important;
+ background-repeat: no-repeat !important;
+ background-size: 1.5em 1.5em !important;
+ padding-right: 2.5rem !important;
+ -webkit-print-color-adjust: exact !important;
+ color-adjust: exact !important;
+ print-color-adjust: exact !important;
+}
+
input[type=checkbox] {
color: rgba(var(--accent-color));
}
@@ -154,6 +191,7 @@ body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.items-center.justify-cent
span.bg-indigo-500 {
background-color: rgb(var(--accent-color));
color: var(--label-text-color) !important;
+ border-color: rgb(var(--accent-color));
}
.react-select-container .react-select__control {
@@ -197,9 +235,9 @@ body {
color: var(--text);
}
-.bg-gray-800 {
- --tw-bg-opacity: 0.05;
- background-color: rgb(255, 255, 255, var(--tw-bg-opacity));
+[data-popper-placement] {
+ background: rgb(var(--accent-color)) !important;
+ color: var(--label-text-color) !important;
}
.hover\:bg-gray-700:hover {
@@ -274,14 +312,30 @@ body {
--tw-gradient-to: rgb(var(--accent-color), .8);
}
+[role="menuitem"]:hover {
+ background: rgb(var(--accent-color), .3);
+}
+
#__next>div>div.fixed.top-0.bottom-0.left-0.z-30.hidden.lg\:flex.lg\:flex-shrink-0>div>div>div>nav>a.flex.group.items-center.px-2.py-2.text-lg.leading-6.font-medium.rounded-md.text-white.focus\:outline-none.transition.ease-in-out.duration-150.bg-gradient-to-br.from-indigo-600.to-purple-600.hover\:from-indigo-500.hover\:to-purple-500,
#__next>div>div.lg\:hidden>div>div.relative.flex.flex-col.flex-1.w-full.max-w-xs.bg-gray-800.sidebar.appear-done.enter-done>div.flex.flex-col.flex-1.h-0.pt-8.pb-8.overflow-y-auto.sm\:pb-4>nav>a.flex.items-center.px-2.py-2.text-base.leading-6.font-medium.rounded-md.text-white.focus\:outline-none.transition.ease-in-out.duration-150.bg-gradient-to-br.from-indigo-600.to-purple-600.hover\:from-indigo-500.hover\:to-purple-500 {
- --tw-gradient-from: rgb(var(--accent-color), .5);
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(var(--accent-color), .5));
+ --tw-gradient-from: rgb(var(--accent-color), .3);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(var(--accent-color), .3));
+}
+
+.from-indigo-600 {
+ --tw-gradient-from: rgb(var(--accent-color), .3);
+ --tw-gradient-to: rgba(var(--accent-color), .3);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
+}
+
+.from-indigo-600:hover {
+ --tw-gradient-from: rgb(var(--accent-color), .7);
+ --tw-gradient-to: rgba(var(--accent-color), .7);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
#__next>div>div.fixed.top-0.bottom-0.left-0.z-30.hidden.lg\:flex.lg\:flex-shrink-0>div>div>div>nav>a.flex.group.items-center.px-2.py-2.text-lg.leading-6.font-medium.rounded-md.text-white.focus\:outline-none.transition.ease-in-out.duration-150.bg-gradient-to-br.from-indigo-600.to-purple-600.hover\:from-indigo-500.hover\:to-purple-500,
-#__next > div > div.fixed.top-0.bottom-0.left-0.z-30.hidden.lg\:flex.lg\:flex-shrink-0 > div > div > div > nav > a.flex.group.items-center.px-2.py-2.text-lg.leading-6.font-medium.rounded-md.text-white.focus\:outline-none.transition.ease-in-out.duration-150.bg-gradient-to-br.from-indigo-600.to-purple-600.hover\:from-indigo-500.hover\:to-purple-500 > svg {
+#__next>div>div.fixed.top-0.bottom-0.left-0.z-30.hidden.lg\:flex.lg\:flex-shrink-0>div>div>div>nav>a.flex.group.items-center.px-2.py-2.text-lg.leading-6.font-medium.rounded-md.text-white.focus\:outline-none.transition.ease-in-out.duration-150.bg-gradient-to-br.from-indigo-600.to-purple-600.hover\:from-indigo-500.hover\:to-purple-500>svg {
color: rgb(var(--accent-color)) !important;
}
@@ -315,9 +369,9 @@ body>div.fixed.top-0.left-0.z-50.w-full.transition-opacity.ease-out.duration-400
background-color: rgb(var(--accent-color));
}
-body>div.fixed.top-0.left-0.z-50.w-full .bg-indigo-400 {
+/* body>div.fixed.top-0.left-0.z-50.w-full .bg-indigo-400 {
background-color: rgb(var(--accent-color));
-}
+} */
/* DISCOVER PAGE */
@@ -330,9 +384,15 @@ a.slider-title:hover {
color: var(--accent-color-hover);
}
+/* CARDS */
+#__next>div>div.relative.mb-16.flex.w-0.min-w-0.flex-1.flex-col.lg\:ml-64>main>div>div>div>div.hide-scrollbar.relative.-my-2.-ml-4.-mr-4.overflow-y-auto.overflow-x-scroll.overscroll-x-contain.whitespace-nowrap.px-2.py-2>div>a,
+#__next>div>div.relative.mb-16.flex.w-0.min-w-0.flex-1.flex-col.lg\:ml-64>main>div>div>div>div>div.hide-scrollbar.relative.-my-2.-ml-4.-mr-4.overflow-y-auto.overflow-x-scroll.overscroll-x-contain.whitespace-nowrap.px-2.py-2>div>a>div {
+ background: var(--transparency-light-15)
+}
+
/* CARD HOVER */
#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div>div.relative.px-2.py-2.-my-2.-ml-4.-mr-4.overflow-x-scroll.overflow-y-auto.whitespace-nowrap.hide-scrollbar.overscroll-x-contain>div>div>div>div>div:hover a {
- background: linear-gradient(rgba(var(--accent-color), 0.3) 0%, rgba(0,0,0,.7) 100%) !important;
+ background: linear-gradient(rgba(var(--accent-color), 0.3) 0%, rgba(0, 0, 0, .7) 100%) !important;
}
#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div>div.relative.px-2.py-2.-my-2.-ml-4.-mr-4.overflow-x-scroll.overflow-y-auto.whitespace-nowrap.hide-scrollbar.overscroll-x-contain>div>div>div.absolute.inset-0.z-0>div.absolute.inset-0 {
@@ -340,13 +400,13 @@ a.slider-title:hover {
}
#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div>div.relative.px-2.py-2.-my-2.-ml-4.-mr-4.overflow-x-scroll.overflow-y-auto.whitespace-nowrap.hide-scrollbar.overscroll-x-contain>div>a:hover {
- background: linear-gradient(rgba(var(--accent-color), .04) 0%, rgba(var(--accent-color), 0.3) 100%);
+ background: linear-gradient(rgba(var(--accent-color), .4) 0%, rgba(var(--accent-color), 0.3) 100%);
}
/* SHOW PAGE */
#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div>div.media-page-bg-image>div.absolute.inset-0,
-#__next > div > div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64 > main > div > div > div.absolute.left-0.right-0.z-0.-top-16.h-96 > div > div > div.absolute.inset-0 {
+#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div.absolute.left-0.right-0.z-0.-top-16.h-96>div>div>div.absolute.inset-0 {
background: var(--overseerr-gradient) !important;
}
@@ -511,11 +571,19 @@ body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.items-center.justify-cent
display: none !important;
}
+body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.h-full.w-full.items-center.justify-center.bg-gray-800.bg-opacity-70.opacity-100>div>div.absolute.top-0.left-0.right-0.z-0.h-64.max-h-full.w-full>span>img {
+ display: none !important;
+}
+
body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.items-center.justify-center.w-full.h-full.bg-gray-800.bg-opacity-70.enter-done>div>div.absolute.top-0.left-0.right-0.z-0.w-full.h-64>div.absolute.inset-0,
body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.items-center.justify-center.w-full.h-full.bg-gray-800.bg-opacity-70>div>div.absolute.top-0.left-0.right-0.z-0.w-full.h-64>div.absolute.inset-0 {
background: transparent !important;
}
+body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.h-full.w-full.items-center.justify-center.bg-gray-800.bg-opacity-70.opacity-100>div[aria-modal="true"] {
+ background: var(--main-bg-color);
+}
+
body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.items-center.justify-center.w-full.h-full.bg-gray-800.bg-opacity-70>div>div.relative.mt-4.text-sm.leading-5.text-gray-300>div.flex.flex-col>div>div>div>table>tbody {
background: var(--transparency-light-10);
}
@@ -523,11 +591,11 @@ body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.items-center.justify-cent
/* DROPDOWN */
-#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div>div.media-header>div.media-actions>span>span>div>div.bg-gray-700,
+/* #__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div>div.media-header>div.media-actions>span>span>div>div.bg-gray-700,
#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div>div.media-header>div.media-actions>span>span>div>div>div>a,
#__next > div > div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64 > main > div > div > div.mt-10.text-white > form > div:nth-child(5) > div > div > div > div > div > div {
background: var(--drop-down-menu-bg);
-}
+} */
#__next>div>div.relative.flex.flex-col.flex-1.w-0.min-w-0.mb-16.lg\:ml-64>main>div>div>div>div.media-header>div.media-actions>span>span>div>div>div>a:hover {
background: var(--transparency-light-10);
@@ -537,7 +605,8 @@ body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.items-center.justify-cent
[aria-labelledby="user-menu"] {
background: var(--drop-down-menu-bg);
}
-[aria-labelledby="user-menu"] a:hover{
+
+[aria-labelledby="user-menu"] a:hover {
background: var(--transparency-light-05);
}
@@ -556,4 +625,20 @@ body>div.fixed.top-0.bottom-0.left-0.right-0.z-50.flex.items-center.justify-cent
#toast-container .text-gray-400,
#toast-container .text-white {
color: var(--label-text-color);
+}
+
+/* BLURSTUFF */
+
+.backdrop-blur:not(.bg-yellow-500) {
+ background: rgb(var(--accent-color), 0.3);
+ --tw-backdrop-blur: blur(8px);
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
+ border-color: rgb(var(--accent-color), 0.3);
+}
+
+
+[aria-labelledby*="headlessui-label"][data-headlessui-state*="checked"] {
+ background: rgb(var(--accent-color), 0.3);
+ border-color: rgb(var(--accent-color), 0.3);
}
\ No newline at end of file
diff --git a/css/base/radarr/radarr-base.css b/css/base/radarr/radarr-base.css
index ca316ca49b..be4cb2ac5f 100644
--- a/css/base/radarr/radarr-base.css
+++ b/css/base/radarr/radarr-base.css
@@ -257,90 +257,28 @@
color: var(--text-hover);
}
-/* CALENDAR */
-[class*="CalendarEvent-downloaded-"] {
- background: rgb(var(--calendar-available) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-downloaded-"]:hover {
- background: rgb(var(--calendar-available) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-missing-"],
-[class*="CalendarEvent-missingMonitored"] {
- background: rgb(var(--calendar-missing) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-missing-"]:hover,
-[class*="Calendar-calendar-"] [class*="CalendarEvent-missingMonitored"]:hover {
- background: rgba(var(--calendar-missing) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-missingUnmonitored-"] {
- background: rgb(var(--calendar-missing-unmonitored) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-missingUnmonitored-"]:hover {
- background: rgb(var(--calendar-missing-unmonitored) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-unreleased-"],
-[class*="CalendarEvent-continuing-"] {
- background: rgb(var(--calendar-unaired) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-unreleased-"]:hover,
-[class*="Calendar-calendar-"] [class*="CalendarEvent-continuing-"]:hover {
- background: rgb(var(--calendar-unaired) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-event-"] {
- background: rgb(var(--calendar-unmonitored) / .7);
- border-left-color: transparent;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-event-"]:hover {
- background: rgb(var(--calendar-unmonitored) / .5);
- border-left-color: transparent;
-}
-
-[class*="CalendarEvent-unmonitored-"] {
- background: rgb(var(--calendar-unmonitored) / .7) !important;
- border-left-color: transparent !important;
+[class*="CalendarEvent-movieTitle-"],
+[class*="CalendarEvent-movieInfo-"] {
+ color: #fff !important;
}
-[class*="Calendar-calendar-"] [class*="CalendarEvent-unmonitored-"]:hover {
- background: rgb(var(--calendar-unmonitored) / .5) !important;
- border-left-color: transparent !important;
+[class*="CalendarEventGroup-movieTitle-"] {
+ color: var(--text-hover) !important;
}
-[class*="CalendarEvent-downloading-"],
-[class*="CalendarEvent-queue-"] {
- background: rgb(var(--calendar-downloading) / .7) !important;
- border-left-color: transparent !important;
+[class*="CalendarEvent-missingMonitored-"].colorImpaired {
+ background: var(--transparency-light-15);
}
-[class*="Calendar-calendar-"] [class*="CalendarEvent-downloading-"]:hover,
-[class*="Calendar-calendar-"] [class*="CalendarEvent-queue-"]:hover {
- background: rgb(var(--calendar-downloading) / .5) !important;
- border-left-color: transparent !important;
-}
+/* Color Impaired Mode */
-[class*="CalendarEvent-movieTitle-"],
-[class*="CalendarEvent-movieInfo-"] {
- color: #fff !important;
+[class*="CalendarEvent-missing-"].colorImpaired,
+[class*="CalendarEvent-missingMonitored-"].colorImpaired {
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-missing) / .2), rgb(var(--calendar-missing) / .2) 5px, rgb(var(--calendar-missing) / .4) 5px, rgb(var(--calendar-missing) / .4) 10px) !important;
}
-[class*="CalendarEventGroup-movieTitle-"] {
- color: var(--text-hover) !important;
+[class*="CalendarEvent-missingUnmonitored-"].colorImpaired {
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-missing-unmonitored) / .2), rgb(var(--calendar-missing-unmonitored) / .2) 5px, rgb(var(--calendar-missing-unmonitored) / .4) 5px, rgb(var(--calendar-missing-unmonitored) / .4) 10px) !important;
}
/* Custom filter */
diff --git a/css/base/readarr/readarr-base.css b/css/base/readarr/readarr-base.css
index 4d165ec910..58b999c5f1 100644
--- a/css/base/readarr/readarr-base.css
+++ b/css/base/readarr/readarr-base.css
@@ -207,57 +207,6 @@
}
/* CALENDAR */
-[class*="CalendarEvent-downloaded-"]:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-downloaded) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-downloaded-"]:hover:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-downloaded) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-missing-"]:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-missing) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-missing-"]:hover:not([class*="AgendaEvent-"]) {
- background: rgba(var(--calendar-missing) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-unreleased-"]:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-unreleased) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-unreleased-"]:hover:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-unreleased) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-unmonitored-"]:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-unmonitored) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-unmonitored-"]:hover:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-unmonitored) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-downloading-"]:not([class*="AgendaEvent-"]),
-[class*="CalendarEvent-queue-"]:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-downloading) / .7) !important;
- border-left-color: transparent !important;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-downloading-"]:hover:not([class*="AgendaEvent-"]),
-[class*="Calendar-calendar-"] [class*="CalendarEvent-queue-"]:hover:not([class*="AgendaEvent-"]) {
- background: rgb(var(--calendar-downloading) / .5) !important;
- border-left-color: transparent !important;
-}
[class*="CalendarEvent-authorName-"] a,
[class*="CalendarEvent-authorName-"],
@@ -271,6 +220,19 @@ color: #eee !important;
color: #fff !important;
}
+/* Color Impaired Mode */
+[class*="CalendarEvent-unmonitored-"].colorImpaired {
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-unmonitored) / .2), rgb(var(--calendar-unmonitored) / .2) 5px, rgb(var(--calendar-unmonitored) / .4) 5px, rgb(var(--calendar-unmonitored) / .4) 10px) !important;
+}
+
+[class*="CalendarEvent-missing-"].colorImpaired{
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-missing) / .2), rgb(var(--calendar-missing) / .2) 5px, rgb(var(--calendar-missing) / .4) 5px, rgb(var(--calendar-missing) / .4) 10px) !important;
+}
+
+[class*="CalendarEvent-unreleased-"].colorImpaired{
+ background: repeating-linear-gradient(90deg, rgb(var(--calendar-unreleased) / .2), rgb(var(--calendar-unreleased) / .2) 5px, rgb(var(--calendar-unreleased) / .4) 5px, rgb(var(--calendar-unreleased) / .4) 10px) !important;
+}
+
/* Library */
[class*="AuthorIndexPoster-link-"],
[class*="AuthorIndexPoster-title-"] {
diff --git a/css/base/sonarr/sonarr-base.css b/css/base/sonarr/sonarr-base.css
index 0a2deaf29f..a48674b3dc 100644
--- a/css/base/sonarr/sonarr-base.css
+++ b/css/base/sonarr/sonarr-base.css
@@ -237,72 +237,6 @@
stroke: #fff;
}
-[class*="CalendarEvent-downloaded-"] {
- background: rgb(var(--calendar-tv-available) / .7) !important;
- border-left-color: transparent !important;
- color: #fff;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-downloaded-"]:hover {
- background: rgb(var(--calendar-tv-available) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-missing-"] {
- background: rgb(var(--calendar-tv-missing) / .7) !important;
- border-left-color: transparent !important;
- color: #fff;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-missing-"]:hover {
- background: rgb(var(--calendar-tv-missing) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-unaired-"] {
- background: rgb(var(--calendar-tv-unaired) / .7) !important;
- border-left-color: transparent !important;
- color: #fff;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-unaired-"]:hover {
- background: rgb(var(--calendar-tv-unaired) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-unmonitored-"] {
- background: rgb(var(--calendar-tv-unmonitored) / .7) !important;
- border-left-color: transparent !important;
- color: #fff;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-unmonitored-"]:hover {
- background: rgb(var(--calendar-tv-unmonitored) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-onAir-"] {
- background: rgb(var(--calendar-tv-on-air) / .7) !important;
- border-left-color: transparent !important;
- color: #fff;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-onAir-"]:hover {
- background: rgb(var(--calendar-tv-on-air) / .5) !important;
- border-left-color: transparent !important;
-}
-
-[class*="CalendarEvent-downloading-"] {
- background: rgb(var(--calendar-tv-downloading) / .7) !important;
- border-left-color: transparent !important;
- color: #fff;
-}
-
-[class*="Calendar-calendar-"] [class*="CalendarEvent-downloading-"]:hover {
- background: rgb(var(--calendar-tv-downloading) / .5) !important;
- border-left-color: transparent !important;
-}
-
[class*="CalendarEvent-seriesTitle-"],
[class*="CalendarEvent-episodeInfo-"],
[class*="CalendarEvent-airTime-"] {
diff --git a/css/base/uptime-kuma/uptime-kuma-base.css b/css/base/uptime-kuma/uptime-kuma-base.css
index 0fb36df663..68c4d34622 100644
--- a/css/base/uptime-kuma/uptime-kuma-base.css
+++ b/css/base/uptime-kuma/uptime-kuma-base.css
@@ -1,5 +1,39 @@
-@import url("/css/defaults/placeholders.css");
+/* @import url("/css/defaults/placeholders.css"); */
@import url("/css/defaults/transparent.css");
+ *:not(#floatingInput)::-webkit-input-placeholder {
+ color: var(--text-muted) !important;
+ }
+
+ *:not(#floatingInput):focus::-webkit-input-placeholder {
+ color: var(--text-hover) !important;
+ }
+
+ /* Firefox < 19 */
+ *:not(#floatingInput):-moz-placeholder {
+ color: var(--text-muted) !important;
+ }
+
+ *:not(#floatingInput):focus:-moz-placeholder {
+ color: var(--text-hover) !important;
+ }
+
+ /* Firefox > 19 */
+ *:not(#floatingInput)::-moz-placeholder {
+ color: var(--text-muted) !important;
+ }
+
+ *:not(#floatingInput):focus::-moz-placeholder {
+ color: var(--text-hover) !important;
+ }
+
+ /* Internet Explorer 10 */
+ *:not(#floatingInput):-ms-input-placeholder {
+ color: var(--text-muted) !important;
+ }
+
+ *:not(#floatingInput):focus:-ms-input-placeholder {
+ color: var(--text-hover) !important;
+ }
body,
.dark {
diff --git a/css/community-theme-options/ibracorp.css b/css/community-theme-options/ibracorp.css
new file mode 100644
index 0000000000..0757f163ac
--- /dev/null
+++ b/css/community-theme-options/ibracorp.css
@@ -0,0 +1,31 @@
+:root {
+ --main-bg-color: #262a2b;
+
+ --modal-bg-color: #333;
+ --modal-header-color: #232323;
+ --modal-footer-color: #232323;
+
+ --drop-down-menu-bg: #1b1b1b;
+
+ --button-color: #ef7a70;
+ --button-color-hover: #d16057;
+ --button-text: #eee;
+ --button-text-hover: #fff;
+
+ --accent-color: 239, 122, 112;
+ --accent-color-hover: rgb(var(--accent-color),.8);
+ --link-color: #ef7a70;
+ --link-color-hover: #d16057;
+ --label-text-color: #fff;
+
+ --text:#d16057;
+ --text-hover: #fff;
+ --text-muted: #999;
+
+ /*Specials*/
+ --arr-queue-color: #d16057; /* Servarr apps + Bazarr*/
+ --plex-poster-unwatched: #d16057;
+ --petio-spinner: invert(55%) sepia(68%) saturate(569%) hue-rotate(314deg) brightness(102%) contrast(87%);/* Made with https://codepen.io/jsm91/embed/ZEEawyZ */
+ --gitea-color-primary-dark-4: 239, 122, 112;
+ --overseerr-gradient: linear-gradient(180deg, rgba(31, 31, 31, 0.17) 0%, rgba(31, 31, 31) 100%);
+}
diff --git a/docker-mods/bazarr/root/etc/cont-init.d/98-themepark b/docker-mods/bazarr/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
diff --git a/docker-mods/calibre-web/root/etc/cont-init.d/98-themepark b/docker-mods/calibre-web/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 19b1417e5e..417aa90d55
--- a/docker-mods/calibre-web/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/calibre-web/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '--------------------------------'
echo '| Calibre-web theme.park Mod |'
diff --git a/docker-mods/deluge/root/etc/cont-init.d/98-themepark b/docker-mods/deluge/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 927744608a..9e491d444d
--- a/docker-mods/deluge/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/deluge/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------'
echo '| Deluge theme.park Mod |'
diff --git a/docker-mods/duplicati/root/etc/cont-init.d/98-themepark b/docker-mods/duplicati/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 1c1fa3edf3..ba0c0be308
--- a/docker-mods/duplicati/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/duplicati/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '----------------------------'
echo '| Duplicati theme.park Mod |'
diff --git a/docker-mods/emby/root/etc/cont-init.d/98-themepark b/docker-mods/emby/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
diff --git a/docker-mods/jackett/root/etc/cont-init.d/98-themepark b/docker-mods/jackett/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index abaf1b50c9..b55f4b7620
--- a/docker-mods/jackett/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/jackett/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------'
echo '| Jackett theme.park Mod |'
diff --git a/docker-mods/jellyfin/root/etc/cont-init.d/98-themepark b/docker-mods/jellyfin/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 18e53c79d0..fd4b5acdc0
--- a/docker-mods/jellyfin/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/jellyfin/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '-----------------------------'
echo '| Jellyfin theme.park Mod |'
diff --git a/docker-mods/lazylibrarian/root/etc/cont-init.d/98-themepark b/docker-mods/lazylibrarian/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index d871413187..026eac1fda
--- a/docker-mods/lazylibrarian/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/lazylibrarian/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '----------------------------------'
echo '| Lazylibrarian theme.park Mod |'
diff --git a/docker-mods/librespeed/root/etc/cont-init.d/98-themepark b/docker-mods/librespeed/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index ebcd5445ad..a89ea834ec
--- a/docker-mods/librespeed/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/librespeed/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '-------------------------------'
echo '| Librespeed theme.park Mod |'
@@ -43,8 +43,8 @@ if ! grep -q "${TP_DOMAIN}/css/base" /app/www/public/index.html; then
echo '---------------------------'
echo '| Adding the stylesheet |'
echo '---------------------------'
- sed -i "s/<\/head>/<\/head> /g" /usr/share/webapps/librespeed/index.html
- sed -i "s/<\/head>/<\/head> /g" /usr/share/webapps/librespeed/index.html
+ sed -i "s/<\/head>/<\/head> /g" /app/www/public/index.html
+ sed -i "s/<\/head>/<\/head> /g" /app/www/public/index.html
printf 'Stylesheet set to %s\n' "${TP_THEME}
"
fi
\ No newline at end of file
diff --git a/docker-mods/librespeed/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run b/docker-mods/librespeed/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run
index ebcd5445ad..6a46fa2088 100755
--- a/docker-mods/librespeed/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run
+++ b/docker-mods/librespeed/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run
@@ -43,8 +43,8 @@ if ! grep -q "${TP_DOMAIN}/css/base" /app/www/public/index.html; then
echo '---------------------------'
echo '| Adding the stylesheet |'
echo '---------------------------'
- sed -i "s/<\/head>/<\/head> /g" /usr/share/webapps/librespeed/index.html
- sed -i "s/<\/head>/<\/head> /g" /usr/share/webapps/librespeed/index.html
+ sed -i "s/<\/head>/<\/head> /g" /app/www/public/index.html
+ sed -i "s/<\/head>/<\/head> /g" /app/www/public/index.html
printf 'Stylesheet set to %s\n' "${TP_THEME}
"
fi
\ No newline at end of file
diff --git a/docker-mods/lidarr/root/etc/cont-init.d/98-themepark b/docker-mods/lidarr/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 0b1471c20f..c27cd010cb
--- a/docker-mods/lidarr/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/lidarr/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------'
echo '| Lidarr theme.park Mod |'
diff --git a/docker-mods/mylar3/root/etc/cont-init.d/98-themepark b/docker-mods/mylar3/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 657326909d..473553df37
--- a/docker-mods/mylar3/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/mylar3/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '-------------------------'
echo '| Mylar3 theme.park Mod |'
diff --git a/docker-mods/nginx-proxy-manager/root/etc/cont-init.d/98-themepark b/docker-mods/nginx-proxy-manager/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
diff --git a/docker-mods/nzbget/root/etc/cont-init.d/98-themepark b/docker-mods/nzbget/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 3e94d1e184..b119672b8a
--- a/docker-mods/nzbget/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/nzbget/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------'
echo '| NZBGet theme.park Mod |'
diff --git a/docker-mods/plex/root/etc/cont-init.d/98-themepark b/docker-mods/plex/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 4d042c9a40..ba87314a2f
--- a/docker-mods/plex/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/plex/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '-------------------------'
echo '| Plex theme.park Mod |'
diff --git a/docker-mods/prowlarr/root/etc/cont-init.d/98-themepark b/docker-mods/prowlarr/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 37afbbbd39..24aa5eca15
--- a/docker-mods/prowlarr/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/prowlarr/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------'
echo '| Prowlarr theme.park Mod |'
diff --git a/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark b/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index f2bde82d20..e7a8df69c2
--- a/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '------------------------------'
echo '| qBittorrent theme.park Mod |'
@@ -92,8 +92,6 @@ fi
sed_file(){
sed -i "s/<\/body>/<\/body> /g" $1
sed -i "s/<\/body>/<\/body> /g" $1
- sed -i "s/<\/head>/<\/head> /g" $1
- sed -i "s/<\/head>/<\/head> /g" $1
printf 'Stylesheet set to %s on %s\n\n' "${TP_THEME}" "$1"
}
diff --git a/docker-mods/qbittorrent/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run b/docker-mods/qbittorrent/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run
index f830a82544..76305fd545 100755
--- a/docker-mods/qbittorrent/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run
+++ b/docker-mods/qbittorrent/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run
@@ -79,8 +79,6 @@ fi
sed_file(){
sed -i "s/<\/body>/<\/body> /g" $1
sed -i "s/<\/body>/<\/body> /g" $1
- sed -i "s/<\/head>/<\/head> /g" $1
- sed -i "s/<\/head>/<\/head> /g" $1
printf 'Stylesheet set to %s on %s\n\n' "${TP_THEME}" "$1"
}
diff --git a/docker-mods/radarr/root/etc/cont-init.d/98-themepark b/docker-mods/radarr/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 4051c1fdf5..6c4e634dff
--- a/docker-mods/radarr/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/radarr/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------'
echo '| Radarr theme.park Mod |'
diff --git a/docker-mods/readarr/root/etc/cont-init.d/98-themepark b/docker-mods/readarr/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 28f2b78d1d..1918574025
--- a/docker-mods/readarr/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/readarr/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------'
echo '| Readarr theme.park Mod |'
diff --git a/docker-mods/rutorrent/root/etc/cont-init.d/98-themepark b/docker-mods/rutorrent/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
diff --git a/docker-mods/sabnzbd/root/etc/cont-init.d/98-themepark b/docker-mods/sabnzbd/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 129cf6ea7d..0a26ad1359
--- a/docker-mods/sabnzbd/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/sabnzbd/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '----------------------------'
echo '| SABnzbd theme.park Mod |'
diff --git a/docker-mods/sonarr/root/etc/cont-init.d/98-themepark b/docker-mods/sonarr/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 636eb2ae4c..31c35abc23
--- a/docker-mods/sonarr/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/sonarr/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------'
echo '| Sonarr theme.park Mod |'
diff --git a/docker-mods/synclounge/root/etc/cont-init.d/98-themepark b/docker-mods/synclounge/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 1b0a160ed7..e656a2e668
--- a/docker-mods/synclounge/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/synclounge/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '-------------------------------'
echo '| Synclounge theme.park Mod |'
diff --git a/docker-mods/tautulli/root/etc/cont-init.d/98-themepark b/docker-mods/tautulli/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 4013d7067d..62d531872d
--- a/docker-mods/tautulli/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/tautulli/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '-----------------------------'
echo '| Tautulli theme.park Mod |'
diff --git a/docker-mods/thelounge/root/etc/cont-init.d/98-themepark b/docker-mods/thelounge/root/etc/cont-init.d/98-themepark
index 96bc372bc5..ff368b0887 100644
--- a/docker-mods/thelounge/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/thelounge/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '-------------------------------'
echo '| The Lounge theme.park Mod |'
diff --git a/docker-mods/transmission/root/etc/cont-init.d/98-themepark b/docker-mods/transmission/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 45c279630d..e94de6ea29
--- a/docker-mods/transmission/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/transmission/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '---------------------------------'
echo '| Transmission theme.park Mod |'
diff --git a/docker-mods/vuetorrent/root/etc/cont-init.d/98-themepark b/docker-mods/vuetorrent/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index d0cb898142..3124bd4dbc
--- a/docker-mods/vuetorrent/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/vuetorrent/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
APP_FILEPATH='/config/qBittorrent/qBittorrent.conf'
INDEX_FILEPATH='/vuetorrent/public/index.html'
if [ "${TP_HOTIO}" = true ]; then
diff --git a/docker-mods/whisparr/root/etc/cont-init.d/98-themepark b/docker-mods/whisparr/root/etc/cont-init.d/98-themepark
old mode 100644
new mode 100755
index 8f710aaaa6..38dacbeb42
--- a/docker-mods/whisparr/root/etc/cont-init.d/98-themepark
+++ b/docker-mods/whisparr/root/etc/cont-init.d/98-themepark
@@ -1,4 +1,4 @@
-#!/usr/bin/with-contenv bash
+#!/command/with-contenv bash
echo '-----------------------------'
echo '| Whisparr theme.park Mod |'
diff --git a/resources/blur-light-dark.png b/resources/blur-light-dark.png
index a5af8bf91f..d068bb614a 100644
Binary files a/resources/blur-light-dark.png and b/resources/blur-light-dark.png differ
diff --git a/resources/blur-light.png b/resources/blur-light.png
index c79a3188bf..44aa67b2ee 100644
Binary files a/resources/blur-light.png and b/resources/blur-light.png differ
diff --git a/resources/blur-noise.png b/resources/blur-noise.png
index 45e6761864..5e44c66451 100644
Binary files a/resources/blur-noise.png and b/resources/blur-noise.png differ
diff --git a/resources/deluge/active.png b/resources/deluge/active.png
index 582acbcf41..d8ade5102e 100644
Binary files a/resources/deluge/active.png and b/resources/deluge/active.png differ
diff --git a/resources/deluge/add.png b/resources/deluge/add.png
index c2e22c33fc..deb80b8cd5 100644
Binary files a/resources/deluge/add.png and b/resources/deluge/add.png differ
diff --git a/resources/deluge/add_small.png b/resources/deluge/add_small.png
index 0c25468f5c..b794b8d717 100644
Binary files a/resources/deluge/add_small.png and b/resources/deluge/add_small.png differ
diff --git a/resources/deluge/all.png b/resources/deluge/all.png
index fff584b046..df2f9e58fe 100644
Binary files a/resources/deluge/all.png and b/resources/deluge/all.png differ
diff --git a/resources/deluge/ascending.png b/resources/deluge/ascending.png
index 70dbc14436..d33fd6af1c 100644
Binary files a/resources/deluge/ascending.png and b/resources/deluge/ascending.png differ
diff --git a/resources/deluge/bottom.png b/resources/deluge/bottom.png
index 11eb6b2c84..f900f7cfd7 100644
Binary files a/resources/deluge/bottom.png and b/resources/deluge/bottom.png differ
diff --git a/resources/deluge/checking.png b/resources/deluge/checking.png
index 4b73f81386..4171a02055 100644
Binary files a/resources/deluge/checking.png and b/resources/deluge/checking.png differ
diff --git a/resources/deluge/columns.png b/resources/deluge/columns.png
index 857042eae1..53eefa3e0d 100644
Binary files a/resources/deluge/columns.png and b/resources/deluge/columns.png differ
diff --git a/resources/deluge/connection.png b/resources/deluge/connection.png
index 4e68683d9c..4cbc724efa 100644
Binary files a/resources/deluge/connection.png and b/resources/deluge/connection.png differ
diff --git a/resources/deluge/connection_small.png b/resources/deluge/connection_small.png
index e60f265ee5..3e78ea8373 100644
Binary files a/resources/deluge/connection_small.png and b/resources/deluge/connection_small.png differ
diff --git a/resources/deluge/connections.png b/resources/deluge/connections.png
index db193df46a..74c237a95b 100644
Binary files a/resources/deluge/connections.png and b/resources/deluge/connections.png differ
diff --git a/resources/deluge/deluge.png b/resources/deluge/deluge.png
index 950d5ac1d0..e3f937b96a 100644
Binary files a/resources/deluge/deluge.png and b/resources/deluge/deluge.png differ
diff --git a/resources/deluge/descending.png b/resources/deluge/descending.png
index dda70d2023..567129c991 100644
Binary files a/resources/deluge/descending.png and b/resources/deluge/descending.png differ
diff --git a/resources/deluge/dling.png b/resources/deluge/dling.png
index 1530f89945..2cb45bf48a 100644
Binary files a/resources/deluge/dling.png and b/resources/deluge/dling.png differ
diff --git a/resources/deluge/down.png b/resources/deluge/down.png
index 96793c4a85..ada47b9319 100644
Binary files a/resources/deluge/down.png and b/resources/deluge/down.png differ
diff --git a/resources/deluge/down_small.png b/resources/deluge/down_small.png
index 99b6e15b64..0df3a30561 100644
Binary files a/resources/deluge/down_small.png and b/resources/deluge/down_small.png differ
diff --git a/resources/deluge/edit.png b/resources/deluge/edit.png
index 36220a877d..78a0b2a4dd 100644
Binary files a/resources/deluge/edit.png and b/resources/deluge/edit.png differ
diff --git a/resources/deluge/error.png b/resources/deluge/error.png
index ecd2048a90..bf369b3728 100644
Binary files a/resources/deluge/error.png and b/resources/deluge/error.png differ
diff --git a/resources/deluge/file.png b/resources/deluge/file.png
index 4e02c9379f..e674f57d26 100644
Binary files a/resources/deluge/file.png and b/resources/deluge/file.png differ
diff --git a/resources/deluge/folder.png b/resources/deluge/folder.png
index 2dde716b2f..c38cb36277 100644
Binary files a/resources/deluge/folder.png and b/resources/deluge/folder.png differ
diff --git a/resources/deluge/harddrive.png b/resources/deluge/harddrive.png
index 55f98bd830..5fb8472fc8 100644
Binary files a/resources/deluge/harddrive.png and b/resources/deluge/harddrive.png differ
diff --git a/resources/deluge/help.png b/resources/deluge/help.png
index 54e8e268c7..5784eb722a 100644
Binary files a/resources/deluge/help.png and b/resources/deluge/help.png differ
diff --git a/resources/deluge/logout.png b/resources/deluge/logout.png
index 03af055ecb..780c822b91 100644
Binary files a/resources/deluge/logout.png and b/resources/deluge/logout.png differ
diff --git a/resources/deluge/move.png b/resources/deluge/move.png
index 28b385eb29..0b5baf1b6d 100644
Binary files a/resources/deluge/move.png and b/resources/deluge/move.png differ
diff --git a/resources/deluge/ok.png b/resources/deluge/ok.png
index 8405502bd5..6c7312f510 100644
Binary files a/resources/deluge/ok.png and b/resources/deluge/ok.png differ
diff --git a/resources/deluge/pause.png b/resources/deluge/pause.png
index 2ad6f8f157..3d41baf295 100644
Binary files a/resources/deluge/pause.png and b/resources/deluge/pause.png differ
diff --git a/resources/deluge/paused.png b/resources/deluge/paused.png
index e7218ff45e..8bd712b17a 100644
Binary files a/resources/deluge/paused.png and b/resources/deluge/paused.png differ
diff --git a/resources/deluge/plugin.png b/resources/deluge/plugin.png
index d02baf58a1..cf0f9cfba4 100644
Binary files a/resources/deluge/plugin.png and b/resources/deluge/plugin.png differ
diff --git a/resources/deluge/queue.png b/resources/deluge/queue.png
index 46f91fdc12..21a07d5c89 100644
Binary files a/resources/deluge/queue.png and b/resources/deluge/queue.png differ
diff --git a/resources/deluge/queued.png b/resources/deluge/queued.png
index de77d475bf..3bf6186938 100644
Binary files a/resources/deluge/queued.png and b/resources/deluge/queued.png differ
diff --git a/resources/deluge/remove.png b/resources/deluge/remove.png
index 8d20479aef..01cb61372a 100644
Binary files a/resources/deluge/remove.png and b/resources/deluge/remove.png differ
diff --git a/resources/deluge/remove_small.png b/resources/deluge/remove_small.png
index 25fc2175d1..32d412e025 100644
Binary files a/resources/deluge/remove_small.png and b/resources/deluge/remove_small.png differ
diff --git a/resources/deluge/resume.png b/resources/deluge/resume.png
index a05d0c01c5..4ec94fe1d1 100644
Binary files a/resources/deluge/resume.png and b/resources/deluge/resume.png differ
diff --git a/resources/deluge/resume_small.png b/resources/deluge/resume_small.png
index dde670a9bd..38ba5c2ada 100644
Binary files a/resources/deluge/resume_small.png and b/resources/deluge/resume_small.png differ
diff --git a/resources/deluge/search.png b/resources/deluge/search.png
index 3a4994fdae..f6340867d9 100644
Binary files a/resources/deluge/search.png and b/resources/deluge/search.png differ
diff --git a/resources/deluge/settings.png b/resources/deluge/settings.png
index 60e13abacf..1f1bd03843 100644
Binary files a/resources/deluge/settings.png and b/resources/deluge/settings.png differ
diff --git a/resources/deluge/settings_small.png b/resources/deluge/settings_small.png
index 305a63ecfb..bd0dfb36e5 100644
Binary files a/resources/deluge/settings_small.png and b/resources/deluge/settings_small.png differ
diff --git a/resources/deluge/top.png b/resources/deluge/top.png
index 941313f945..2c3bc93775 100644
Binary files a/resources/deluge/top.png and b/resources/deluge/top.png differ
diff --git a/resources/deluge/uling.png b/resources/deluge/uling.png
index fbb557765c..5ea0923202 100644
Binary files a/resources/deluge/uling.png and b/resources/deluge/uling.png differ
diff --git a/resources/deluge/up.png b/resources/deluge/up.png
index 2a2d3ad953..0641757f5b 100644
Binary files a/resources/deluge/up.png and b/resources/deluge/up.png differ
diff --git a/resources/deluge/up_small.png b/resources/deluge/up_small.png
index 6ec0ec06d6..16a525db61 100644
Binary files a/resources/deluge/up_small.png and b/resources/deluge/up_small.png differ
diff --git a/resources/deluge/update.png b/resources/deluge/update.png
index abab2f7453..74088e7d38 100644
Binary files a/resources/deluge/update.png and b/resources/deluge/update.png differ
diff --git a/resources/duplicati/about.png b/resources/duplicati/about.png
index 5779ca7c70..885e74975a 100644
Binary files a/resources/duplicati/about.png and b/resources/duplicati/about.png differ
diff --git a/resources/duplicati/add.png b/resources/duplicati/add.png
index e073581685..b42101f8bb 100644
Binary files a/resources/duplicati/add.png and b/resources/duplicati/add.png differ
diff --git a/resources/duplicati/home.png b/resources/duplicati/home.png
index 637da01ea5..0225acc05a 100644
Binary files a/resources/duplicati/home.png and b/resources/duplicati/home.png differ
diff --git a/resources/duplicati/logout.png b/resources/duplicati/logout.png
index 931dcdeabb..2e73731c10 100644
Binary files a/resources/duplicati/logout.png and b/resources/duplicati/logout.png differ
diff --git a/resources/duplicati/pause.png b/resources/duplicati/pause.png
index be62518e4c..5e49fe745b 100644
Binary files a/resources/duplicati/pause.png and b/resources/duplicati/pause.png differ
diff --git a/resources/duplicati/restore.png b/resources/duplicati/restore.png
index 60971613e4..66bfc89b68 100644
Binary files a/resources/duplicati/restore.png and b/resources/duplicati/restore.png differ
diff --git a/resources/duplicati/settings.png b/resources/duplicati/settings.png
index e897fdea2e..c273346a05 100644
Binary files a/resources/duplicati/settings.png and b/resources/duplicati/settings.png differ
diff --git a/resources/duplicati/throttle.png b/resources/duplicati/throttle.png
index 678d3f5934..ac296d2ffd 100644
Binary files a/resources/duplicati/throttle.png and b/resources/duplicati/throttle.png differ
diff --git a/resources/guacamole/checkmark.png b/resources/guacamole/checkmark.png
index a578339f99..7dcfac1d52 100644
Binary files a/resources/guacamole/checkmark.png and b/resources/guacamole/checkmark.png differ
diff --git a/resources/guacamole/cog.png b/resources/guacamole/cog.png
index a051a978a4..88e34c5bb3 100644
Binary files a/resources/guacamole/cog.png and b/resources/guacamole/cog.png differ
diff --git a/resources/guacamole/guac-config-dark.png b/resources/guacamole/guac-config-dark.png
index 450030d74f..cab7450244 100644
Binary files a/resources/guacamole/guac-config-dark.png and b/resources/guacamole/guac-config-dark.png differ
diff --git a/resources/guacamole/guac-first-page.png b/resources/guacamole/guac-first-page.png
index 90b4db5b75..569e1cb814 100644
Binary files a/resources/guacamole/guac-first-page.png and b/resources/guacamole/guac-first-page.png differ
diff --git a/resources/guacamole/guac-home-dark.png b/resources/guacamole/guac-home-dark.png
index ff05f799a7..9075119e82 100644
Binary files a/resources/guacamole/guac-home-dark.png and b/resources/guacamole/guac-home-dark.png differ
diff --git a/resources/guacamole/guac-last-page.png b/resources/guacamole/guac-last-page.png
index 78422f2b19..b1dc8caef2 100644
Binary files a/resources/guacamole/guac-last-page.png and b/resources/guacamole/guac-last-page.png differ
diff --git a/resources/guacamole/guac-logout-dark.png b/resources/guacamole/guac-logout-dark.png
index deb97f3237..406612e5ef 100644
Binary files a/resources/guacamole/guac-logout-dark.png and b/resources/guacamole/guac-logout-dark.png differ
diff --git a/resources/guacamole/guac-monitor.png b/resources/guacamole/guac-monitor.png
index 49104942e8..de98f241c4 100644
Binary files a/resources/guacamole/guac-monitor.png and b/resources/guacamole/guac-monitor.png differ
diff --git a/resources/guacamole/guac-text.png b/resources/guacamole/guac-text.png
index 16d674e7e9..977b1f8d23 100644
Binary files a/resources/guacamole/guac-text.png and b/resources/guacamole/guac-text.png differ
diff --git a/resources/guacamole/guac-user.png b/resources/guacamole/guac-user.png
index 7bf83b08f0..9baba3712f 100644
Binary files a/resources/guacamole/guac-user.png and b/resources/guacamole/guac-user.png differ
diff --git a/resources/guacamole/lock.png b/resources/guacamole/lock.png
index 02b495dde1..0e2a68ea8c 100644
Binary files a/resources/guacamole/lock.png and b/resources/guacamole/lock.png differ
diff --git a/resources/guacamole/magnifier.png b/resources/guacamole/magnifier.png
index 9cdfa0b8e6..480e967af3 100644
Binary files a/resources/guacamole/magnifier.png and b/resources/guacamole/magnifier.png differ
diff --git a/resources/landing-page/assets/img/aquamarine-small.jpg b/resources/landing-page/assets/img/aquamarine-small.jpg
index afc304064c..a11df2ee8f 100644
Binary files a/resources/landing-page/assets/img/aquamarine-small.jpg and b/resources/landing-page/assets/img/aquamarine-small.jpg differ
diff --git a/resources/landing-page/assets/img/aquamarine.png b/resources/landing-page/assets/img/aquamarine.png
index e32584b9a6..6904472a88 100644
Binary files a/resources/landing-page/assets/img/aquamarine.png and b/resources/landing-page/assets/img/aquamarine.png differ
diff --git a/resources/landing-page/assets/img/dark-small.jpg b/resources/landing-page/assets/img/dark-small.jpg
index a35e1d1743..133befd662 100644
Binary files a/resources/landing-page/assets/img/dark-small.jpg and b/resources/landing-page/assets/img/dark-small.jpg differ
diff --git a/resources/landing-page/assets/img/dark.png b/resources/landing-page/assets/img/dark.png
index 73bf8563b1..1412fe887f 100644
Binary files a/resources/landing-page/assets/img/dark.png and b/resources/landing-page/assets/img/dark.png differ
diff --git a/resources/landing-page/assets/img/dracula-small.jpg b/resources/landing-page/assets/img/dracula-small.jpg
index 7f2e904857..c0ac5f351f 100644
Binary files a/resources/landing-page/assets/img/dracula-small.jpg and b/resources/landing-page/assets/img/dracula-small.jpg differ
diff --git a/resources/landing-page/assets/img/hotline-small.jpg b/resources/landing-page/assets/img/hotline-small.jpg
index 68c31714ed..42eed52117 100644
Binary files a/resources/landing-page/assets/img/hotline-small.jpg and b/resources/landing-page/assets/img/hotline-small.jpg differ
diff --git a/resources/landing-page/assets/img/hotline.png b/resources/landing-page/assets/img/hotline.png
index 43a0ab5744..b138674dfe 100644
Binary files a/resources/landing-page/assets/img/hotline.png and b/resources/landing-page/assets/img/hotline.png differ
diff --git a/resources/landing-page/assets/img/hotpink-small.jpg b/resources/landing-page/assets/img/hotpink-small.jpg
index dae9d3615b..da679b8089 100644
Binary files a/resources/landing-page/assets/img/hotpink-small.jpg and b/resources/landing-page/assets/img/hotpink-small.jpg differ
diff --git a/resources/landing-page/assets/img/maroon-small.jpg b/resources/landing-page/assets/img/maroon-small.jpg
index 279bfe73ef..9c2c78cb0e 100644
Binary files a/resources/landing-page/assets/img/maroon-small.jpg and b/resources/landing-page/assets/img/maroon-small.jpg differ
diff --git a/resources/landing-page/assets/img/maroon.png b/resources/landing-page/assets/img/maroon.png
index 2c06528789..61a5e52ea8 100644
Binary files a/resources/landing-page/assets/img/maroon.png and b/resources/landing-page/assets/img/maroon.png differ
diff --git a/resources/landing-page/assets/img/nord-small.jpg b/resources/landing-page/assets/img/nord-small.jpg
index 67350871cf..965fbeac72 100644
Binary files a/resources/landing-page/assets/img/nord-small.jpg and b/resources/landing-page/assets/img/nord-small.jpg differ
diff --git a/resources/landing-page/assets/img/nord.png b/resources/landing-page/assets/img/nord.png
index a3aa1cde30..149c539abb 100644
Binary files a/resources/landing-page/assets/img/nord.png and b/resources/landing-page/assets/img/nord.png differ
diff --git a/resources/landing-page/assets/img/organizr-small.jpg b/resources/landing-page/assets/img/organizr-small.jpg
index a22e6f2b9c..31b80dc3a1 100644
Binary files a/resources/landing-page/assets/img/organizr-small.jpg and b/resources/landing-page/assets/img/organizr-small.jpg differ
diff --git a/resources/landing-page/assets/img/organizr.png b/resources/landing-page/assets/img/organizr.png
index 5e63842761..c53a71ac7e 100644
Binary files a/resources/landing-page/assets/img/organizr.png and b/resources/landing-page/assets/img/organizr.png differ
diff --git a/resources/landing-page/assets/img/overseerr-small.jpg b/resources/landing-page/assets/img/overseerr-small.jpg
index a0df0d5aba..ec73ca29a0 100644
Binary files a/resources/landing-page/assets/img/overseerr-small.jpg and b/resources/landing-page/assets/img/overseerr-small.jpg differ
diff --git a/resources/landing-page/assets/img/overseerr.png b/resources/landing-page/assets/img/overseerr.png
index de685d62e8..502e578a40 100644
Binary files a/resources/landing-page/assets/img/overseerr.png and b/resources/landing-page/assets/img/overseerr.png differ
diff --git a/resources/landing-page/assets/img/plex-small.jpg b/resources/landing-page/assets/img/plex-small.jpg
index 465f8863ca..e3b4b56d90 100644
Binary files a/resources/landing-page/assets/img/plex-small.jpg and b/resources/landing-page/assets/img/plex-small.jpg differ
diff --git a/resources/landing-page/assets/img/plex.png b/resources/landing-page/assets/img/plex.png
index 9408aa8279..5ea51a6b81 100644
Binary files a/resources/landing-page/assets/img/plex.png and b/resources/landing-page/assets/img/plex.png differ
diff --git a/resources/landing-page/assets/img/slides/1.jpg b/resources/landing-page/assets/img/slides/1.jpg
index 873899894a..31bd54c25b 100644
Binary files a/resources/landing-page/assets/img/slides/1.jpg and b/resources/landing-page/assets/img/slides/1.jpg differ
diff --git a/resources/landing-page/assets/img/slides/10.jpg b/resources/landing-page/assets/img/slides/10.jpg
index 680a2076a4..b5b8875d0b 100644
Binary files a/resources/landing-page/assets/img/slides/10.jpg and b/resources/landing-page/assets/img/slides/10.jpg differ
diff --git a/resources/landing-page/assets/img/slides/11.jpg b/resources/landing-page/assets/img/slides/11.jpg
index 6338bdbc24..21238d319f 100644
Binary files a/resources/landing-page/assets/img/slides/11.jpg and b/resources/landing-page/assets/img/slides/11.jpg differ
diff --git a/resources/landing-page/assets/img/slides/12.jpg b/resources/landing-page/assets/img/slides/12.jpg
index 0a213b3ac1..eb911fe56c 100644
Binary files a/resources/landing-page/assets/img/slides/12.jpg and b/resources/landing-page/assets/img/slides/12.jpg differ
diff --git a/resources/landing-page/assets/img/slides/13.jpg b/resources/landing-page/assets/img/slides/13.jpg
index 189eaa027a..bff080eb8b 100644
Binary files a/resources/landing-page/assets/img/slides/13.jpg and b/resources/landing-page/assets/img/slides/13.jpg differ
diff --git a/resources/landing-page/assets/img/slides/2.jpg b/resources/landing-page/assets/img/slides/2.jpg
index 23244f4132..254af4c5a9 100644
Binary files a/resources/landing-page/assets/img/slides/2.jpg and b/resources/landing-page/assets/img/slides/2.jpg differ
diff --git a/resources/landing-page/assets/img/slides/3.jpg b/resources/landing-page/assets/img/slides/3.jpg
index 31dac5abbd..7071a248af 100644
Binary files a/resources/landing-page/assets/img/slides/3.jpg and b/resources/landing-page/assets/img/slides/3.jpg differ
diff --git a/resources/landing-page/assets/img/slides/4.jpg b/resources/landing-page/assets/img/slides/4.jpg
index 2eaf7a7001..50b1270ef4 100644
Binary files a/resources/landing-page/assets/img/slides/4.jpg and b/resources/landing-page/assets/img/slides/4.jpg differ
diff --git a/resources/landing-page/assets/img/slides/5.jpg b/resources/landing-page/assets/img/slides/5.jpg
index 154aa13506..0c53c28724 100644
Binary files a/resources/landing-page/assets/img/slides/5.jpg and b/resources/landing-page/assets/img/slides/5.jpg differ
diff --git a/resources/landing-page/assets/img/slides/6.jpg b/resources/landing-page/assets/img/slides/6.jpg
index 5186664a1e..36118e7470 100644
Binary files a/resources/landing-page/assets/img/slides/6.jpg and b/resources/landing-page/assets/img/slides/6.jpg differ
diff --git a/resources/landing-page/assets/img/slides/7.jpg b/resources/landing-page/assets/img/slides/7.jpg
index 94cf4813c6..4dc52b463a 100644
Binary files a/resources/landing-page/assets/img/slides/7.jpg and b/resources/landing-page/assets/img/slides/7.jpg differ
diff --git a/resources/landing-page/assets/img/slides/8.jpg b/resources/landing-page/assets/img/slides/8.jpg
index c80f207ba9..fd324d6d2e 100644
Binary files a/resources/landing-page/assets/img/slides/8.jpg and b/resources/landing-page/assets/img/slides/8.jpg differ
diff --git a/resources/landing-page/assets/img/slides/9.jpg b/resources/landing-page/assets/img/slides/9.jpg
index 6ef49336a2..0a550e86ac 100644
Binary files a/resources/landing-page/assets/img/slides/9.jpg and b/resources/landing-page/assets/img/slides/9.jpg differ
diff --git a/resources/landing-page/assets/img/space-gray-small.jpg b/resources/landing-page/assets/img/space-gray-small.jpg
index 71cb998d18..737d2f7d27 100644
Binary files a/resources/landing-page/assets/img/space-gray-small.jpg and b/resources/landing-page/assets/img/space-gray-small.jpg differ
diff --git a/resources/landing-page/assets/img/space-gray.png b/resources/landing-page/assets/img/space-gray.png
index e6ed58f2fb..fae561d4f1 100644
Binary files a/resources/landing-page/assets/img/space-gray.png and b/resources/landing-page/assets/img/space-gray.png differ
diff --git a/resources/landing-page/assets/img/themepark-logo.png b/resources/landing-page/assets/img/themepark-logo.png
index 2714a5eeb2..fdb8dc7652 100644
Binary files a/resources/landing-page/assets/img/themepark-logo.png and b/resources/landing-page/assets/img/themepark-logo.png differ
diff --git a/resources/landing-page/assets/meta_image.jpg b/resources/landing-page/assets/meta_image.jpg
index a0e96ce885..55017445bb 100644
Binary files a/resources/landing-page/assets/meta_image.jpg and b/resources/landing-page/assets/meta_image.jpg differ
diff --git a/resources/logarr/increase.png b/resources/logarr/increase.png
index c602db728e..65fc0ff15d 100644
Binary files a/resources/logarr/increase.png and b/resources/logarr/increase.png differ
diff --git a/resources/mind.jpg b/resources/mind.jpg
index 5c111d4373..445c88d378 100644
Binary files a/resources/mind.jpg and b/resources/mind.jpg differ
diff --git a/resources/organizr/aquamarine/aquamarine_homepage.jpg b/resources/organizr/aquamarine/aquamarine_homepage.jpg
index b3c4e75357..c45966da44 100644
Binary files a/resources/organizr/aquamarine/aquamarine_homepage.jpg and b/resources/organizr/aquamarine/aquamarine_homepage.jpg differ
diff --git a/resources/organizr/aquamarine/aquamarine_splash.jpg b/resources/organizr/aquamarine/aquamarine_splash.jpg
index 9ccc6f9f39..d3c20e925b 100644
Binary files a/resources/organizr/aquamarine/aquamarine_splash.jpg and b/resources/organizr/aquamarine/aquamarine_splash.jpg differ
diff --git a/resources/organizr/dark/dark_homepage.jpg b/resources/organizr/dark/dark_homepage.jpg
index 62ac4843cf..a2933baf50 100644
Binary files a/resources/organizr/dark/dark_homepage.jpg and b/resources/organizr/dark/dark_homepage.jpg differ
diff --git a/resources/organizr/dark/dark_search.jpg b/resources/organizr/dark/dark_search.jpg
index d8ef96bd60..be90a63f8c 100644
Binary files a/resources/organizr/dark/dark_search.jpg and b/resources/organizr/dark/dark_search.jpg differ
diff --git a/resources/organizr/dark/dark_splash.jpg b/resources/organizr/dark/dark_splash.jpg
index 9d58f02589..9165d51e3d 100644
Binary files a/resources/organizr/dark/dark_splash.jpg and b/resources/organizr/dark/dark_splash.jpg differ
diff --git a/resources/organizr/dracula/dracula_homepage.jpg b/resources/organizr/dracula/dracula_homepage.jpg
index 15726f5186..9b83ce9514 100644
Binary files a/resources/organizr/dracula/dracula_homepage.jpg and b/resources/organizr/dracula/dracula_homepage.jpg differ
diff --git a/resources/organizr/dracula/dracula_search.jpg b/resources/organizr/dracula/dracula_search.jpg
index 6f82189bb0..b4c0e84d85 100644
Binary files a/resources/organizr/dracula/dracula_search.jpg and b/resources/organizr/dracula/dracula_search.jpg differ
diff --git a/resources/organizr/dracula/dracula_splash.jpg b/resources/organizr/dracula/dracula_splash.jpg
index f440458272..b15e7c1cd0 100644
Binary files a/resources/organizr/dracula/dracula_splash.jpg and b/resources/organizr/dracula/dracula_splash.jpg differ
diff --git a/resources/organizr/dracula/theme-park-organizr-dracula-logo.png b/resources/organizr/dracula/theme-park-organizr-dracula-logo.png
index e8fa7f93fd..d80fa58834 100644
Binary files a/resources/organizr/dracula/theme-park-organizr-dracula-logo.png and b/resources/organizr/dracula/theme-park-organizr-dracula-logo.png differ
diff --git a/resources/organizr/hotline/hotline_homepage.jpg b/resources/organizr/hotline/hotline_homepage.jpg
index ef8a07188c..66c5acb6e4 100644
Binary files a/resources/organizr/hotline/hotline_homepage.jpg and b/resources/organizr/hotline/hotline_homepage.jpg differ
diff --git a/resources/organizr/hotline/hotline_search.jpg b/resources/organizr/hotline/hotline_search.jpg
index 57f9e4e96d..bfa850e737 100644
Binary files a/resources/organizr/hotline/hotline_search.jpg and b/resources/organizr/hotline/hotline_search.jpg differ
diff --git a/resources/organizr/hotline/hotline_splash.jpg b/resources/organizr/hotline/hotline_splash.jpg
index 43cb17ea37..536171958a 100644
Binary files a/resources/organizr/hotline/hotline_splash.jpg and b/resources/organizr/hotline/hotline_splash.jpg differ
diff --git a/resources/organizr/hotline/theme-park-organizr-hotline-logo.png b/resources/organizr/hotline/theme-park-organizr-hotline-logo.png
index 51ca81cb4d..4464350867 100644
Binary files a/resources/organizr/hotline/theme-park-organizr-hotline-logo.png and b/resources/organizr/hotline/theme-park-organizr-hotline-logo.png differ
diff --git a/resources/organizr/hotpink/hotpink_homepage.jpg b/resources/organizr/hotpink/hotpink_homepage.jpg
index 40d0748385..066feaa592 100644
Binary files a/resources/organizr/hotpink/hotpink_homepage.jpg and b/resources/organizr/hotpink/hotpink_homepage.jpg differ
diff --git a/resources/organizr/hotpink/hotpink_search.jpg b/resources/organizr/hotpink/hotpink_search.jpg
index a00fe46d3e..cec4a91134 100644
Binary files a/resources/organizr/hotpink/hotpink_search.jpg and b/resources/organizr/hotpink/hotpink_search.jpg differ
diff --git a/resources/organizr/hotpink/hotpink_splash.jpg b/resources/organizr/hotpink/hotpink_splash.jpg
index da2f51cb86..40217f7368 100644
Binary files a/resources/organizr/hotpink/hotpink_splash.jpg and b/resources/organizr/hotpink/hotpink_splash.jpg differ
diff --git a/resources/organizr/hotpink/theme-park-organizr-hotpink-logo.png b/resources/organizr/hotpink/theme-park-organizr-hotpink-logo.png
index a1c7e09031..4a27494a0e 100644
Binary files a/resources/organizr/hotpink/theme-park-organizr-hotpink-logo.png and b/resources/organizr/hotpink/theme-park-organizr-hotpink-logo.png differ
diff --git a/resources/organizr/nord/nord_homepage.jpg b/resources/organizr/nord/nord_homepage.jpg
index 25fdb0c02d..06c3f27c1e 100644
Binary files a/resources/organizr/nord/nord_homepage.jpg and b/resources/organizr/nord/nord_homepage.jpg differ
diff --git a/resources/organizr/nord/nord_login.jpg b/resources/organizr/nord/nord_login.jpg
index b02d4b0cdf..87af6083b0 100644
Binary files a/resources/organizr/nord/nord_login.jpg and b/resources/organizr/nord/nord_login.jpg differ
diff --git a/resources/organizr/nord/nord_search.jpg b/resources/organizr/nord/nord_search.jpg
index 9ec0260789..159723353b 100644
Binary files a/resources/organizr/nord/nord_search.jpg and b/resources/organizr/nord/nord_search.jpg differ
diff --git a/resources/organizr/nord/nord_splash.jpg b/resources/organizr/nord/nord_splash.jpg
index 9d58f02589..9165d51e3d 100644
Binary files a/resources/organizr/nord/nord_splash.jpg and b/resources/organizr/nord/nord_splash.jpg differ
diff --git a/resources/organizr/nord/theme-park-organizr-nord-logo.png b/resources/organizr/nord/theme-park-organizr-nord-logo.png
index 61631d5748..f3f7b3a47c 100644
Binary files a/resources/organizr/nord/theme-park-organizr-nord-logo.png and b/resources/organizr/nord/theme-park-organizr-nord-logo.png differ
diff --git a/resources/organizr/onedark/onedark_homepage.jpg b/resources/organizr/onedark/onedark_homepage.jpg
index 49efb8ae76..43593eda1e 100644
Binary files a/resources/organizr/onedark/onedark_homepage.jpg and b/resources/organizr/onedark/onedark_homepage.jpg differ
diff --git a/resources/organizr/onedark/onedark_search.jpg b/resources/organizr/onedark/onedark_search.jpg
index afc41d5e2a..fb9a96f93f 100644
Binary files a/resources/organizr/onedark/onedark_search.jpg and b/resources/organizr/onedark/onedark_search.jpg differ
diff --git a/resources/organizr/onedark/theme-park-organizr-onedark-logo.png b/resources/organizr/onedark/theme-park-organizr-onedark-logo.png
index c2409dbdbf..28aab2f994 100644
Binary files a/resources/organizr/onedark/theme-park-organizr-onedark-logo.png and b/resources/organizr/onedark/theme-park-organizr-onedark-logo.png differ
diff --git a/resources/organizr/overseerr/overseerr_homepage.jpg b/resources/organizr/overseerr/overseerr_homepage.jpg
index d6995b2a42..059684a254 100644
Binary files a/resources/organizr/overseerr/overseerr_homepage.jpg and b/resources/organizr/overseerr/overseerr_homepage.jpg differ
diff --git a/resources/organizr/overseerr/overseerr_search.jpg b/resources/organizr/overseerr/overseerr_search.jpg
index b4a4518d59..b96cd7ccb5 100644
Binary files a/resources/organizr/overseerr/overseerr_search.jpg and b/resources/organizr/overseerr/overseerr_search.jpg differ
diff --git a/resources/organizr/overseerr/overseerr_splash.jpg b/resources/organizr/overseerr/overseerr_splash.jpg
index e45adc1d83..ef59e105c6 100644
Binary files a/resources/organizr/overseerr/overseerr_splash.jpg and b/resources/organizr/overseerr/overseerr_splash.jpg differ
diff --git a/resources/organizr/overseerr/theme-park-organizr-overseerr-logo.png b/resources/organizr/overseerr/theme-park-organizr-overseerr-logo.png
index 697614ba0a..77a3b3d06b 100644
Binary files a/resources/organizr/overseerr/theme-park-organizr-overseerr-logo.png and b/resources/organizr/overseerr/theme-park-organizr-overseerr-logo.png differ
diff --git a/resources/organizr/plex/plex_homepage.jpg b/resources/organizr/plex/plex_homepage.jpg
index 9fe841af85..8e8ae41df8 100644
Binary files a/resources/organizr/plex/plex_homepage.jpg and b/resources/organizr/plex/plex_homepage.jpg differ
diff --git a/resources/organizr/plex/plex_search.jpg b/resources/organizr/plex/plex_search.jpg
index 57f696c968..0e5a7f9878 100644
Binary files a/resources/organizr/plex/plex_search.jpg and b/resources/organizr/plex/plex_search.jpg differ
diff --git a/resources/organizr/plex/plex_splash.jpg b/resources/organizr/plex/plex_splash.jpg
index 7951b3abb9..67b5c069ae 100644
Binary files a/resources/organizr/plex/plex_splash.jpg and b/resources/organizr/plex/plex_splash.jpg differ
diff --git a/resources/organizr/plex/theme-park-organizr-plex-logo.png b/resources/organizr/plex/theme-park-organizr-plex-logo.png
index 7a97cb63fe..2b837178d5 100644
Binary files a/resources/organizr/plex/theme-park-organizr-plex-logo.png and b/resources/organizr/plex/theme-park-organizr-plex-logo.png differ
diff --git a/resources/organizr/spacegray/spacegray_homepage.jpg b/resources/organizr/spacegray/spacegray_homepage.jpg
index 04dc28dd9f..3e271b396c 100644
Binary files a/resources/organizr/spacegray/spacegray_homepage.jpg and b/resources/organizr/spacegray/spacegray_homepage.jpg differ
diff --git a/resources/organizr/spacegray/spacegray_search.jpg b/resources/organizr/spacegray/spacegray_search.jpg
index 970f64e09f..d807a043b3 100644
Binary files a/resources/organizr/spacegray/spacegray_search.jpg and b/resources/organizr/spacegray/spacegray_search.jpg differ
diff --git a/resources/organizr/spacegray/spacegray_splash.jpg b/resources/organizr/spacegray/spacegray_splash.jpg
index 8b82bdef92..e7db43af71 100644
Binary files a/resources/organizr/spacegray/spacegray_splash.jpg and b/resources/organizr/spacegray/spacegray_splash.jpg differ
diff --git a/resources/preset-dark2.png b/resources/preset-dark2.png
index 983f25f9f2..760351deb0 100644
Binary files a/resources/preset-dark2.png and b/resources/preset-dark2.png differ
diff --git a/resources/preset-light2.png b/resources/preset-light2.png
index fe29556abf..29bd72232c 100644
Binary files a/resources/preset-light2.png and b/resources/preset-light2.png differ
diff --git a/resources/qbittorrent/collapse-expand.gif b/resources/qbittorrent/collapse-expand.gif
index affb7d0838..1973d09f70 100644
Binary files a/resources/qbittorrent/collapse-expand.gif and b/resources/qbittorrent/collapse-expand.gif differ
diff --git a/resources/qbittorrent/dots.png b/resources/qbittorrent/dots.png
index 53d4aaa0a0..eaf1bad009 100644
Binary files a/resources/qbittorrent/dots.png and b/resources/qbittorrent/dots.png differ
diff --git a/resources/qbittorrent/folder-open-solid.svg b/resources/qbittorrent/folder-open-solid.svg
index 99d403c812..a9fab3e323 100644
--- a/resources/qbittorrent/folder-open-solid.svg
+++ b/resources/qbittorrent/folder-open-solid.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/qbittorrent/go-down.png b/resources/qbittorrent/go-down.png
index f17ad5886a..c5f9aac9d1 100644
Binary files a/resources/qbittorrent/go-down.png and b/resources/qbittorrent/go-down.png differ
diff --git a/resources/qbittorrent/inbox-solid.svg b/resources/qbittorrent/inbox-solid.svg
index 88a6908d7b..463238d21e 100644
--- a/resources/qbittorrent/inbox-solid.svg
+++ b/resources/qbittorrent/inbox-solid.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/qbittorrent/network-wired-solid.svg b/resources/qbittorrent/network-wired-solid.svg
index 35321af999..6b3339ee71 100644
--- a/resources/qbittorrent/network-wired-solid.svg
+++ b/resources/qbittorrent/network-wired-solid.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/qbittorrent/search-solid.png b/resources/qbittorrent/search-solid.png
index 2d0c9e43d1..df00022b72 100644
Binary files a/resources/qbittorrent/search-solid.png and b/resources/qbittorrent/search-solid.png differ
diff --git a/resources/reality.jpg b/resources/reality.jpg
index 1075433cf5..4f62c8a672 100644
Binary files a/resources/reality.jpg and b/resources/reality.jpg differ
diff --git a/resources/requestrr/requestrr_white.png b/resources/requestrr/requestrr_white.png
index 468c16591a..408f28909d 100644
Binary files a/resources/requestrr/requestrr_white.png and b/resources/requestrr/requestrr_white.png differ
diff --git a/resources/rutorrent/ajax-loader-small.gif b/resources/rutorrent/ajax-loader-small.gif
index bd1f6af0aa..8bba191c40 100644
Binary files a/resources/rutorrent/ajax-loader-small.gif and b/resources/rutorrent/ajax-loader-small.gif differ
diff --git a/resources/rutorrent/ajax-loader.gif b/resources/rutorrent/ajax-loader.gif
index 50d5735a23..9032e61329 100644
Binary files a/resources/rutorrent/ajax-loader.gif and b/resources/rutorrent/ajax-loader.gif differ
diff --git a/resources/rutorrent/archive.png b/resources/rutorrent/archive.png
index bb69d64eee..88e016fafc 100644
Binary files a/resources/rutorrent/archive.png and b/resources/rutorrent/archive.png differ
diff --git a/resources/rutorrent/asc.gif b/resources/rutorrent/asc.gif
index 44f5040793..aa4cfa552e 100644
Binary files a/resources/rutorrent/asc.gif and b/resources/rutorrent/asc.gif differ
diff --git a/resources/rutorrent/autodll-irc1.png b/resources/rutorrent/autodll-irc1.png
index 9ae318785e..cfa0d2b663 100644
Binary files a/resources/rutorrent/autodll-irc1.png and b/resources/rutorrent/autodll-irc1.png differ
diff --git a/resources/rutorrent/autodll-irc2.png b/resources/rutorrent/autodll-irc2.png
index 20047bb236..6895dbeb61 100644
Binary files a/resources/rutorrent/autodll-irc2.png and b/resources/rutorrent/autodll-irc2.png differ
diff --git a/resources/rutorrent/bul_f.gif b/resources/rutorrent/bul_f.gif
index f89f6af7ab..d64d6ca110 100644
Binary files a/resources/rutorrent/bul_f.gif and b/resources/rutorrent/bul_f.gif differ
diff --git a/resources/rutorrent/bul_l.gif b/resources/rutorrent/bul_l.gif
index f4db00d242..f8c10086ea 100644
Binary files a/resources/rutorrent/bul_l.gif and b/resources/rutorrent/bul_l.gif differ
diff --git a/resources/rutorrent/chat2.png b/resources/rutorrent/chat2.png
index 10a05ffed5..e96c203f11 100644
Binary files a/resources/rutorrent/chat2.png and b/resources/rutorrent/chat2.png differ
diff --git a/resources/rutorrent/chat3.png b/resources/rutorrent/chat3.png
index fca2879e81..8d747ada0d 100644
Binary files a/resources/rutorrent/chat3.png and b/resources/rutorrent/chat3.png differ
diff --git a/resources/rutorrent/close.png b/resources/rutorrent/close.png
index cba7c6ad44..058e55aeae 100644
Binary files a/resources/rutorrent/close.png and b/resources/rutorrent/close.png differ
diff --git a/resources/rutorrent/console.png b/resources/rutorrent/console.png
index 849fd496f2..c8445f0108 100644
Binary files a/resources/rutorrent/console.png and b/resources/rutorrent/console.png differ
diff --git a/resources/rutorrent/desc.gif b/resources/rutorrent/desc.gif
index 409fdc6b0d..edeb62b693 100644
Binary files a/resources/rutorrent/desc.gif and b/resources/rutorrent/desc.gif differ
diff --git a/resources/rutorrent/directory.png b/resources/rutorrent/directory.png
index b012494033..5aa333931a 100644
Binary files a/resources/rutorrent/directory.png and b/resources/rutorrent/directory.png differ
diff --git a/resources/rutorrent/dlg-autodl-irc.gif b/resources/rutorrent/dlg-autodl-irc.gif
index 3e6adb558e..3d1980fa3b 100644
Binary files a/resources/rutorrent/dlg-autodl-irc.gif and b/resources/rutorrent/dlg-autodl-irc.gif differ
diff --git a/resources/rutorrent/dlg-rssurlrewrite.gif b/resources/rutorrent/dlg-rssurlrewrite.gif
index d85a87d264..8a2c3a9713 100644
Binary files a/resources/rutorrent/dlg-rssurlrewrite.gif and b/resources/rutorrent/dlg-rssurlrewrite.gif differ
diff --git a/resources/rutorrent/dlg-toolbars.gif b/resources/rutorrent/dlg-toolbars.gif
index 5c2fa7f3a1..1dd18f8cc6 100644
Binary files a/resources/rutorrent/dlg-toolbars.gif and b/resources/rutorrent/dlg-toolbars.gif differ
diff --git a/resources/rutorrent/dropdown.png b/resources/rutorrent/dropdown.png
index 8211019564..49a032898d 100644
Binary files a/resources/rutorrent/dropdown.png and b/resources/rutorrent/dropdown.png differ
diff --git a/resources/rutorrent/go.png b/resources/rutorrent/go.png
index a4ce2a07af..9b3d582ebe 100644
Binary files a/resources/rutorrent/go.png and b/resources/rutorrent/go.png differ
diff --git a/resources/rutorrent/goh.png b/resources/rutorrent/goh.png
index 450f90ac2a..ab4a30c8cd 100644
Binary files a/resources/rutorrent/goh.png and b/resources/rutorrent/goh.png differ
diff --git a/resources/rutorrent/green.png b/resources/rutorrent/green.png
index c787db371f..cb60cdb4e5 100644
Binary files a/resources/rutorrent/green.png and b/resources/rutorrent/green.png differ
diff --git a/resources/rutorrent/header_move.gif b/resources/rutorrent/header_move.gif
index 9a245a2434..17127903b1 100644
Binary files a/resources/rutorrent/header_move.gif and b/resources/rutorrent/header_move.gif differ
diff --git a/resources/rutorrent/headers.png b/resources/rutorrent/headers.png
index c855c7f280..fca5fd46a8 100644
Binary files a/resources/rutorrent/headers.png and b/resources/rutorrent/headers.png differ
diff --git a/resources/rutorrent/image.png b/resources/rutorrent/image.png
index 3a39534a25..7c4b9ac8c0 100644
Binary files a/resources/rutorrent/image.png and b/resources/rutorrent/image.png differ
diff --git a/resources/rutorrent/linklogsh.png b/resources/rutorrent/linklogsh.png
index 439680ad56..403af215b0 100644
Binary files a/resources/rutorrent/linklogsh.png and b/resources/rutorrent/linklogsh.png differ
diff --git a/resources/rutorrent/logoff2.png b/resources/rutorrent/logoff2.png
index e5aae730b7..955cece667 100644
Binary files a/resources/rutorrent/logoff2.png and b/resources/rutorrent/logoff2.png differ
diff --git a/resources/rutorrent/menus.png b/resources/rutorrent/menus.png
index 92475fcfad..05856aef92 100644
Binary files a/resources/rutorrent/menus.png and b/resources/rutorrent/menus.png differ
diff --git a/resources/rutorrent/mp3.png b/resources/rutorrent/mp3.png
index c8fba28663..941a076ea0 100644
Binary files a/resources/rutorrent/mp3.png and b/resources/rutorrent/mp3.png differ
diff --git a/resources/rutorrent/nfo.png b/resources/rutorrent/nfo.png
index 8dcf20392e..2192618a70 100644
Binary files a/resources/rutorrent/nfo.png and b/resources/rutorrent/nfo.png differ
diff --git a/resources/rutorrent/nlb.png b/resources/rutorrent/nlb.png
index 11cac61c9c..c79be48966 100644
Binary files a/resources/rutorrent/nlb.png and b/resources/rutorrent/nlb.png differ
diff --git a/resources/rutorrent/pauseui.png b/resources/rutorrent/pauseui.png
index ccd584a343..4ce51fdcbe 100644
Binary files a/resources/rutorrent/pauseui.png and b/resources/rutorrent/pauseui.png differ
diff --git a/resources/rutorrent/pauseuih.png b/resources/rutorrent/pauseuih.png
index f1fb16139d..718d148201 100644
Binary files a/resources/rutorrent/pauseuih.png and b/resources/rutorrent/pauseuih.png differ
diff --git a/resources/rutorrent/playui.png b/resources/rutorrent/playui.png
index dd5f3a8eac..a8ddeb7af2 100644
Binary files a/resources/rutorrent/playui.png and b/resources/rutorrent/playui.png differ
diff --git a/resources/rutorrent/playuih.png b/resources/rutorrent/playuih.png
index a034fa70ad..93399c4d55 100644
Binary files a/resources/rutorrent/playuih.png and b/resources/rutorrent/playuih.png differ
diff --git a/resources/rutorrent/pluginh.png b/resources/rutorrent/pluginh.png
index 768a0946d6..bf9059b3e0 100644
Binary files a/resources/rutorrent/pluginh.png and b/resources/rutorrent/pluginh.png differ
diff --git a/resources/rutorrent/pnl_close.gif b/resources/rutorrent/pnl_close.gif
index 8468fb6810..96eeae109c 100644
Binary files a/resources/rutorrent/pnl_close.gif and b/resources/rutorrent/pnl_close.gif differ
diff --git a/resources/rutorrent/pnl_close.png b/resources/rutorrent/pnl_close.png
index c4ef069892..d19643517b 100644
Binary files a/resources/rutorrent/pnl_close.png and b/resources/rutorrent/pnl_close.png differ
diff --git a/resources/rutorrent/pnl_open.gif b/resources/rutorrent/pnl_open.gif
index 3c072f7bee..487c575e14 100644
Binary files a/resources/rutorrent/pnl_open.gif and b/resources/rutorrent/pnl_open.gif differ
diff --git a/resources/rutorrent/pnl_open.png b/resources/rutorrent/pnl_open.png
index 26326c417b..9695bd3cde 100644
Binary files a/resources/rutorrent/pnl_open.png and b/resources/rutorrent/pnl_open.png differ
diff --git a/resources/rutorrent/proxy.png b/resources/rutorrent/proxy.png
index 6177430cf6..ea1d6fc6c2 100644
Binary files a/resources/rutorrent/proxy.png and b/resources/rutorrent/proxy.png differ
diff --git a/resources/rutorrent/proxyh.png b/resources/rutorrent/proxyh.png
index 15699ce23c..ac8ef49947 100644
Binary files a/resources/rutorrent/proxyh.png and b/resources/rutorrent/proxyh.png differ
diff --git a/resources/rutorrent/r_bg.gif b/resources/rutorrent/r_bg.gif
index 5103c654cb..1f265889c2 100644
Binary files a/resources/rutorrent/r_bg.gif and b/resources/rutorrent/r_bg.gif differ
diff --git a/resources/rutorrent/refresh.png b/resources/rutorrent/refresh.png
index bd8d5525d1..c81818ff3f 100644
Binary files a/resources/rutorrent/refresh.png and b/resources/rutorrent/refresh.png differ
diff --git a/resources/rutorrent/refreshui.png b/resources/rutorrent/refreshui.png
index e396b4a436..39b3638d80 100644
Binary files a/resources/rutorrent/refreshui.png and b/resources/rutorrent/refreshui.png differ
diff --git a/resources/rutorrent/refreshuih.png b/resources/rutorrent/refreshuih.png
index b72ec9f8b7..9628dc2db7 100644
Binary files a/resources/rutorrent/refreshuih.png and b/resources/rutorrent/refreshuih.png differ
diff --git a/resources/rutorrent/s.gif b/resources/rutorrent/s.gif
index 46b0319faa..a94f3cc1c5 100644
Binary files a/resources/rutorrent/s.gif and b/resources/rutorrent/s.gif differ
diff --git a/resources/rutorrent/s_bg.gif b/resources/rutorrent/s_bg.gif
index 5103c654cb..1f265889c2 100644
Binary files a/resources/rutorrent/s_bg.gif and b/resources/rutorrent/s_bg.gif differ
diff --git a/resources/rutorrent/seedboxmanager.png b/resources/rutorrent/seedboxmanager.png
index fb3512129d..adf3485f0b 100644
Binary files a/resources/rutorrent/seedboxmanager.png and b/resources/rutorrent/seedboxmanager.png differ
diff --git a/resources/rutorrent/seedboxmanagerh.png b/resources/rutorrent/seedboxmanagerh.png
index 851d4be894..b60cf55a38 100644
Binary files a/resources/rutorrent/seedboxmanagerh.png and b/resources/rutorrent/seedboxmanagerh.png differ
diff --git a/resources/rutorrent/share.png b/resources/rutorrent/share.png
index 0900d663fd..4ebf6ed5f4 100644
Binary files a/resources/rutorrent/share.png and b/resources/rutorrent/share.png differ
diff --git a/resources/rutorrent/status.png b/resources/rutorrent/status.png
index 24c8cfccf2..56d37f4b85 100644
Binary files a/resources/rutorrent/status.png and b/resources/rutorrent/status.png differ
diff --git a/resources/rutorrent/status_icons.png b/resources/rutorrent/status_icons.png
index 76d974ac0c..c55e504885 100644
Binary files a/resources/rutorrent/status_icons.png and b/resources/rutorrent/status_icons.png differ
diff --git a/resources/rutorrent/t_bg.gif b/resources/rutorrent/t_bg.gif
index 2c403b84e7..a798978363 100644
Binary files a/resources/rutorrent/t_bg.gif and b/resources/rutorrent/t_bg.gif differ
diff --git a/resources/rutorrent/tb_bg.gif b/resources/rutorrent/tb_bg.gif
index 43faede353..0ad843c41a 100644
Binary files a/resources/rutorrent/tb_bg.gif and b/resources/rutorrent/tb_bg.gif differ
diff --git a/resources/rutorrent/text.png b/resources/rutorrent/text.png
index d2970e07de..4ee87b0a7f 100644
Binary files a/resources/rutorrent/text.png and b/resources/rutorrent/text.png differ
diff --git a/resources/rutorrent/toolbar.png b/resources/rutorrent/toolbar.png
index b5f15553d7..a57d8843f7 100644
Binary files a/resources/rutorrent/toolbar.png and b/resources/rutorrent/toolbar.png differ
diff --git a/resources/rutorrent/torrent.png b/resources/rutorrent/torrent.png
index baf4d069e5..cc16fda554 100644
Binary files a/resources/rutorrent/torrent.png and b/resources/rutorrent/torrent.png differ
diff --git a/resources/rutorrent/up.png b/resources/rutorrent/up.png
index 5d327f3d4c..d3d0b47b3d 100644
Binary files a/resources/rutorrent/up.png and b/resources/rutorrent/up.png differ
diff --git a/resources/rutorrent/video.png b/resources/rutorrent/video.png
index 855604a85d..d1ce61204d 100644
Binary files a/resources/rutorrent/video.png and b/resources/rutorrent/video.png differ
diff --git a/resources/soul.jpg b/resources/soul.jpg
index 89882b3184..eff2f87acc 100644
Binary files a/resources/soul.jpg and b/resources/soul.jpg differ
diff --git a/resources/space.jpg b/resources/space.jpg
index b443a38b76..8518b863bc 100644
Binary files a/resources/space.jpg and b/resources/space.jpg differ
diff --git a/resources/time.jpg b/resources/time.jpg
index 3bc22105ff..764a9929fd 100644
Binary files a/resources/time.jpg and b/resources/time.jpg differ
diff --git a/resources/transmission/icons.png b/resources/transmission/icons.png
index 0229df48df..24a2af1d6a 100644
Binary files a/resources/transmission/icons.png and b/resources/transmission/icons.png differ