Description
In my ConEmu terminal the cursor position is pale green over grey with very low contrast and is barely readable. I cycled through the themes offered by ConEmu and even the best contrast is still hard to read. I tried to customize through .pyvimrc
by adding the following:
editor.use_colorscheme('friendly')
my_style_extensions = {
# Toolbar colors.
Token.Toolbar.Status: '#ffffff bg:#333333',
Token.Toolbar.Status.CursorPosition: '#bbffbb bg:#333333',
Token.Toolbar.Status.Percentage: '#ffbbbb bg:#333333',
}
editor.current_style.styles.update(my_style_extensions)
I am trying to darken the toolbar background but it seems to have no effect on the mode line. I must not be understanding something correctly however there is no documentation on how these colors are used. I.e. I am merely guess that toolbar style controls the mode line but it is not clear that is indeed the case.
On a more basic level I noticed that terminal color themes do seem to change font colors as well, sometimes a little but sometimes dramatically. Is there any pointer on how these pygment styles are translated to terminal colors as the terminal supposedly only supports 256 colors?