diff --git a/CSS/variables/organizr-dark.css b/CSS/variables/organizr-dark.css new file mode 100644 index 00000000..aa8d9d5c --- /dev/null +++ b/CSS/variables/organizr-dark.css @@ -0,0 +1,30 @@ +:root { + --main-bg-color: #1f1f1f; + + --modal-bg-color: #333; + --modal-header-color: #232323; + --modal-footer-color: #232323; + + --drop-down-menu-bg: #1b1b1b; + + --button-color: #2cabe3; + --button-color-hover: #298fbc; + --button-text: #eee; + --button-text-hover: #fff; + + --accent-color: 44, 171, 227; + --accent-color-hover: rgb(var(--accent-color),.8); + --link-color: #2cabe3; + --link-color-hover: #3cc5ff; + --label-text-color: #fff; + + --text:#96a2b4; + --text-hover: #fff; + --text-muted: #999; + + /*Specials*/ + --arr-queue-color: #2cabe3; /* Servarr apps + Bazarr*/ + --plex-poster-unwatched: #2cabe3; + --petio-spinner: invert(65%) sepia(83%) saturate(2026%) hue-rotate(167deg) brightness(90%) contrast(97%);/* Made with https://codepen.io/jsm91/embed/ZEEawyZ */ + --gitea-color-primary-dark-4: 44, 171, 227; +} \ No newline at end of file diff --git a/themes.py b/themes.py index 895222fc..8cb993bf 100644 --- a/themes.py +++ b/themes.py @@ -114,6 +114,7 @@ def temporary_copy_files(): shutil.copytree(base_folders,"./CSS/themes",dirs_exist_ok=True) shutil.copytree(theme_options,"./CSS/variables",dirs_exist_ok=True) shutil.copytree(comm_options,"./CSS/variables",dirs_exist_ok=True) + shutil.copy("./css/theme-options/organizr.css","./CSS/variables/organizr-dark.css") if __name__ == "__main__": app_folders = [name for name in listdir('./css/base') if isdir(join('./css/base', name))]