Consistent case for color codes

This commit is contained in:
Luflosi 2019-02-25 14:40:39 +01:00
parent a1e9b854e3
commit 3b34cec64c
No known key found for this signature in database
GPG Key ID: 14140F703B7D8362
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ def syntax_aliases(raw):
c('search_bg', '#444', long_text=_('Highlighting'))
c('search_fg', 'white')
c('select_bg', '#B4D5FE')
c('select_bg', '#b4d5fe')
c('select_fg', 'black')
g('shortcuts')

View File

@ -371,7 +371,7 @@ def scrollback_pager_history_size(x):
g('mouse') # {{{
o('url_color', '#0087BD', option_type=to_color, long_text=_('''
o('url_color', '#0087bd', option_type=to_color, long_text=_('''
The color and style for highlighting URLs on mouse-over.
:code:`url_style` can be one of: none, single, double, curly'''))
@ -693,7 +693,7 @@ def selection_foreground(x):
o('selection_foreground', '#000000', option_type=selection_foreground, long_text=_('''
The foreground for text selected with the mouse. A value of none means to leave the color unchanged.'''))
o('selection_background', '#FFFACD', option_type=to_color, long_text=_('''
o('selection_background', '#fffacd', option_type=to_color, long_text=_('''
The background for text selected with the mouse.'''))
g('colors.table')