Skip to content

Commit

Permalink
Rollup merge of rust-lang#47806 - PramodBisht:feature/47801, r=stevek…
Browse files Browse the repository at this point in the history
…labnik

Changed color of struct link from #ff794d to #2dbfb8 for Rust docs

This is in reference to rust-lang#47801

here I have changed the default color of struct link for `#ff794d` to `#2dbfb8`

cc: @nagisa  @timClicks
  • Loading branch information
kennytm committed Feb 14, 2018
2 parents 8671f69 + 434bfb1 commit c89976e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ pre {
.content .highlighted.primitive { background-color: #00708a; }

.content span.enum, .content a.enum, .block a.current.enum { color: #82b089; }
.content span.struct, .content a.struct, .block a.current.struct { color: #ff794d; }
.content span.struct, .content a.struct, .block a.current.struct { color: #2dbfb8; }
.content span.type, .content a.type, .block a.current.type { color: #ff7f00; }
.content span.foreigntype, .content a.foreigntype, .block a.current.foreigntype { color: #dd7de8; }
.content span.macro, .content a.macro, .block a.current.macro { color: #09bd00; }
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/themes/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ pre {
.content .highlighted.primitive { background-color: #9aecff; }

.content span.enum, .content a.enum, .block a.current.enum { color: #508157; }
.content span.struct, .content a.struct, .block a.current.struct { color: #df3600; }
.content span.struct, .content a.struct, .block a.current.struct { color: #ad448e; }
.content span.type, .content a.type, .block a.current.type { color: #ba5d00; }
.content span.foreigntype, .content a.foreigntype, .block a.current.foreigntype { color: #cd00e2; }
.content span.macro, .content a.macro, .block a.current.macro { color: #068000; }
Expand Down

0 comments on commit c89976e

Please sign in to comment.