diff --git a/CSS/themes/gaps/aquamarine.css b/CSS/themes/gaps/aquamarine.css index 79ff8ad7..9e8b57f6 100644 --- a/CSS/themes/gaps/aquamarine.css +++ b/CSS/themes/gaps/aquamarine.css @@ -12,14 +12,4 @@ /* GAPS AQUAMARINE THEME */ @import url(https://theme-park.dev/CSS/themes/gaps/gaps-base.css); -:root { - --main-bg-color: radial-gradient(ellipse at center, #47918a 0%, #0b3161 100%) center center/cover no-repeat fixed; - --modal-bg-color: radial-gradient(ellipse at top, #47918a 0%, #0b3161 100%) center center/cover no-repeat fixed; - - --button-color: #009688; - --button-color-hover: #12afa0; - --accent-color: #009688; - --accent-color-hover: #12afa0; - --text: #eee; - --text-hover: #fff; -} \ No newline at end of file +@import url(https://theme-park.dev/CSS/variables/aquamarine.css); \ No newline at end of file diff --git a/CSS/themes/gaps/dark.css b/CSS/themes/gaps/dark.css index 34272ca9..f36d968d 100644 --- a/CSS/themes/gaps/dark.css +++ b/CSS/themes/gaps/dark.css @@ -12,14 +12,4 @@ /* GAPS DARK THEME */ @import url(https://theme-park.dev/CSS/themes/gaps/gaps-base.css); -:root { - --main-bg-color: radial-gradient(circle, #3a3a3a, #2d2d2d, #202020, #141414, #000000) center center/cover no-repeat fixed; - --modal-bg-color: radial-gradient(circle , #3a3a3a, #2d2d2d, #202020, #141414, #000000) center center/cover no-repeat fixed; - - --button-color: hsla(0,0%,100%,.15); - --button-color-hover: hsla(0,0%,100%,.30); - --accent-color: rgba(255, 255, 255, 0.25); - --accent-color-hover: rgba(255, 255, 255, 0.45); - --text: #eee; - --text-hover: #fff; - } \ No newline at end of file +@import url(https://theme-park.dev/CSS/variables/dark.css); \ No newline at end of file diff --git a/CSS/themes/gaps/dracula.css b/CSS/themes/gaps/dracula.css new file mode 100644 index 00000000..aad452e8 --- /dev/null +++ b/CSS/themes/gaps/dracula.css @@ -0,0 +1,15 @@ +/* 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 */ + +/* GAPS DRACULA THEME */ +@import url(https://theme-park.dev/CSS/themes/gaps/gaps-base.css); +@import url(https://theme-park.dev/CSS/variables/dracula.css); \ No newline at end of file diff --git a/CSS/themes/gaps/gaps-base.css b/CSS/themes/gaps/gaps-base.css index fcd7a3d9..912b7ba5 100644 --- a/CSS/themes/gaps/gaps-base.css +++ b/CSS/themes/gaps/gaps-base.css @@ -62,30 +62,47 @@ body { background-clip: padding-box; } a { - color: var(--accent-color); + color: var(--link-color); } a:hover { - color: var(--accent-color-hover); + color: var(--link-color-hover); text-decoration: underline; } .text-primary { color: var(--text)!important; } .text-muted { - color: var(--text)!important; - opacity: .8; + color: var(--text-muted)!important; +} +h1, h2, h3, h4,h4.text-primary, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, label { + color: var(--text-hover) !important; +} +.alert-heading { + color: white !important; } /* Header */ .bg-primary { background-color: transparent !important; background: rgba(0, 0, 0, .25) !important; } -.navbar .list-ul-active,.info-circle-active, .arrow-clockwise-active, .gear-active, .rss-active, .exclamation-triangle-active, .collection-fill-active { - background-color: var(--accent-color); +.navbar .list-ul-active,.info-circle-active, .arrow-clockwise-active, .gear-active, .rss-active, .exclamation-triangle-active, .collection-fill-active,.activePage { + background-color: rgb(var(--accent-color)); } .bg-primary .navbar-nav .active>.nav-link { - color: var(--accent-color) !important; + color: rgb(var(--accent-color)) !important; +} +.default { + background-color: var(--text); +} +.navbar-dark .navbar-nav .nav-link { + color: var(--text); +} +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: var(--text-hover); +} +.navbar-dark .navbar-nav .nav-link:hover .default, .navbar-dark .navbar-nav .nav-link:focus .default { + background-color: var(--text-hover); } /* Tables */ @@ -131,51 +148,81 @@ table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table. width: auto !important; } .card-text .text-info { - color: var(--accent-color) !important; + color: rgb(var(--accent-color)) !important; } /* Buttons */ .btn-primary, .btn-info { - color: #fff; + color: var(--button-text); background-color: var(--button-color) !important; border-color: var(--button-color) !important; } -.btn-primary:active, .btn-info:active { - box-shadow: none !important; +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-primary.dropdown-toggle:focus, +.btn-info:focus, .btn-info.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgb(var(--accent-color), .5); + box-shadow: 0 0 0 0.2rem rgb(var(--accent-color), .5); } .btn-primary:hover, .btn-info:hover { background-color: var(--button-color-hover) !important; border-color: var(--button-color-hover) !important; + color: var(--button-text-hover) !important; } .btn-secondary { - color: #fff; + color: var(--button-text); background-color: var(--button-color); border-color: var(--button-color); } .btn-secondary:hover { - color: #fff; + color: var(--button-text-hover); background-color: var(--button-color-hover); border-color: var(--button-color-hover); } + +.list-group-item { + color: var(--button-text); + background-color: var(--button-color); + border-color: var(--button-color); +} +.list-group-item.active { + color: var(--label-text-color); + background: rgb(var(--accent-color)); + border-color: rgb(var(--accent-color)); +} + +.list-group-item.active:hover { + color: var(--label-text-color); + background: var(--accent-color-hover); + border-color: var(--accent-color-hover); +} +.list-group-item-action:hover, .list-group-item-action:focus { + color: var(--button-text-hover); + background: var(--button-color-hover); + border-color: var(--button-color-hover); +} /* Settings */ -.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link { - color: var(--text); +.nav-tabs .nav-link.active, .nav-tabs .nav-link.active:hover,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-item.open .nav-link:focus,.nav-pills .nav-link.active:focus,.nav-pills .nav-item.open .nav-link:focus, .nav-tabs .nav-item.show .nav-link { + color: rgb(var(--accent-color)); background-color: rgba(255, 255, 255, .1); border-color: transparent; } -.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { +.nav-tabs .nav-link, .nav-tabs .nav-item.open .nav-link, .nav-pills .nav-link, .nav-pills .nav-link.active, .nav-pills .nav-link.active:hover, .nav-pills .nav-item.open .nav-link { + color: var(--text); +} +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover,.nav-pills .nav-item.open .nav-link:hover { background-color: rgba(0, 0, 0, .25); border-color: transparent; + color: var(--text-hover); } .nav-tabs .nav-link.active:hover { background-color: rgba(255, 255, 255, .1); } .badge-primary { - color: var(--text); - background-color: var(--accent-color); + color: var(--label-text-color); + background-color: rgb(var(--accent-color)); } #plexServers .card-header { background-color: rgba(255, 255, 255, .1); + color: var(--text-hover) } #plexServers .border-secondary { border-color: #0000 !important; @@ -189,7 +236,7 @@ table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table. } .dropdown-menu { color: var(--text); - background: var(--modal-bg-color); + background: var(--drop-down-menu-bg); background-repeat: repeat, no-repeat; background-attachment: fixed, fixed; background-position: center center, center center; @@ -200,6 +247,9 @@ table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table. border: 1px solid transparent; box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6); } +.dropdown-item { + color: var(--text); +} .dropdown-item:hover, .dropdown-item:focus { color: var(--text-hover); text-decoration: none; @@ -217,4 +267,31 @@ table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table. button, select { text-transform: none; outline: none; +} + +/* Progress Bar */ +.progress-bar-striped { + background-image: linear-gradient( +45deg +,rgba(var(--accent-color)) 25%,transparent 25%,transparent 50%,rgba(var(--accent-color)) 50%,rgba(var(--accent-color)) 75%,transparent 75%,transparent); + background-size: .625rem .625rem; +} +.progress-bar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: rgb(var(--accent-color), .15); + -webkit-transition: width .6s ease; + transition: width .6s ease; } \ No newline at end of file diff --git a/CSS/themes/gaps/hotline.css b/CSS/themes/gaps/hotline.css index 2fb05362..b8aa3b38 100644 --- a/CSS/themes/gaps/hotline.css +++ b/CSS/themes/gaps/hotline.css @@ -12,14 +12,4 @@ /* GAPS HOTLINE THEME */ @import url(https://theme-park.dev/CSS/themes/gaps/gaps-base.css); -:root { - --main-bg-color: radial-gradient(ellipse at center, #F44336 0%, #0b3161 100%) center center/cover no-repeat fixed; - --modal-bg-color: radial-gradient(ellipse at top, #F44336 0%, #0b3161 100%) center center/cover no-repeat fixed; - - --button-color: hsla(0,0%,100%,.15); - --button-color-hover: hsla(0,0%,100%,.30); - --accent-color: #F44336; - --accent-color-hover: #0b3161; - --text: #eee; - --text-hover: #fff; -} \ No newline at end of file +@import url(https://theme-park.dev/CSS/variables/hotline.css); \ No newline at end of file diff --git a/CSS/themes/gaps/organizr-dark.css b/CSS/themes/gaps/organizr-dark.css index 3e9aaeae..9423836f 100644 --- a/CSS/themes/gaps/organizr-dark.css +++ b/CSS/themes/gaps/organizr-dark.css @@ -12,14 +12,4 @@ /* GAPS ORGANIZR-DARK THEME */ @import url(https://theme-park.dev/CSS/themes/gaps/gaps-base.css); -:root { - --main-bg-color: #1f1f1f; - --modal-bg-color: #1b1b1b; - - --button-color: #2cabe3; - --button-color-hover: rgb(44 171 227 / .8); - --accent-color: #2cabe3; - --accent-color-hover: white; - --text: #eee; - --text-hover: #fff; - } \ No newline at end of file +@import url(https://theme-park.dev/CSS/variables/organizr-dark.css); \ No newline at end of file diff --git a/CSS/themes/gaps/plex.css b/CSS/themes/gaps/plex.css index ad140f14..06b9c9b1 100644 --- a/CSS/themes/gaps/plex.css +++ b/CSS/themes/gaps/plex.css @@ -12,14 +12,4 @@ /* GAPS PLEX THEME */ @import url(https://theme-park.dev/CSS/themes/gaps/gaps-base.css); -:root { - --main-bg-color: url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/blur-noise.png"), url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/preset-light2.png") center center/cover no-repeat fixed; - --modal-bg-color: url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/blur-noise.png"), url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/preset-dark2.png") center center/cover no-repeat fixed; - - --button-color: #cc7b19; - --button-color-hover: #e59029; - --accent-color: #e5a00d; - --accent-color-hover: #ffc107; - --text: #eee; - --text-hover: #fff; - } \ No newline at end of file +@import url(https://theme-park.dev/CSS/variables/plex.css); \ No newline at end of file diff --git a/CSS/themes/gaps/space-gray.css b/CSS/themes/gaps/space-gray.css index 89c9730e..6f20174e 100644 --- a/CSS/themes/gaps/space-gray.css +++ b/CSS/themes/gaps/space-gray.css @@ -12,14 +12,4 @@ /* GAPS SPACE-GRAY THEME */ @import url(https://theme-park.dev/CSS/themes/gaps/gaps-base.css); -:root{ - --main-bg-color: radial-gradient( ellipse at center, rgba(87,108,117,1) 0%, rgba(37,50,55,1) 100.2% ) center center/cover no-repeat fixed; - --modal-bg-color: radial-gradient( ellipse at top, rgba(87,108,117,1) 0%, rgba(37,50,55,1) 100.2% ) center center/cover no-repeat fixed; - - --button-color: #607D8B; - --button-color-hover: #81a6b7; - --accent-color: #607D8B; - --accent-color-hover: #81a6b7; - --text: #eee; - --text-hover: #fff; - } \ No newline at end of file +@import url(https://theme-park.dev/CSS/variables/space-gray.css); \ No newline at end of file