diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-07-29 09:24:22 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-29 09:24:22 +0900 |
| commit | 1de0211d8e1398ff87a466708f65613afbe7ee3d (patch) | |
| tree | 21ed7c81cdca50401ab594e0e3dd1496fc411a02 | |
| parent | 451ed88b8be2bd09cad56b84fb32beae099170d2 (diff) | |
| parent | 5faef5e00c8a301d6f44e44633ae5150a14ee34c (diff) | |
| download | rust-1de0211d8e1398ff87a466708f65613afbe7ee3d.tar.gz rust-1de0211d8e1398ff87a466708f65613afbe7ee3d.zip | |
Rollup merge of #74864 - lzutao:ayu-doccolor, r=GuillaumeGomez
ayu theme: Change doccomment color to `#a1ac88` Before:  After:  Close #74788
| -rw-r--r-- | src/librustdoc/html/static/themes/ayu.css | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/librustdoc/html/static/themes/ayu.css b/src/librustdoc/html/static/themes/ayu.css index 01b7ae87786..f4710f6ae87 100644 --- a/src/librustdoc/html/static/themes/ayu.css +++ b/src/librustdoc/html/static/themes/ayu.css @@ -197,9 +197,8 @@ pre { color: #a37acc; } -pre.rust .comment, pre.rust .doccomment { - color: #788797; -} +pre.rust .comment { color: #788797; } +pre.rust .doccomment { color: #a1ac88; } nav:not(.sidebar) { border-bottom-color: #424c57; |
