aboutsummaryrefslogtreecommitdiff
path: root/dark.css
blob: 4706019d2f8bafc2a42336fa7b27b3273062ab9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@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);
    }

    .navbar {
        background: #111 !important;
    }

    .progress {
        background: #151515 !important;
    }

    .table, .table td, .table tr, .table th {
        border-color: #151515 !important;
        color: white;
    }

    #strike-indicator {
        filter: invert(1);
    }

    .badge {
        filter: contrast(50%) brightness(150%);
    }

}