1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-03 22:17:08 +02:00
This commit is contained in:
GilbN 2024-04-21 19:46:08 +00:00
parent 12e501f3f9
commit a63a3bf73a
40 changed files with 311 additions and 0 deletions

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/aquamarine.css?sha=591b3468083c72cda580a7c61d5d26ca");

View File

@ -0,0 +1,231 @@
@import url("/css/defaults/placeholders.css");
@import url("/css/defaults/transparent.css");
/* TEXT */
body,
p{
color: var(--text) !important;
}
h1,
h2,
h3,
h4,
h5,
h6{
color: var(--text-hover) !important;
}
/* LINKS */
a{
color: var(--link-color) !important;
}
a:hover{
color: var(--link-color-hover) !important;
}
/* BODY */
.bg-primary{
background: var(--transparency-dark-40) !important;
}
body, .bg-bg, #bookshelf, #app-content, #page-wrapper{
background: var(--main-bg-color) !important;
background-image: var(--main-bg-color) !important;
}
.bg-bg{
background: var(--modal-header-color) !important;
}
/* HEADER */
#appbar,
#appbar > div{
background: var(--modal-header-color) !important;
}
/* BUTTONS */
button.bg-success,
button.bg-success *,
.abs-btn,
button.bg-primary, a.bg-primary{
background: var(--button-color) !important;
color: var(--button-text) !important;
border:none !important;
}
button.bg-success:hover,
button.bg-success:hover *,
.abs-btn:hover,
button.bg-primary:hover, a.bg-primary:hover{
background: var(--button-color-hover) !important;
color: var(--button-text-hover) !important;
}
button .material-icons{
color: var(--button-text-color) !important;
}
button:hover .material-icons{
color: var(--button-text-color-hover) !important;
}
/* CARDS */
[id*="book-card-"] .border-yellow-400{
border-color:var(--button-color) !important;
}
/* Icons */
.material-icons,
.abs-icons{
color: rgb(var(--accent-color)) !important;
}
.material-icons:hover,
.abs-icons:hover{
color: var(--accent-color-hover) !important;
}
/* TOOLBAR */
#toolbar{
background: var(--transparency-dark-25) !important;
}
/* SIDEBAR */
.box-shadow-side{
background: var(--transparency-dark-25) !important;
}
#siderail-buttons-container [class*="bg-yellow-"]{
background: rgb(var(--accent-color)) !important;
}
#siderail-buttons-container > a{
background: var(--modal-header-color) !important;
}
#siderail-buttons-container > a [class*="material-icons-"],
#siderail-buttons-container > a svg{
color: rgb(var(--accent-color)) !important;
}
#siderail-buttons-container > a:hover [class*="material-icons-"],
#siderail-buttons-container > a:hover svg{
color: var(--accent-color-hover) !important;
}
#siderail-buttons-container > a[aria-current="page"] [class*="material-icons-"],
#siderail-buttons-container > a[aria-current="page"] svg{
color: var(--button-text-color) !important;
}
#siderail-buttons-container > a[aria-current="page"]:hover [class*="material-icons-"],
#siderail-buttons-container > a[aria-current="page"]:hover svg{
color: var(--button-text-color-hover) !important;
}
/* SCROLLBAR */
::-webkit-scrollbar-thumb{
background: rgb(var(--accent-color)) !important;
}
#bookshelf{
scrollbar-color: rgb(var(--accent-color)) transparent !important;
}
/* INPUTS */
input.bg-primary{
background:none !important;
}
/* TABLES */
table * {
background: transparent !important;
}
table tr:nth-child(2n){
background: var(--transparency-dark-30) !important;
}
table tr:nth-child(odd){
background: var(--transparency-dark-15) !important;
}
table tr:hover{
background: rgb(var(--accent-color),0.25) !important;
}
table tr:nth-child(1), table tr:nth-child(1):hover {
background: var(--transparency-dark-25) !important;
}
table tr svg.text-green-500{
color: rgb(var(--accent-color)) !important;
}
/* DROPDOWNS */
button[aria-haspopup="listbox"]{
background: var(--transparency-dark-25) !important;
color: var(--text) !important;
}
ul[role="listbox"]{
background: var(--modal-bg-color) !important;
}
ul[role="listbox"] li:hover{
background: var(--transparency-dark-25) !important;
}
ul[role="listbox"] li.text-yellow-400{
color: rgb(var(--accent-color)) !important;
}
ul[role="listbox"] li.text-yellow-400:hover{
color: var(--accent-color-hover) !important;
}
/* CONFIGPAGE */
.configContent button[role="checkbox"].bg-primary{
background: var(--transparency-dark-35) !important;
}
.configContent button[role="checkbox"].bg-success{
background: var(--button-color) !important;
}
.configContent button[role="checkbox"] > span{
background: var(--text-hover) !important;
border: var(--text-hover) !important;
}
/* CONFIGPAGE - SETTINGS */
.configContent .userAudiobooksTable tr:nth-child(1){
background: var(--transparency-dark-40) !important;
}
.configContent .userAudiobooksTable tr.isFinished{
background:rgb(var(--accent-color),0.15) !important;
}
/* CONFIGPAGE - LIBRARIES */
.configContent.page-Libraries .list-group .bg-warning{
background: rgb(var(--accent-color)) !important;
}
/* CONFIGPAGE - LOGS */
.configContent.page-Logs #log-container .bg-info{
background: var(--transparency-dark-40) !important;
}
/* CONFIGPAGE - AUTHENTICATION */
.configContent.page-Authentication svg.text-green-500{
color: rgb(var(--accent-color)) !important;
}
/* CONFIGPAGE - STATS */
.configContent.Stats .bg-yellow-400{
background: rgb(var(--accent-color)) !important;
}
/* MISC */
code{
background: var(--transparency-dark-40) !important;
color: rgb(var(--accent-color)) !important;
}
/* WTF? */
#__layout > .bg-bg > .hidden > .absolute.bg-bg{
background: none !important;
}

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-abyss.css?sha=fc6a1d080c4f5d78b2548559c9e73cd1");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-amethyst.css?sha=67960962b68b17de8356d3589df5a607");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-carol.css?sha=4e94a5ce3583ee04d4f8b70bdb454716");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-dreamscape.css?sha=3c7c9d3c00286f1d3d27c705839be761");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-flamingo.css?sha=7457baa8919a779eb998112c6f58b5d8");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-hearth.css?sha=f49d3bcfa8a1ea354b824d21a1372ea0");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-martian.css?sha=3cc7aa3b062a9a81f28851ef8d9fa756");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-pumpkin.css?sha=5f6b57ce03081ca340f73cd35161b590");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-royal.css?sha=861c6dcaaf758c859662aed5e4a095e5");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-shadow.css?sha=9af0d016f8708f93c4b606a726aa9191");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-solar.css?sha=aa16772852e82a318f87730ed9395d19");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/blackberry-vanta.css?sha=b0e92b78923941b1f237ea8853f883cb");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/catppuccin-frappe.css?sha=936bdb13f9e0488e90726cd9be4a15d2");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/catppuccin-latte.css?sha=b27e3cace3d4ca904d6e373a8ca07735");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/catppuccin-macchiato.css?sha=d1d8dcd1f30057ecd257ae1d22d6295c");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/catppuccin-mocha.css?sha=3a94f850384195bd9d75d270eed80581");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/dark.css?sha=38f08efadc40a771376804e112c15b00");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/dracula.css?sha=4e7c87d2063bc2c5a63e05579cd6bea6");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/hotline-old.css?sha=40dcf9071afdaf83f52a1be9eac4c119");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/hotline.css?sha=6e3ddecbe9a1ccd2f1faaf433786677f");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/hotpink.css?sha=bb25728a28cab5fb9293e52f84b3ecd6");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/ibracorp.css?sha=c614a1a123a048850289e718fd113c8f");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/maroon.css?sha=aba3461aac201e257cf5cea12d9f6c5c");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/mind.css?sha=30591394da840c870602f72f0b6d7ad6");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/nord.css?sha=5226f437407d52580589f86881be883c");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/onedark.css?sha=8779d7d20bcc711fe8ed42892bd35af9");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/organizr.css?sha=d5d6c6d63c91bbf2247752bf979bd163");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/overseerr.css?sha=6fa79c6417fc81ad26dffe8083078398");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/pine-shadow.css?sha=ae5fb5029a078157ef8912bf6b2d5b40");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/plex.css?sha=ee86fed87fb92c4983b1b4056b0689b6");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/power.css?sha=b60588297c00b10ae45e397fe480693d");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/reality.css?sha=b9eb97b4ab22d5ad559ff1a7d3cd0ea8");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/soul.css?sha=300d25523a00f5086cea11988de1da1c");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/theme-options/space-gray.css?sha=fe5797a1fc63f6e1929ffc4bdec30312");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/space.css?sha=9986de93076043df50e721813aeb3f74");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/time.css?sha=8b1b27e8c0a649951fbf26ec6bc18268");

View File

@ -0,0 +1,2 @@
@import url("/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1");
@import url("/css/community-theme-options/trueblack.css?sha=541f73821cfe0a75a26106011079b244");

View File

@ -210,6 +210,10 @@
"addons": {},
"base_css": "https://develop.theme-park.dev/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d"
},
"audiobookshelf": {
"addons": {},
"base_css": "https://develop.theme-park.dev/css/base/audiobookshelf/audiobookshelf-base.css?sha=8ebd62751f1ebd8b25e1cfc38d8a9cb1"
},
"bazarr": {
"addons": {
"bazarr-4k-logo": "https://develop.theme-park.dev/css/addons/bazarr/bazarr-4k-logo/bazarr-4k-logo.css?sha=03c214d2ddd0871e9d824927df9eff42",