diff options
author | Minteck <contact@minteck.org> | 2022-03-27 21:38:10 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-03-27 21:38:10 +0200 |
commit | 2328e5a5742c3fbdbcb4ded8f1d294b4a20e08e0 (patch) | |
tree | 7b783f6206e6126192166a4c031617800ff5a275 /app/cdn/dark.css | |
parent | 4622ccde9cf34b8518dc9507382fcd2d7eafcb0c (diff) | |
download | core-2328e5a5742c3fbdbcb4ded8f1d294b4a20e08e0.tar.gz core-2328e5a5742c3fbdbcb4ded8f1d294b4a20e08e0.tar.bz2 core-2328e5a5742c3fbdbcb4ded8f1d294b4a20e08e0.zip |
Commit
Diffstat (limited to 'app/cdn/dark.css')
-rw-r--r-- | app/cdn/dark.css | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/app/cdn/dark.css b/app/cdn/dark.css new file mode 100644 index 0000000..8ce19e1 --- /dev/null +++ b/app/cdn/dark.css @@ -0,0 +1,96 @@ +@media (prefers-color-scheme: dark) {
+
+ html, body {
+ background: black !important;
+ color: white !important;
+ }
+
+ #statusbar, #tabs {
+ background: #222 !important;
+ color: white !important;
+ }
+
+ .tab:not(.tab-active) img {
+ filter: invert(1) !important;
+ }
+
+ .loader {
+ background: rgba(10, 10, 10, .75) !important;
+ }
+
+ .loader img {
+ filter: invert(1) !important;
+ }
+
+ #tabs .tab.tab-active {
+ border-bottom-color: white !important;
+ }
+
+ .list-group-item {
+ background-color: #151515 !important;
+ }
+
+ .btn-light {
+ background: transparent !important;
+ color: white !important;
+ }
+
+ .dropdown-menu {
+ filter: invert(1) !important;
+ }
+
+ #panes {
+ background: black !important;
+ }
+
+ .list-group-item-action {
+ color: white !important;
+ }
+
+ .modal-content {
+ background-color: #151515 !important;
+ }
+
+ .modal-header button.close {
+ filter: invert(1) !important;
+ }
+
+ .modal-header {
+ border-bottom: 1px solid #222 !important;
+ }
+
+ .modal-footer {
+ border-top: 1px solid #222 !important;
+ }
+
+ #radio-bar {
+ background-color: whitesmoke !important;
+ color: black !important;
+ filter: invert(1) !important;
+ }
+
+ #radio-bar .badge {
+ filter: invert(1) !important;
+ }
+
+ .window-btn {
+ border-color: #333 !important;
+ }
+
+ .window-btn img {
+ filter: invert(1);
+ }
+
+ .window-btn:hover {
+ background: rgba(0, 0, 0, .25);
+ }
+
+ .window-btn:active {
+ background: rgba(0, 0, 0, .5);
+ }
+
+ hr {
+ border-top: 1px solid rgba(255, 255, 255, .1) !important;
+ }
+
+}
\ No newline at end of file |