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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
/***
* CGit Dark theme
* by Krytarik Raido <krytarik@gmail.com>
*
***/
body {
background-color: rgb(37, 37, 37);
}
div#cgit, div#cgit div.path {
background: rgb(37, 37, 37);
color: rgb(230, 230, 230);
}
/*** Hyperlinks ***/
div#cgit table#header td.main a,
div#cgit table.list td a {
color: rgb(230, 230, 230);
}
div#cgit table.list td .decoration a {
color: rgb(37, 37, 37);
}
div#cgit a, div#cgit a:hover,
div#cgit table.list td a:hover,
div#cgit table.list td a.ls-dir,
div#cgit table.diffstat td.upd a,
div#cgit table.blob td.linenumbers a:hover,
div#cgit table.ssdiff td.lineno a:hover {
color: rgb(79, 140, 201);
}
/*** Controls ***/
div#cgit table#header td.form input,
div#cgit table#header td.form select,
div#cgit table.tabs td.form input,
div#cgit table.tabs td.form select,
div#cgit div.cgit-panel td.ctrl input,
div#cgit div.cgit-panel td.ctrl select {
background-color: rgb(52, 52, 52);
border-color: rgb(52, 52, 52);
color: rgb(230, 230, 230);
}
div#cgit div.cgit-panel table {
background-color: rgb(52, 52, 52);
border-color: rgb(37, 37, 37);
}
/*** Lists ***/
div#cgit table.list tr:nth-child(2n),
div#cgit table.list tr.nohover-highlight:hover:nth-child(2n) {
background-color: rgb(43, 43, 43);
}
div#cgit table.list tr.nohover,
div#cgit table.list tr.nohover:hover,
div#cgit table.list tr:nth-child(2n+1),
div#cgit table.list tr.nohover-highlight:hover:nth-child(2n+1) {
background-color: rgb(37, 37, 37);
}
div#cgit span.age-days {
color: #060;
}
/*** Diffs ***/
div#cgit table.diff td div.head {
color: rgb(230, 230, 230);
}
div#cgit table.diff td div.hunk {
color: grey;
}
div#cgit table.diffstat {
background-color: rgb(37, 37, 37);
border-color: rgb(37, 37, 37);
}
/*** Stats ***/
div#cgit table.stats th {
background-color: rgb(52, 52, 52);
}
div#cgit table.stats th,
div#cgit table.stats td {
border-color: rgb(52, 52, 52);
}
/*** Blobs ***/
div#cgit table.blob td.lines,
div#cgit table.blob .kwa,
div#cgit table.blob .kwc,
div#cgit table.blob .opt {
color: rgb(230, 230, 230);
}
div#cgit table.blob .kwd {
color: #0057ae;
}
/*** Blames ***/
div#cgit table.blame div.alt:nth-child(2n) {
background-color: rgb(43, 43, 43);
}
div#cgit table.blame div.alt:nth-child(2n+1) {
background-color: rgb(37, 37, 37);
}
/*** Libravatar ***/
div#cgit span.libravatar img.inline {
background-color: #eee;
}
/*** Markdown ***/
.markdown-body h1, .markdown-body h2,
.markdown-body h1 a.toclink, .markdown-body h2 a.toclink, .markdown-body h3 a.toclink,
.markdown-body h4 a.toclink, .markdown-body h5 a.toclink, .markdown-body h6 a.toclink,
.markdown-body h1 .mini-icon-link, .markdown-body h2 .mini-icon-link, .markdown-body h3 .mini-icon-link,
.markdown-body h4 .mini-icon-link, .markdown-body h5 .mini-icon-link, .markdown-body h6 .mini-icon-link {
color: rgb(230, 230, 230) !important;
}
.markdown-body h6, .markdown-body blockquote {
color: #888 !important;
}
.markdown-body code, .markdown-body tt, .markdown-body .highlight,
.markdown-body pre, .markdown-body .highlight pre {
background-color: rgb(52, 52, 52) !important;
border-color: rgb(52, 52, 52) !important;
}
.markdown-body table tr {
background-color: rgb(37, 37, 37) !important;
}
.markdown-body table tr:nth-child(2n) {
background-color: rgb(43, 43, 43) !important;
}
/*** ReST ***/
div#summary h1 a.toc-backref, div#summary h2 a.toc-backref, div#summary h3 a.toc-backref,
div#summary h4 a.toc-backref, div#summary h5 a.toc-backref, div#summary h6 a.toc-backref {
color: rgb(230, 230, 230) !important;
}
div#summary div.sidebar { background-color: rgb(52, 52, 52) !important }
div#summary pre.code, div#summary code { background-color: rgb(52, 52, 52) !important }
div#summary pre.code .comment, div#summary code .comment { color: #888 !important }
div#summary pre.code .keyword, div#summary code .keyword { color: #080 !important }
div#summary pre.code .literal.string, div#summary code .literal.string {
color: #d20 !important; background-color: rgb(65, 52, 52) !important }
div#summary pre.code .name.builtin, div#summary code .name.builtin { color: #20b2aa !important }
div#summary pre.code .deleted, div#summary code .deleted { background-color: rgb(166, 23, 23) !important }
div#summary pre.code .inserted, div#summary code .inserted { background-color: rgb(52, 65, 52) !important }
/*** Syntax highlighting ***/
.highlight .cs, .highlight .s, .highlight .sa, .highlight .sb, .highlight .sc,
.highlight .dl, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh,
.highlight .si, .highlight .sx, .highlight .sr, .highlight .s1, .highlight .ss,
.highlight .err { background-color: rgb(65, 52, 52) !important }
.highlight .gd { color: rgb(166, 23, 23) !important; background-color: rgb(65, 52, 52) !important }
.highlight .gi { color: rgb(23, 166, 23) !important; background-color: rgb(52, 65, 52) !important }
.highlight .hll { background-color: rgb(65, 65, 52) !important }
td.linenos .special, span.linenos.special { color: rgb(230, 230, 230) !important; background-color: rgb(65, 65, 52) !important }
.highlight .gp, .highlight .gu, .highlight .nd { color: #888 !important }
.highlight .gh, .highlight .si, .highlight .vi { color: #777 !important }
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh,
.highlight .mi, .highlight .mo, .highlight .il { color: #20b2aa !important }
.highlight .no, .highlight .nb, .highlight .bp { color: #20b2aa !important }
.highlight .se { color: #15e !important }
|