From 2aba477e840741976c3fbd4e08341e24bfc4ce0f Mon Sep 17 00:00:00 2001 From: Fabien Benureau Date: Thu, 22 Jan 2015 04:09:15 +0100 Subject: [PATCH] downplaying colors, authors are just bold --- pubs/pretty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubs/pretty.py b/pubs/pretty.py index bd45872..f9d2cce 100644 --- a/pubs/pretty.py +++ b/pubs/pretty.py @@ -32,7 +32,7 @@ def bib_oneliner(bibentry): journal = ' ' + bibentry.get('booktitle', '') return u'{authors} \"{title}\"{journal}{year}'.format( - authors=color.dye(authors, color.cyan), + authors=color.dye(authors, color.grey, bold=True), title=bibentry['title'], journal=color.dye(journal, color.yellow), year=' ({})'.format(bibentry['year']) if 'year' in bibentry else '',