Eclipse change 'view' border color - eclipse

Is there a way to change the color of the grids in eclipse?
I am using the built-in 'Dark' theme, and the grid lines are too bright for me, they mess with my vision, I have some visual snow.

I think that is based on the "Window Color and Appearance" (that's the given name if you are under windows) of your desktop personalization just like the top bar maximize/minimize/close.
So you can always go there and change it in "3D objects", but be aware that this change will affect your whole desktop/windows visuals.
Altho, that beeing said, I know that there are ways tweak it around. This could give you a hand: http://marketplace.eclipse.org/content/eclipse-4-chrome-theme#.UYrzEkAW1J0
Also a tool called css spy will help you find what you want to edit faster: http://marketplace.eclipse.org/content/eclipse-4-tools-css-spy#.UYrzSkAW1J0

Related

Eclipse dark theme arrow color

I was looking at this dark theme post and applied Moonrise theme on Eclipse Juno. I love everything it lays out except for the expandable arrow color. It's barely visible when my mouse isn't hovered. Does anyone know if this is possible to change?
As Spyros has mentioned, the author noted that the arrows color is impossible to change which is unfortunate.
Regardless, if you don't mind working under old graphic properties (yay!), the system arrow is replaced with a white box plus sign which makes everything visible. The drawback is, of course, the Windows 7 theme is gone. Found this by accident when trying to solve the performance issue: Look at Pyree's solution
I am afraid that is not possible due to the limitation of the css engine used to theme eclipse, according to the theme's author. (github)

eclipse editor colors - how to set in outline view

The line that is highlighted on Eclipse is really hard for me to see. I am color blind, but I can see colors. I assume the the highlight color in the outline screen has very little contrast to the other colors. Thank you!
Anyway I will try and attach a graphic.... anyone know to change this?
I think I have something usable enough to post as an answer. You didn't specify the OS that you're using but from the screenshot it looked like Windows 7/Vista with the Aero theme. Like I mentioned in my comment to your question, from this and this, it looks like there isn't any [straightforward] way to change the highlight color.
However, if you don't mind losing the Aero effects, you can switch to the Windows Classic theme to get a different highlighting that IMO provides more contrast and better readability.

Setting a dark color theme in Eclipse makes the function tooltips unreadable

I've found that setting a dark color theme in Eclipse makes the function tooltips unreadable.
This is probably easiest to describe with a picture:
alt text http://img256.imageshack.us/img256/9503/blahi.gif
Any ideas how to fix this?
The best solution i've found is to leave eclipse in normal bright mode, and use an OS level screen inverter.
On OSX you can do command-shift-8 (i think that's the key combo), inverts the whole screen
on linux with compiz, it's even better, you can do windows-n to darken windows selectively. (or windows-m to do the whole screen)
on windows, the only decent solution i've found is powerstrip, but it's only free for one year.. then it's like $30 or something..
then you can invert the screen, adjust the syntax-level colours to your liking, and you're off to the races, with cool shades on.
If you are running Eclipse in Ubuntu or other environment where it uses GTK+ themes, you can follow this guide to edit the tooltip and autocomplete colours from outside Eclipse. Not the ideal solution, but it does the trick.

Is it possible to change the background color of text highlighted while using a code template in Eclipse?

In other words, when you type for and hit ctrl+space, you can pick various template for loops. After selecting, it creates the code and lets you tab between various aspects of the code (such as which array you're looping over). I've switched to dark colors on Eclipse, but I can't find anywhere to change the highlight for these tab areas, so they show up with light backgrounds and my light foreground colors and are completely unreadable.
Is it possible to change these colors somewhere? If so, where?
It took me some time, but I found it.
Look under window>Preferences>General>Text Editors>Linked Mode
Then it is "Editable Range" you are looking for.
In preferences:
Result:
Since you didn't find a prefs setting by searching for "color", there probably is no way to do this. I suggest to open a bug at https://bugs.eclipse.org/bugs/

Eclipse codebase: is there a place that can intercept all the coloring data?

I'm thinking of making an easy global dark background switch for Eclipse.
For example intercept all the colors that are about to be rendered and replace them: (R,G,B) -> (255-R, 255-G, 255-B).
Can you suggest Eclipse source spots where it can be done?
The current problems are
Every language-color pair must be manually modified
There are vertical bars that are always white
The related questions:
Is there a simple, consistent way to change the color scheme of eclipse editors?
Dark colorscheme for eclipse?
There is none. I once explored making a dark color scheme for an Eclipse-based IDE we were creating for our customers. The vertical bars do stay white, and some other colors could not be changed too.
Now, I must say there is always an obscure way to do something. If you really want that, and have required Java programming skills, you could write an Equinox adaptor hook that would run byte-code instrumentation on SWT to intercept all color-related calls and proxy them through your color mapper. (Ask on SO if you need help with that.)