jkaving / intellij-colors-solarized

Solarized Colorscheme for IntelliJ IDEA
3.26k stars 430 forks source link

Foreground color matches background color for reStructuredText Interpreted text. #144

Closed scottwernervt closed 9 months ago

scottwernervt commented 7 years ago

Setup

Bug Foreground color matches matches the background color. Text is always hidden when cursor is inside backticks.

Instructions

Workaround For Interpreted text, disable the Foreground color or set it to a new color like base01 (RGB: 88 110 117).

restructuredtext-text-hidden-backticks

Any recommendations on what color we should use from Solarized_Colors.pdf?

jkaving commented 7 years ago

The problem is that the yellow background color requires a darker text color. This clashes with the background color for the caret row (which is also dark).

A possible solution is to use #073642 (base02 - the same color as the caret row) as the background and don't set the foreground:

screenshot of pycharm community edition 2017-04-11 23-36-40

The effect will be that the special background color for Interpreted text will disappear on the selected row, but the text will always be readable.

jkaving commented 9 months ago

Fixed by removing the special colors and just inheriting from the default identifier (like IntelliJ's built-in schemes do).