From 31c3e7ed7838ff6e0f92b26d3f18716d49cee0c6 Mon Sep 17 00:00:00 2001 From: Liigo Zhuang Date: Sat, 25 Apr 2015 06:57:18 +0800 Subject: [PATCH] rustdoc: change color of trait types Fixes #24441 --- src/librustdoc/html/static/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustdoc/html/static/main.css b/src/librustdoc/html/static/main.css index c94dbc15103..b907e9e20b6 100644 --- a/src/librustdoc/html/static/main.css +++ b/src/librustdoc/html/static/main.css @@ -392,7 +392,7 @@ a { text-decoration: underline; } -.content span.trait, .content a.trait, .block a.current.trait { color: #ed9603; } +.content span.trait, .content a.trait, .block a.current.trait { color: #8866ff; } .content span.mod, .content a.mod, block a.current.mod { color: #4d76ae; } .content span.enum, .content a.enum, .block a.current.enum { color: #5e9766; } .content span.struct, .content a.struct, .block a.current.struct { color: #e53700; }