aboutsummaryrefslogtreecommitdiff
path: root/dark.css
blob: dd92e7c30986f7a281eb858aa06a3681587b2bf4 (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
@font-face {
    font-family: "Nunito";
    src: url("/fonts/Nunito-VariableFont_wght.ttf");
    font-weight: 125 950;
    font-stretch: 75% 125%;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("/fonts/Nunito-Italic-VariableFont_wght.ttf");
    font-weight: 125 950;
    font-stretch: 75% 125%;
    font-style: italic;
}

* {
    font-family: "Nunito", sans-serif !important;
}

@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%);
    }

}