Compare commits

..

13 Commits

Author SHA1 Message Date
Marius
bb0cfdc937 readme fix 2020-11-30 17:15:53 +01:00
gilbN
bec0d6750a lidarr protocol fix 2020-11-28 21:28:52 +01:00
Marius
518e856b59 unwatched colors 2020-11-28 02:12:35 +01:00
Marius
4568d6c24e more screenshots 2020-11-18 21:41:09 +01:00
Marius
61b6641577 jackett and synclounge fixes 2020-11-17 22:33:33 +01:00
Marius
6905bee1b6 screenshots 2020-11-17 22:33:15 +01:00
Marius
7ba2748c1f sabnzbd wizard fix, and screenshots 2020-11-17 21:17:04 +01:00
Marius
0f7dde2184 some screenshots 2020-11-16 22:54:37 +01:00
Marius
64eb8d3dbf Merge branch 'master' of https://github.com/gilbN/theme.park 2020-11-16 21:41:16 +01:00
Marius
9ab29f26b4 couple of gitea fixes 2020-11-16 21:41:08 +01:00
GilbN
5243409f2e
Update README.md 2020-11-15 19:23:23 +01:00
Marius
1eb224d3b1 gitea input hover fix 2020-11-14 17:07:40 +01:00
Marius
3014a263c8 gitea text fixes 2020-11-14 16:40:12 +01:00
63 changed files with 129 additions and 286 deletions

View File

