]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/static/css/themes/dark.css
Rollup merge of #100350 - jhpratt:stringify-vis, r=cjgillot
[rust.git] / src / librustdoc / html / static / css / themes / dark.css
1 :root {
2         --main-background-color: #353535;
3         --main-color: #ddd;
4         --settings-input-color: #2196f3;
5         --sidebar-background-color: #505050;
6         --sidebar-background-color-hover: #676767;
7         --code-block-background-color: #2A2A2A;
8         --scrollbar-track-background-color: #717171;
9         --scrollbar-thumb-background-color: rgba(32, 34, 37, .6);
10         --scrollbar-color: rgba(32,34,37,.6) #5a5a5a;
11         --headings-border-bottom-color: #d2d2d2;
12 }
13
14 .slider {
15         background-color: #ccc;
16 }
17 .slider:before {
18         background-color: white;
19 }
20 input:focus + .slider {
21         box-shadow: 0 0 0 2px #0a84ff, 0 0 0 6px rgba(10, 132, 255, 0.3);
22 }
23
24 .in-band {
25         background-color: #353535;
26 }
27
28 .rust-logo {
29         filter: drop-shadow(1px 0 0px #fff)
30                 drop-shadow(0 1px 0 #fff)
31                 drop-shadow(-1px 0 0 #fff)
32                 drop-shadow(0 -1px 0 #fff)
33 }
34
35 .sidebar .current,
36 .sidebar a:hover {
37         background: #444;
38 }
39
40 .line-numbers span { color: #3B91E2; }
41 .line-numbers .line-highlighted {
42         background-color: #0a042f !important;
43 }
44
45 .docblock table td, .docblock table th {
46         border-color: #ddd;
47 }
48
49 .search-results a:hover {
50         background-color: #777;
51 }
52
53 .search-results a:focus {
54         color: #eee !important;
55         background-color: #616161;
56 }
57 .search-results a:focus span { color: #eee !important; }
58 a.result-trait:focus { background-color: #013191; }
59 a.result-traitalias:focus { background-color: #013191; }
60 a.result-mod:focus,
61 a.result-externcrate:focus { background-color: #884719; }
62 a.result-enum:focus { background-color: #194e9f; }
63 a.result-struct:focus { background-color: #194e9f; }
64 a.result-union:focus { background-color: #194e9f; }
65 a.result-fn:focus,
66 a.result-method:focus,
67 a.result-tymethod:focus { background-color: #4950ed; }
68 a.result-type:focus { background-color: #194e9f; }
69 a.result-associatedtype:focus { background-color: #884719; }
70 a.result-foreigntype:focus { background-color: #194e9f; }
71 a.result-attr:focus,
72 a.result-derive:focus,
73 a.result-macro:focus { background-color: #217d1c; }
74 a.result-constant:focus,
75 a.result-static:focus { background-color: #884719; }
76 a.result-primitive:focus { background-color: #194e9f; }
77 a.result-keyword:focus { background-color: #884719; }
78
79 .content .item-info::before { color: #ccc; }
80
81 .content span.enum, .content a.enum, .block a.current.enum { color: #2dbfb8; }
82 .content span.struct, .content a.struct, .block a.current.struct { color: #2dbfb8; }
83 .content span.type, .content a.type, .block a.current.type { color: #2dbfb8; }
84 .content span.associatedtype,
85 .content a.associatedtype,
86 .block a.current.associatedtype { color: #D2991D; }
87 .content span.foreigntype, .content a.foreigntype, .block a.current.foreigntype { color: #2dbfb8; }
88 .content span.attr, .content a.attr, .block a.current.attr,
89 .content span.derive, .content a.derive, .block a.current.derive,
90 .content span.macro, .content a.macro, .block a.current.macro { color: #09bd00; }
91 .content span.union, .content a.union, .block a.current.union { color: #2dbfb8; }
92 .content span.constant, .content a.constant, .block a.current.constant,
93 .content span.static, .content a.static, .block a.current.static { color: #D2991D; }
94 .content span.primitive, .content a.primitive, .block a.current.primitive { color: #2dbfb8; }
95 .content span.externcrate,
96 .content span.mod, .content a.mod, .block a.current.mod { color: #D2991D; }
97 .content span.trait, .content a.trait, .block a.current.trait { color: #b78cf2; }
98 .content span.traitalias, .content a.traitalias, .block a.current.traitalias { color: #b78cf2; }
99 .content span.fn, .content a.fn, .block a.current.fn,
100 .content span.method, .content a.method, .block a.current.method,
101 .content span.tymethod, .content a.tymethod, .block a.current.tymethod,
102 .content .fnname{ color: #2BAB63; }
103 .content span.keyword, .content a.keyword, .block a.current.keyword { color: #D2991D; }
104
105 .sidebar a { color: #fdbf35; }
106 .sidebar a.current.enum { color: #12ece2; }
107 .sidebar a.current.struct { color: #12ece2; }
108 .sidebar a.current.type { color: #12ece2; }
109 .sidebar a.current.associatedtype { color: #fdbf35; }
110 .sidebar a.current.foreigntype { color: #12ece2; }
111 .sidebar a.current.attr,
112 .sidebar a.current.derive,
113 .sidebar a.current.macro { color: #0be900; }
114 .sidebar a.current.union { color: #12ece2; }
115 .sidebar a.current.constant
116 .sidebar a.current.static { color: #fdbf35; }
117 .sidebar a.current.primitive { color: #12ece2; }
118 .sidebar a.current.externcrate
119 .sidebar a.current.mod { color: #fdbf35; }
120 .sidebar a.current.trait { color: #cca7ff; }
121 .sidebar a.current.traitalias { color: #cca7ff; }
122 .sidebar a.current.fn,
123 .sidebar a.current.method,
124 .sidebar a.current.tymethod { color: #32d479; }
125 .sidebar a.current.keyword { color: #fdbf35; }
126
127 pre.rust .comment { color: #8d8d8b; }
128 pre.rust .doccomment { color: #8ca375; }
129
130 nav.main .current {
131         border-top-color: #eee;
132         border-bottom-color: #eee;
133 }
134 nav.main .separator {
135         border-color: #eee;
136 }
137
138 a {
139         color: #D2991D;
140 }
141
142 body.source .example-wrap pre.rust a {
143         background: #333;
144 }
145
146 details.rustdoc-toggle > summary.hideme > span,
147 details.rustdoc-toggle > summary::before {
148         color: #999;
149 }
150
151 details.rustdoc-toggle > summary::before {
152         filter: invert(100%);
153 }
154
155 #crate-search, .search-input {
156         color: #111;
157         background-color: #f0f0f0;
158         border-color: #f0f0f0;
159 }
160
161 #crate-search {
162         /* Without the `!important`, the border-color is ignored for `<select>`...
163            It cannot be in the group above because `.search-input` has a different border color on
164            hover. */
165         border-color: #f0f0f0 !important;
166 }
167
168 .search-input {
169         border-color: #e0e0e0;
170 }
171
172 .search-input:focus {
173         border-color: #008dfd;
174 }
175
176 .stab { background: #314559; }
177
178 .stab.portability > code {
179         color: #e6e1cf;
180         background: none;
181 }
182
183 .rightside,
184 .out-of-band {
185         color: grey;
186 }
187
188 .line-numbers :target { background-color: transparent; }
189
190 /* Code highlighting */
191 pre.rust .kw { color: #ab8ac1; }
192 pre.rust .kw-2, pre.rust .prelude-ty { color: #769acb; }
193 pre.rust .number, pre.rust .string { color: #83a300; }
194 pre.rust .self, pre.rust .bool-val, pre.rust .prelude-val,
195 pre.rust .attribute, pre.rust .attribute .ident { color: #ee6868; }
196 pre.rust .macro, pre.rust .macro-nonterminal { color: #3E999F; }
197 pre.rust .lifetime { color: #d97f26; }
198 pre.rust .question-mark {
199         color: #ff9011;
200 }
201
202 .example-wrap > pre.line-number {
203         border-color: #4a4949;
204 }
205
206 a.test-arrow {
207         color: #dedede;
208         background-color: rgba(78, 139, 202, 0.2);
209 }
210
211 a.test-arrow:hover{
212         background-color: #4e8bca;
213 }
214
215 .toggle-label,
216 .code-attribute {
217         color: #999;
218 }
219
220 :target {
221         background-color: #494a3d;
222         border-right: 3px solid #bb7410;
223 }
224
225 pre.compile_fail {
226         border-left: 2px solid rgba(255,0,0,.8);
227 }
228
229 pre.compile_fail:hover, .information:hover + pre.compile_fail {
230         border-left: 2px solid #f00;
231 }
232
233 pre.should_panic {
234         border-left: 2px solid rgba(255,0,0,.8);
235 }
236
237 pre.should_panic:hover, .information:hover + pre.should_panic {
238         border-left: 2px solid #f00;
239 }
240
241 pre.ignore {
242         border-left: 2px solid rgba(255,142,0,.6);
243 }
244
245 pre.ignore:hover, .information:hover + pre.ignore {
246         border-left: 2px solid #ff9200;
247 }
248
249 .tooltip.compile_fail {
250         color: rgba(255,0,0,.8);
251 }
252
253 .information > .compile_fail:hover {
254         color: #f00;
255 }
256
257 .tooltip.should_panic {
258         color: rgba(255,0,0,.8);
259 }
260
261 .information > .should_panic:hover {
262         color: #f00;
263 }
264
265 .tooltip.ignore {
266         color: rgba(255,142,0,.6);
267 }
268
269 .information > .ignore:hover {
270         color: #ff9200;
271 }
272
273 .search-failed a {
274         color: #0089ff;
275 }
276
277 .tooltip::after {
278         background-color: #000;
279         color: #fff;
280         border-color: #000;
281 }
282
283 .tooltip::before {
284         border-color: transparent black transparent transparent;
285 }
286
287 .notable-traits-tooltiptext {
288         background-color: #111;
289         border-color: #777;
290 }
291
292 .notable-traits-tooltiptext .notable {
293         border-bottom-color: #d2d2d2;
294 }
295
296 #titles > button:not(.selected) {
297         background-color: #252525;
298         border-top-color: #252525;
299 }
300
301 #titles > button:hover, #titles > button.selected {
302         border-top-color: #0089ff;
303         background-color: #353535;
304 }
305
306 #titles > button > div.count {
307         color: #888;
308 }
309
310 @media (max-width: 700px) {
311         .sidebar-elems {
312                 border-right-color: #000;
313         }
314 }
315
316 kbd {
317         color: #000;
318         background-color: #fafbfc;
319         border-color: #d1d5da;
320         border-bottom-color: #c6cbd1;
321         box-shadow: inset 0 -1px 0 #c6cbd1;
322 }
323
324 #settings-menu > a, #help-button > button {
325         border-color: #e0e0e0;
326         background: #f0f0f0;
327         color: #000;
328 }
329
330 #settings-menu > a:hover, #settings-menu > a:focus,
331 #help-button > button:hover, #help-button > button:focus {
332         border-color: #ffb900;
333 }
334
335 .popover, .popover::before,
336 #help-button span.top, #help-button span.bottom {
337         border-color: #d2d2d2;
338 }
339
340 #copy-path {
341         color: #999;
342 }
343 #copy-path > img {
344         filter: invert(50%);
345 }
346 #copy-path:hover > img {
347         filter: invert(65%);
348 }
349
350 #theme-choices {
351         border-color: #e0e0e0;
352         background-color: #353535;
353 }
354
355 #theme-choices > button:not(:first-child) {
356         border-top-color: #e0e0e0;
357 }
358
359 #theme-choices > button:hover, #theme-choices > button:focus {
360         background-color: #4e4e4e;
361 }
362
363 .search-results .result-name span.alias {
364         color: #fff;
365 }
366 .search-results .result-name span.grey {
367         color: #ccc;
368 }
369
370 #source-sidebar > .title {
371         border-bottom-color: #ccc;
372 }
373 #source-sidebar div.files > a:hover, details.dir-entry summary:hover,
374 #source-sidebar div.files > a:focus, details.dir-entry summary:focus {
375         background-color: #444;
376 }
377 #source-sidebar div.files > a.selected {
378         background-color: #333;
379 }
380
381 .scraped-example-list .scrape-help {
382         border-color: #aaa;
383         color: #eee;
384 }
385 .scraped-example-list .scrape-help:hover {
386         border-color: white;
387         color: white;
388 }
389 .more-examples-toggle summary, .more-examples-toggle .hide-more {
390         color: #999;
391 }
392 .scraped-example .example-wrap .rust span.highlight {
393         background: rgb(91, 59, 1);
394 }
395 .scraped-example .example-wrap .rust span.highlight.focus {
396         background: rgb(124, 75, 15);
397 }
398 .scraped-example:not(.expanded) .code-wrapper:before {
399         background: linear-gradient(to bottom, rgba(53, 53, 53, 1), rgba(53, 53, 53, 0));
400 }
401 .scraped-example:not(.expanded) .code-wrapper:after {
402         background: linear-gradient(to top, rgba(53, 53, 53, 1), rgba(53, 53, 53, 0));
403 }
404 .toggle-line-inner {
405         background: #999;
406 }
407 .toggle-line:hover .toggle-line-inner {
408         background: #c5c5c5;
409 }