In Eclipse-Java EE, how to change color options for selected items in a tree?

I recently switched to a dark theme on Eclipse Java EE Luna, even tried other dark themes such as moonrise, but I always have to tweak some settings to read things (which, by the way, I have to tweak it again every time I restart the eclipse, I hope they fix this ticket soon!)

However, I could not figure out how to fix the most unpleasant problem. In some views, such as the Navigator view, I can read the selected item correctly: enter image description here

In other cases (e.g. browsing the package explorer, search and servers) this is what I get:

enter image description here

As you can see, the text of the selected item is quite difficult to read.

. , config, CSS . , . ?

+4
1

. eclipse/plugins/org.eclipse.ui.themes_x.x.x..../css e4-dark_win.css ( ). CTabFolder Tree, CTabFolder Canvas .MPartStack.active Tree, .MPartStack.active CTabFolder Canvas color - .

.

CTabFolder Tree, CTabFolder Canvas {
    background-color: #2F2F2F;
    color: #ffffaa;
}
.MPartStack.active Tree,
.MPartStack.active CTabFolder Canvas {
    background-color: #262626;
    color: #ffffaa;
}
+2

All Articles