@ -225,10 +225,22 @@ b:hover,
background: rgb(255 255 255 / 8%) !important; background: rgb(255 255 255 / 8%) !important;
} }
.ui.attached.segment, .ui.segment, .ui.segments {
background: transparent;
color: var(--text) !important;
border-color: rgba(255, 255, 255, 0.1);
}
.ui .info.segment.top { .ui .info.segment.top {
background-color: rgb(0 0 0 / 15%) !important; background-color: rgb(0 0 0 / 15%) !important;
color: var(--text);
}
.ui.attached.info.message, .ui.info.message {
box-shadow: inset 0 0 0 1px rgb(255 255 255 / 10%), 0 0 0 0 transparent;
}
.ui.info.message {
background-color: rgb(255 255 255 / 8%);
color: #276f86;
} }
.ui.attached.header { .ui.attached.header {
background: rgb(0 0 0 / 25%); background: rgb(0 0 0 / 25%);
border: 1px solid transparent; border: 1px solid transparent;
@ -571,7 +583,12 @@ svg.vch__wrapper rect.vch__day__square[data-v-a9cfea66]:hover {
.repository .diff-file-box .code-diff-unified tbody tr.add-code td.lines-num { .repository .diff-file-box .code-diff-unified tbody tr.add-code td.lines-num {
background-color: #2c4632 !important background-color: #2c4632 !important
} }
.repository.view.issue .comment-list .comment .comment-container {
border: 1px solid rgba(255, 255, 255, 0.1);
}
.comment-header {
border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.removed-code { .removed-code {
background-color: #5f3737 background-color: #5f3737
} }
@ -795,7 +812,8 @@ td.blob-excerpt {
background: rgba(0, 0, 0, .25); background: rgba(0, 0, 0, .25);
} }
.editor-toolbar a { .editor-toolbar a,
.editor-toolbar button {
color: #ffffff !important; color: #ffffff !important;
} }
@ -806,7 +824,9 @@ td.blob-excerpt {
} }
.editor-toolbar a.active, .editor-toolbar a.active,
.editor-toolbar a:hover { .editor-toolbar a:hover,
.editor-toolbar button.active,
.editor-toolbar button:hover {
background: rgb(255 255 255 / 25%); background: rgb(255 255 255 / 25%);
border-color: rgb(255 255 255 / 25%); border-color: rgb(255 255 255 / 25%);
} }
@ -854,6 +874,10 @@ td.blob-excerpt {
color: var(--accent-color); color: var(--accent-color);
} }
.repository.view.issue .pull-desc code {
color: var(--accent-color);
}
.repository .segment.reactions .ui.label.basic.blue { .repository .segment.reactions .ui.label.basic.blue {
background-color: #ffffff00 !important; background-color: #ffffff00 !important;
border-color: inherit !important; border-color: inherit !important;
@ -1126,8 +1150,8 @@ a.ui.label:hover {
} }
.ui .sha.label { .ui .sha.label {
background: var(--button-color); background: var(--button-color) !important;
color: var(--button-text); color: var(--button-text) !important;
border: 1px solid var(--button-color) !important; border: 1px solid var(--button-color) !important;
} }
@ -1172,7 +1196,8 @@ a.ui.labels .label:hover {
.ui.form input[type=tel], .ui.form input[type=tel],
.ui.form input[type=text], .ui.form input[type=text],
.ui.form input[type=time], .ui.form input[type=time],
.ui.form input[type=url] { .ui.form input[type=url],
.ui.form input {
background: rgb(0 0 0 / 25%); background: rgb(0 0 0 / 25%);
border: 1px solid transparent; border: 1px solid transparent;
color: var(--text); color: var(--text);
@ -1181,21 +1206,6 @@ a.ui.labels .label:hover {
transition: color .1s ease, border-color .1s ease; transition: color .1s ease, border-color .1s ease;
} }
.ui.form textarea:focus {
color: var(--text);
border-color: transparent;
background: rgba(0, 0, 0, .5);
box-shadow: inset 0 0 0 0 rgba(34, 36, 38, .35);
-webkit-appearance: none;
}
.ui.form textarea,
.ui.input textarea {
background: rgb(0 0 0 / .25);
border: 1px solid rgba(34, 36, 38, .15);
color: var(--text);
}
.ui.form input:not([type]):focus, .ui.form input:not([type]):focus,
.ui.form input[type=date]:focus, .ui.form input[type=date]:focus,
.ui.form input[type=datetime-local]:focus, .ui.form input[type=datetime-local]:focus,
@ -1214,6 +1224,37 @@ a.ui.labels .label:hover {
background: rgb(0 0 0 / 50%); background: rgb(0 0 0 / 50%);
box-shadow: inset 0 0 0 0 rgba(34, 36, 38, .35); box-shadow: inset 0 0 0 0 rgba(34, 36, 38, .35);
} }
.ui.form input:focus:hover,
.ui.form textarea:focus:hover,
input:focus:hover,
textarea:focus:hover {
background: rgb(0 0 0 / 50%) !important;
border-color: rgb(255 255 255 / .1) !important;
color: var(--text-hover) !important;
}
.ui.form input:hover,
.ui.form textarea:hover,
input:hover,
textarea:hover {
background: rgb(0 0 0 / 25%) !important ;
border-color: rgb(255 255 255 / .1) !important;
color: var(--text-hover) !important;
}
.ui.form textarea:focus {
color: var(--text);
border-color: transparent;
background: rgba(0, 0, 0, .5);
box-shadow: inset 0 0 0 0 rgba(34, 36, 38, .35);
-webkit-appearance: none;
}
.ui.form textarea,
.ui.input textarea {
background: rgb(0 0 0 / .25);
border: 1px solid rgba(34, 36, 38, .15);
color: var(--text);
}
.ui.input.focus>input, .ui.input.focus>input,
.ui.input>input:focus { .ui.input>input:focus {

View File

@ -108,6 +108,9 @@ table.dataTable thead th, table.dataTable thead td {
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
background-color: rgba(0, 0, 0, 0.25); background-color: rgba(0, 0, 0, 0.25);
} }
.dataTables_length select, .dataTables_filter input, .dataTable.compact tfoot td select {
color: black;
}
#footer { #footer {
color: #ffffff; color: #ffffff;
} }

View File

@ -755,6 +755,16 @@ border-left-color: transparent !important;
background-color: var(--accent-color); background-color: var(--accent-color);
} }
.ProtocolLabel-torrent-3aqvR {
border-color: #00853d !important;
background-color: #00853d !important;
}
.ProtocolLabel-usenet-3qKV1 {
border-color: #17b1d9 !important;
background-color: #17b1d9 !important;
}
/*ARTIST ALBUM PAGE*/ /*ARTIST ALBUM PAGE*/
.AlbumDetailsMedium-mediumNumber-3ZUko { .AlbumDetailsMedium-mediumNumber-3ZUko {
color: #fff; color: #fff;

View File

@ -428,4 +428,8 @@ a:hover {
.PageHeaderMultiselectActions-count-2fQWwV { .PageHeaderMultiselectActions-count-2fQWwV {
color: var(--accent-color); color: var(--accent-color);
}
.MetadataPosterCard-legacyUnwatchedEpisodesBadge-3kelZP {
background-color: var(--accent-color);
color: #ffffff;
} }

View File

@ -584,7 +584,10 @@ legend {
-o-transition: none; -o-transition: none;
transition: none; transition: none;
} }
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
background-color: #919191;
opacity: 1;
}
/* Scheduling */ /* Scheduling */
.time { .time {
color: #fff; color: #fff;
@ -593,3 +596,22 @@ legend {
label { label {
color: #ffffff; color: #ffffff;
} }
/* Wizard */
.container {
border: 1px solid rgba(255, 255, 255, 0);
background-color: rgb(255 255 255 / 0);
}
.container #inner {
background-color: transparent;
}
.language:hover {
background-color: rgb(255 255 255 / 10%);
}
.container .quoteBlock {
background-color: rgb(0 0 0 / 25%);
}
#content a, #content a:hover, #content a:active, #content a:visited, #serverResponse {
color: #eee;
}

View File

@ -1,35 +0,0 @@
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
/* SONARR MIND STONE THEME */
@import url(https://gilbn.github.io/theme.park/CSS/themes/sonarr/sonarr-base.css);
:root {
--main-bg-color: radial-gradient(ellipse at center bottom, rgba(255, 242, 0, .7) 0%, #0d0400 80%, rgba(0, 0, 0, 1) 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/mind.jpg") center center/cover no-repeat fixed;
--modal-bg-color: linear-gradient(180deg, rgba(51, 49, 0, .7) 0%, #000 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/mind.jpg") center center/cover no-repeat fixed;
--calendar-tv-Unaired-Premiere: 53 197 244;
--calendar-tv-Downloading: 122 67 182;
--calendar-tv-Unmonitored: 173 173 173;
--calendar-tv-Unaired: 93 156 236;
--calendar-tv-missing: 240 80 80;
--calendar-tv-On-Air: 255 165 0;
--calendar-tv-available: 39 194 76;
--button-color: rgba(255, 255, 255, .15);
--button-color-hover: #fff200cc;
--accent-color: #fff200cc;
--accent-color-hover: #fff200cc;
--queue-color: #204c80cc;
}

View File

@ -1,33 +0,0 @@
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
/* SONARR THEME */
@import url(https://gflix.app/theme.park/CSS/themes/sonarr/sonarr-base.css);
:root {
--main-bg-color: linear-gradient(45deg, #fb3f62 0%, #204c80 37%, #004249 97%) center center/cover no-repeat fixed;
--modal-bg-color: radial-gradient(circle, #204c80 0%, #000 100%) center center/cover no-repeat fixed;
--calendar-tv-Unaired-Premiere: 53 197 244;
--calendar-tv-Downloading: 122 67 182;
--calendar-tv-Unmonitored: 173 173 173;
--calendar-tv-Unaired: 93 156 236;
--calendar-tv-missing: 240 80 80;
--calendar-tv-On-Air: 255 165 0;
--calendar-tv-available: 39 194 76;
--button-color: #fb3f62;
--button-color-hover: rgba(251, 63, 98, .8);
--accent-color: rgba(251, 63, 98, .8);
--accent-color-hover: rgba(251, 63, 98, .8);
--queue-color: rgba(63, 251, 157, .8);
}

View File

@ -1,34 +0,0 @@
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
/* SONARR POWER STONE THEME */
@import url(https://gilbn.github.io/theme.park/CSS/themes/sonarr/sonarr-base.css);
:root {
--main-bg-color: radial-gradient(ellipse at center bottom, rgba(166, 40, 140, .7) 0%, rgba(11,8,51,1) 80%, rgba(0,0,0,1) 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/power.jpg") center center/cover no-repeat fixed;
--modal-bg-color: linear-gradient(180deg, rgba(35, 0, 57, .7) 0%, #000 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/power.jpg") center center/cover no-repeat fixed;
--calendar-tv-Unaired-Premiere: 53 197 244;
--calendar-tv-Downloading: 122 67 182;
--calendar-tv-Unmonitored: 173 173 173;
--calendar-tv-Unaired: 93 156 236;
--calendar-tv-missing: 240 80 80;
--calendar-tv-On-Air: 255 165 0;
--calendar-tv-available: 39 194 76;
--button-color: #85096b;
--button-color-hover: #85096bcc;
--accent-color: #85096bcc;
--accent-color-hover: #85096bcc;
--queue-color: #204c80cc;
}

View File

@ -1,36 +0,0 @@
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
/* SONARR REALITY STONE THEME */
@import url(https://gilbn.github.io/theme.park/CSS/themes/sonarr/sonarr-base.css);
:root {
--main-bg-color: radial-gradient(ellipse at center bottom, rgba(232, 11, 11, 0.7) 0%, #08000d 80%, rgba(0,0,0,1) 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/reality.jpg") center center/cover no-repeat fixed;
--modal-bg-color: linear-gradient(180deg, rgba(102, 5, 5, 0.7) 0%, #000 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/reality.jpg") center center/cover no-repeat fixed;
--calendar-tv-Unaired-Premiere: 53 197 244;
--calendar-tv-Downloading: 122 67 182;
--calendar-tv-Unmonitored: 173 173 173;
--calendar-tv-Unaired: 93 156 236;
--calendar-tv-missing: 240 80 80;
--calendar-tv-On-Air: 255 165 0;
--calendar-tv-available: 39 194 76;
--button-color: rgba(255, 255, 255, .15);
--button-color-hover: #e80c0bcc;
--accent-color: #e80c0bcc;
--accent-color-hover: #e80c0bcc;
--queue-color: #204c80cc;
}

View File

@ -1,35 +0,0 @@
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
/* SONARR SOUL STONE THEME */
@import url(https://gilbn.github.io/theme.park/CSS/themes/sonarr/sonarr-base.css);
:root {
--main-bg-color: radial-gradient(ellipse at center bottom, rgba(255, 153, 0, .7) 0%, #3c0015 80%, rgba(0, 0, 0, 1) 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/soul.jpg") center center/cover no-repeat fixed;
--modal-bg-color: linear-gradient(180deg, rgba(140, 64, 2, .8) 0%, #3c0015 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/soul.jpg") center center/cover no-repeat fixed;
--calendar-tv-Unaired-Premiere: 53 197 244;
--calendar-tv-Downloading: 122 67 182;
--calendar-tv-Unmonitored: 173 173 173;
--calendar-tv-Unaired: 93 156 236;
--calendar-tv-missing: 240 80 80;
--calendar-tv-On-Air: 255 165 0;
--calendar-tv-available: 39 194 76;
--button-color: rgba(255, 255, 255, .15);
--button-color-hover: #f90c;
--accent-color: #f90c;
--accent-color-hover: #f90c;
--queue-color: #204c80cc;
}

View File

@ -1,35 +0,0 @@
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
/* SONARR SPACE STONE THEME */
@import url(https://gilbn.github.io/theme.park/CSS/themes/sonarr/sonarr-base.css);
:root {
--main-bg-color: radial-gradient(ellipse at center bottom, rgba(0, 98, 255, .7) 0%, #020013 80%, rgb(0, 0, 0) 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/space.jpg") center center/cover no-repeat fixed;
--modal-bg-color: linear-gradient(180deg, rgba(0, 98, 255, .7) 0%, #10003c 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/space.jpg") center center/cover no-repeat fixed;
--calendar-tv-Unaired-Premiere: 53 197 244;
--calendar-tv-Downloading: 122 67 182;
--calendar-tv-Unmonitored: 173 173 173;
--calendar-tv-Unaired: 93 156 236;
--calendar-tv-missing: 240 80 80;
--calendar-tv-On-Air: 255 165 0;
--calendar-tv-available: 39 194 76;
--button-color: rgba(255, 255, 255, .15);
--button-color-hover: #0062ffcc;
--accent-color: #0062ffcc;
--accent-color-hover: #0062ffcc;
--queue-color: #0062ffcc;
}

View File

@ -1,35 +0,0 @@
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
/* SONARR TIME STONE THEME */
@import url(https://gilbn.github.io/theme.park/CSS/themes/sonarr/sonarr-base.css);
:root {
--main-bg-color: radial-gradient(ellipse at center bottom, rgba(109, 247, 81, .7) 0%, #00130c 80%, rgb(0, 0, 0) 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/time.jpg") center center/cover no-repeat fixed;
--modal-bg-color: linear-gradient(180deg, rgba(2, 77, 0, .8) 0%, #00130c 100%) center center/cover no-repeat fixed,
url("https://themepark-develop.netlify.app/Resources/time.jpg") center center/cover no-repeat fixed;
--calendar-tv-Unaired-Premiere: 53 197 244;
--calendar-tv-Downloading: 122 67 182;
--calendar-tv-Unmonitored: 173 173 173;
--calendar-tv-Unaired: 93 156 236;
--calendar-tv-missing: 240 80 80;
--calendar-tv-On-Air: 255 165 0;
--calendar-tv-available: 39 194 76;
--button-color: rgba(255, 255, 255, .15);
--button-color-hover: rgba(4, 168, 0, .8);
--accent-color: #6df751cc;
--accent-color-hover: #6df751cc;
--queue-color: #6df751cc;
}

View File

@ -76,6 +76,13 @@ p a {
background: rgba(255, 255, 255, 0.10) !important; background: rgba(255, 255, 255, 0.10) !important;
color: #fff; color: #fff;
} }
.theme--dark.v-expansion-panels .v-expansion-panel {
background-color: transparent;
color: #fff;
}
.theme--dark.v-text-field--solo>.v-input__control>.v-input__slot {
background: rgb(0 0 0 / 0.50);
}
.flex.md3 .application .theme--dark.v-list, .theme--dark .v-list { .flex.md3 .application .theme--dark.v-list, .theme--dark .v-list {
background: rgba(255, 255, 255, 0.10) !important; background: rgba(255, 255, 255, 0.10) !important;
} }

View File

@ -1,5 +1,5 @@
<h1 align="center"> <h1 align="center">
<img src="https://i.imgur.com/OkX6Zup.png"> <img src="https://imgur.com/iSpc8Iq.png">
</h1> </h1>
<p align="center"> <p align="center">
@ -17,13 +17,12 @@
# [Themes](https://github.com/gilbN/theme.park/wiki/Themes) # [Themes](https://github.com/gilbN/theme.park/wiki/Themes)
\- Click on the banners for screenshots. \- Click on the banners for screenshots.
<a href="https://github.com/gilbN/theme.park/wiki/Organizr-Dark"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/organizr_dark_banner.png" width="800px" />
<a href="https://github.com/gilbN/theme.park/wiki/Organizr-Dark"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/organizr_dark_banner.png" width="400px" /> <a href="https://github.com/gilbN/theme.park/wiki/Organizr-Dark"><img src="Screenshots/space_banner.png" width="400px" height="50px"/> <a href="https://github.com/gilbN/theme.park/wiki/Aquamarine"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/aquamarine_banner.png" width="800px" />
<a href="https://github.com/gilbN/theme.park/wiki/Aquamarine"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/aquamarine_banner.png" width="400px" /> <a href="https://github.com/gilbN/theme.park/wiki/Organizr-Dark"><img src="Screenshots/reality_banner.png" width="400px" height="50px"/> <a href="https://github.com/gilbN/theme.park/wiki/Hotline"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/hotline_banner.png" width="800px" />
<a href="https://github.com/gilbN/theme.park/wiki/Hotline"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/hotline_banner.png" width="400px" /> <a href="https://github.com/gilbN/theme.park/wiki/Organizr-Dark"><img src="Screenshots/power_banner.png" width="400px" height="50px"/> <a href="https://github.com/gilbN/theme.park/wiki/Space Gray"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/spacegray_banner.png" width="800px" />
<a href="https://github.com/gilbN/theme.park/wiki/Space Gray"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/spacegray_banner.png" width="400px" /> <a href="https://github.com/gilbN/theme.park/wiki/Organizr-Dark"><img src="Screenshots/soul_banner.png" width="400px" height="50px"/> <a href="https://github.com/gilbN/theme.park/wiki/Dark"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/dark_banner.png" width="800px" />
<a href="https://github.com/gilbN/theme.park/wiki/Dark"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/dark_banner.png" width="400px" /> <a href="https://github.com/gilbN/theme.park/wiki/Organizr-Dark"><img src="Screenshots/mind_banner.png" width="400px" height="50px"/> <a href="https://github.com/gilbN/theme.park/wiki/Plex Themes"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/plex_banner.png" width="800px" />
<a href="https://github.com/gilbN/theme.park/wiki/Plex Themes"><img src="https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/plex_banner.png" width="400px" /> <a href="https://github.com/gilbN/theme.park/wiki/Organizr-Dark"><img src="Screenshots/time_banner.png" width="400px" height="50px"/>
# [Installation](https://github.com/gilbN/theme.park/wiki/Setup) # [Installation](https://github.com/gilbN/theme.park/wiki/Setup)
# [Addons](https://github.com/gilbN/theme.park/wiki/Addons) # [Addons](https://github.com/gilbN/theme.park/wiki/Addons)
@ -34,24 +33,24 @@
<tbody> <tbody>
<tr style="height: 98px;"> <tr style="height: 98px;">
<td style="width: 110px; height: 98px; text-align: center;"> <td style="width: 110px; height: 98px; text-align: center;">
<p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://raw.githubusercontent.com/Sonarr/Sonarr/phantom-develop/Logo/sonarr-simple.svg" alt="" width="48" height="48" /></a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://raw.githubusercontent.com/Sonarr/Sonarr/phantom-develop/Logo/sonarr-simple.svg" alt="" width="48" height="48" /></a></p>
<p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes">Sonarr</a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr">Sonarr</a></p>
</td> </td>
<td style="width: 160px; height: 98px; text-align: center;"> <td style="width: 160px; height: 98px; text-align: center;">
<p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes"><img src="https://raw.githubusercontent.com/Radarr/Radarr/aphrodite/Logo/Radarr.svg" width="48" height="48" /></a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Radarr"><img src="https://raw.githubusercontent.com/Radarr/Radarr/aphrodite/Logo/Radarr.svg" width="48" height="48" /></a></p>
<p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes">Radarr</a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Radarr">Radarr</a></p>
</td> </td>
<td style="width: 10px; height: 98px; text-align: center;"> <td style="width: 10px; height: 98px; text-align: center;">
<p style="text-align: center;"><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes"><img src="https://raw.githubusercontent.com/causefx/Organizr/v2-develop/plugins/images/tabs/lidarr.png" width="48" height="48" /></a></p> <p style="text-align: center;"><a href="https://github.com/gilbN/theme.park/wiki/Lidarr"><img src="https://raw.githubusercontent.com/causefx/Organizr/v2-develop/plugins/images/tabs/lidarr.png" width="48" height="48" /></a></p>
<p style="text-align: center;"><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes">Lidarr</a></p> <p style="text-align: center;"><a href="https://github.com/gilbN/theme.park/wiki/Lidarr">Lidarr</a></p>
</td> </td>
<td style="width: 90px; height: 98px; text-align: center;"> <td style="width: 90px; height: 98px; text-align: center;">
<p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes"><img src="https://raw.githubusercontent.com/causefx/Organizr/v2-develop/plugins/images/tabs/bazarr.png" alt="" width="48" height="48" /></a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Bazarr"><img src="https://raw.githubusercontent.com/causefx/Organizr/v2-develop/plugins/images/tabs/bazarr.png" alt="" width="48" height="48" /></a></p>
<p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes">Bazarr</a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Bazarr">Bazarr</a></p>
</td> </td>
<td style="width: 136px; height: 98px; text-align: center;"> <td style="width: 136px; height: 98px; text-align: center;">
<p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes"><img src="https://raw.githubusercontent.com/Readarr/Readarr/develop/Logo/256.png" alt="" width="48" height="48" /></a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Readarr"><img src="https://raw.githubusercontent.com/Readarr/Readarr/develop/Logo/256.png" alt="" width="48" height="48" /></a></p>
<p><a href="https://github.com/gilbN/theme.park/wiki/Sonarr---Radarr---Lidarr---Bazarr-Readarr-Themes">Readarr</a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Readarr">Readarr</a></p>
</td> </td>
<td style="width: 140px; height: 98px; text-align: center;"> <td style="width: 140px; height: 98px; text-align: center;">
<p><a href="https://github.com/gilbN/theme.park/wiki/Plex"><img src="https://raw.githubusercontent.com/causefx/Organizr/v2-master/plugins/images/tabs/plex.png" alt="" width="48" height="48" /></a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Plex"><img src="https://raw.githubusercontent.com/causefx/Organizr/v2-master/plugins/images/tabs/plex.png" alt="" width="48" height="48" /></a></p>
@ -162,8 +161,8 @@
<p><a href="https://github.com/gilbN/theme.park/wiki/PLPP">PLPP</a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/PLPP">PLPP</a></p>
</td> </td>
<td style="width: 10px; height: 40px; text-align: center;"> <td style="width: 10px; height: 40px; text-align: center;">
<p><a href="https://github.com/gilbN/theme.park/wiki/html5speedtest"><img src="https://raw.githubusercontent.com/librespeed/speedtest/master/.logo/icon_huge.png" alt="" width="48" height="48" /></a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Librespeed"><img src="https://raw.githubusercontent.com/librespeed/speedtest/master/.logo/icon_huge.png" alt="" width="48" height="48" /></a></p>
<p><a href="https://github.com/gilbN/theme.park/wiki/html5speedtest">librespeed</a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/Librespeed">librespeed</a></p>
</td> </td>
<td style="width: 90px; height: 40px; text-align: center;"> <td style="width: 90px; height: 40px; text-align: center;">
<p><a href="https://github.com/gilbN/theme.park/wiki/The-Lounge"><img src="https://raw.githubusercontent.com/thelounge/thelounge/master/client/img/logo-grey-bg-152x152px.png" alt="" width="48" height="48" /></a></p> <p><a href="https://github.com/gilbN/theme.park/wiki/The-Lounge"><img src="https://raw.githubusercontent.com/thelounge/thelounge/master/client/img/logo-grey-bg-152x152px.png" alt="" width="48" height="48" /></a></p>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 318 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 371 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 341 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 289 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 433 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 779 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 737 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 400 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 653 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 632 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 532 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 447 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 350 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 519 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 812 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 546 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 492 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 438 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 567 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 474 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 446 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 875 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 593 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 457 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 344 KiB