Skip to content

Commit

Permalink
Fix heading colours in Ayu theme
Browse files Browse the repository at this point in the history
Closes #87828 
The issue seems to stem from #87210 where code headings were changed from a heading containing code to a heading with the `code-header` class. `rustdoc.css` was updated, but `ayu.css` was missed.
  • Loading branch information
tsoutsman committed Aug 8, 2021
1 parent c4c2986 commit 9a78489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/css/themes/ayu.css
Expand Up @@ -37,7 +37,7 @@ h4 {
.docblock code {
color: #ffb454;
}
h3 > code, h4 > code, h5 > code {
.code-header {
color: #e6e1cf;
}
pre > code {
Expand Down

0 comments on commit 9a78489

Please sign in to comment.