]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/static/css/themes/ayu.css
Rollup merge of #105756 - notriddle:notriddle/example-wrap-tooltip, r=GuillaumeGomez
[rust.git] / src / librustdoc / html / static / css / themes / ayu.css
1 /*
2 Based off of the Ayu theme
3 Original by Dempfi (https://github.com/dempfi/ayu)
4 */
5
6 :root {
7         --main-background-color: #0f1419;
8         --main-color: #c5c5c5;
9         --settings-input-color: #ffb454;
10         --settings-button-color: #fff;
11         --settings-button-border-focus: #e0e0e0;
12         --sidebar-background-color: #14191f;
13         --sidebar-background-color-hover: rgba(70, 70, 70, 0.33);
14         --code-block-background-color: #191f26;
15         --scrollbar-track-background-color: transparent;
16         --scrollbar-thumb-background-color: #5c6773;
17         --scrollbar-color: #5c6773 #24292f;
18         --headings-border-bottom-color: #5c6773;
19         --border-color: #5c6773;
20         --button-background-color: #141920;
21         --right-side-color: grey;
22         --code-attribute-color: #999;
23         --toggles-color: #999;
24         --toggle-filter: invert(100%);
25         --search-input-focused-border-color: #5c6773; /* Same as `--border-color`. */
26         --copy-path-button-color: #fff;
27         --copy-path-img-filter: invert(70%);
28         --copy-path-img-hover-filter: invert(100%);
29         --codeblock-error-hover-color: rgb(255, 0, 0);
30         --codeblock-error-color: rgba(255, 0, 0, .5);
31         --codeblock-ignore-hover-color: rgb(255, 142, 0);
32         --codeblock-ignore-color: rgba(255, 142, 0, .6);
33         --type-link-color: #ffa0a5;
34         --trait-link-color: #39afd7;
35         --assoc-item-link-color: #39afd7;
36         --function-link-color: #fdd687;
37         --macro-link-color: #a37acc;
38         --keyword-link-color: #39afd7;
39         --mod-link-color: #39afd7;
40         --link-color: #39afd7;
41         --sidebar-link-color: #53b1db;
42         --sidebar-current-link-background-color: transparent;
43         --search-result-link-focus-background-color: #3c3c3c;
44         --search-result-border-color: #aaa3;
45         --search-color: #fff;
46         --search-results-alias-color: #c5c5c5;
47         --search-results-grey-color: #999;
48         --stab-background-color: #314559;
49         --stab-code-color: #e6e1cf;
50         --code-highlight-kw-color: #ff7733;
51         --code-highlight-kw-2-color: #ff7733;
52         --code-highlight-lifetime-color: #ff7733;
53         --code-highlight-prelude-color: #69f2df;
54         --code-highlight-prelude-val-color: #ff7733;
55         --code-highlight-number-color: #b8cc52;
56         --code-highlight-string-color: #b8cc52;
57         --code-highlight-literal-color: #ff7733;
58         --code-highlight-attribute-color: #e6e1cf;
59         --code-highlight-self-color: #36a3d9;
60         --code-highlight-macro-color: #a37acc;
61         --code-highlight-question-mark-color: #ff9011;
62         --code-highlight-comment-color: #788797;
63         --code-highlight-doc-comment-color: #a1ac88;
64         --example-line-numbers-border-color: none;
65         --src-line-numbers-span-color: #5c6773;
66         --src-line-number-highlighted-background-color: rgba(255, 236, 164, 0.06);
67         --test-arrow-color: #788797;
68         --test-arrow-background-color: rgba(57, 175, 215, 0.09);
69         --test-arrow-hover-color: #c5c5c5;
70         --test-arrow-hover-background-color: rgba(57, 175, 215, 0.368);
71         --target-background-color: rgba(255, 236, 164, 0.06);
72         --target-border-color: rgba(255, 180, 76, 0.85);
73         --tooltip-background-color: #314559;
74         --tooltip-color: #c5c5c5;
75         --kbd-color: #c5c5c5;
76         --kbd-background: #314559;
77         --kbd-box-shadow-color: #5c6773;
78         --rust-logo-filter: drop-shadow(1px 0 0px #fff)
79                 drop-shadow(0 1px 0 #fff)
80                 drop-shadow(-1px 0 0 #fff)
81                 drop-shadow(0 -1px 0 #fff);
82         /* match border-color; uses https://codepen.io/sosuke/pen/Pjoqqp */
83         --crate-search-div-filter: invert(41%) sepia(12%) saturate(487%) hue-rotate(171deg)
84                 brightness(94%) contrast(94%);
85         --crate-search-div-hover-filter: invert(98%) sepia(12%) saturate(81%) hue-rotate(343deg)
86                 brightness(113%) contrast(76%);
87         --crate-search-hover-border: #e0e0e0;
88         --source-sidebar-background-selected: #14191f;
89         --source-sidebar-background-hover: #14191f;
90         --table-alt-row-background-color: #191f26;
91         --codeblock-link-background: #333;
92 }
93
94 h1, h2, h3, h4 {
95         color: white;
96 }
97 h1 a {
98         color: #fff;
99 }
100 h4 {
101         border: none;
102 }
103
104 .docblock code {
105         color: #ffb454;
106 }
107 .code-header {
108         color: #e6e1cf;
109 }
110 .docblock pre > code, pre > code {
111         color: #e6e1cf;
112 }
113 .item-info code {
114         color: #e6e1cf;
115 }
116 .docblock a > code {
117         color: #39AFD7 !important;
118 }
119 pre, .rustdoc.source .example-wrap {
120         color: #e6e1cf;
121 }
122
123 .sidebar .current,
124 .sidebar a:hover {
125         color: #ffb44c;
126 }
127
128 .sidebar-elems .location {
129         color: #ff7733;
130 }
131
132 .src-line-numbers .line-highlighted {
133         color: #708090;
134         padding-right: 4px;
135         border-right: 1px solid #ffb44c;
136 }
137
138 .search-results a:hover {
139         color: #fff !important;
140         background-color: #3c3c3c;
141 }
142
143 .search-results a:focus {
144         color: #fff !important;
145         background-color: #3c3c3c;
146 }
147 .search-results a {
148         color: #0096cf;
149 }
150 .search-results a div.desc {
151         color: #c5c5c5;
152 }
153
154 .sidebar h2 a,
155 .sidebar h3 a {
156         color: white;
157 }
158
159 .result-name .primitive > i, .result-name .keyword > i {
160         color: #788797;
161 }
162
163 #titles > button.selected {
164         background-color: #141920 !important;
165         border-bottom: 1px solid #ffb44c !important;
166         border-top: none;
167 }
168
169 #titles > button:not(.selected) {
170         background-color: transparent !important;
171         border: none;
172 }
173
174 #titles > button:hover {
175         border-bottom: 1px solid rgba(242, 151, 24, 0.3);
176 }
177
178 #titles > button > div.count {
179         color: #888;
180 }
181
182 /* rules that this theme does not need to set, here to satisfy the rule checker */
183 /* note that a lot of these are partially set in some way (meaning they are set
184 individually rather than as a group) */
185 /* FIXME: these rules should be at the bottom of the file but currently must be
186 above the `@media (max-width: 700px)` rules due to a bug in the css checker */
187 /* see https://github.com/rust-lang/rust/pull/71237#issuecomment-618170143 */
188 pre.rust .lifetime {}
189 pre.rust .kw {}
190 #titles > button:hover, #titles > button.selected {}
191 pre.rust .self, pre.rust .bool-val, pre.rust .prelude-val, pre.rust .attribute {}
192 pre.rust .kw-2, pre.rust .prelude-ty {}
193
194 #settings-menu > a img {
195         filter: invert(100);
196 }
197
198 #source-sidebar > .title {
199         color: #fff;
200 }
201 #source-sidebar div.files > a:hover, details.dir-entry summary:hover,
202 #source-sidebar div.files > a:focus, details.dir-entry summary:focus,
203 #source-sidebar div.files > a.selected {
204         color: #ffb44c;
205 }
206
207 .scraped-example-list .scrape-help {
208         border-color: #aaa;
209         color: #eee;
210 }
211 .scraped-example-list .scrape-help:hover {
212         border-color: white;
213         color: white;
214 }
215 .scraped-example .example-wrap .rust span.highlight {
216         background: rgb(91, 59, 1);
217 }
218 .scraped-example .example-wrap .rust span.highlight.focus {
219         background: rgb(124, 75, 15);
220 }
221 .scraped-example:not(.expanded) .code-wrapper:before {
222         background: linear-gradient(to bottom, rgba(15, 20, 25, 1), rgba(15, 20, 25, 0));
223 }
224 .scraped-example:not(.expanded) .code-wrapper:after {
225         background: linear-gradient(to top, rgba(15, 20, 25, 1), rgba(15, 20, 25, 0));
226 }
227 .toggle-line-inner {
228         background: #999;
229 }
230 .toggle-line:hover .toggle-line-inner {
231         background: #c5c5c5;
232 }