Skip to content

Commit

Permalink
Rollup merge of rust-lang#93291 - conradludgate:minor-fix-93231, r=Gu…
Browse files Browse the repository at this point in the history
…illaumeGomez

minor fix for rust-lang#93231

In rust-lang#93231 I introduced the new sidebar colours to make the contrast more balanced and easier to read, but it seems I made a copy-paste error in the light theme, resulting in functions appearing green.

This one line change replaces that colour with it's corrected orange/brown colour.

I have double checked the rest of the colours and they seem ok. Sorry for the inconvenience
  • Loading branch information
matthiaskrgr authored Jan 25, 2022
2 parents c8999d9 + e947dc6 commit b2c21ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/css/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ a.result-keyword:focus { background-color: #afc6e4; }
.sidebar a.current.traitalias { color: #4b349e; }
.sidebar a.current.fn,
.sidebar a.current.method,
.sidebar a.current.tymethod { color: #32d479; }
.sidebar a.current.tymethod { color: #a67736; }
.sidebar a.current.keyword { color: #356da4; }

nav.main .current {
Expand Down

0 comments on commit b2c21ab

Please sign in to comment.