Heap status foreground colour is hard to read
Maybe we could give it some red and green(ish) as well :)
Nice catch, I usually have the heap status hidden so I wouldn’t have noticed this :) good suggestion!
Nice catch, I usually have the heap status hidden so I wouldn’t have noticed this :) good suggestion!
Yup, me too. I just switched to another workspace where I have it visible... and there it was ;)
It seems that the colors used are hardcoded to some extent, see HeapStatus.java.
If you use a color picker on the HeapStatus used mem, it gives 160, 160, 160 in RGB values.
usedMemCol = new Color(display, 160, 160, 160); // gray
lowMemCol = new Color(display, 255, 70, 70); // medium red
freeMemCol = new Color(display, 255, 190, 125); // light orange
Also the heap status looks the same no matter what Platform theme is used.
An upstream bug should be made about this.
Upstream bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=564710