Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change javadoc view font color in eclipse?

Java doc view looks like this

Java doc shows like this,it seems font color is white,so how to change font color?

My configuration:

Ubuntu 12.10 64bit desktop eclipse 4.2 classic theme

like image 564
Alex Luya Avatar asked Jan 21 '13 03:01

Alex Luya


People also ask

How to change font for Java code in Eclipse?

How to change font for Java code in Eclipse 1 Select General > Appearance > Colorsand Fonts (1) in the left pane. 2 Select Java Editor Text Font (2) in the center. 3 Click Edit… button in the right. More ...

How do I change the color of the Java editor text?

In the Preferences dialog: Select General > Appearance > Colorsand Fonts (1) in the left pane. Select Java Editor Text Font (2) in the center. Click Edit… button in the right.

How do I change the color of error text in Eclipse?

Select to customize the color of something in Eclipse, for example the color of Error Text in your Workbench Colors and Fonts Basic preferences. In the color selection dialog, tab twice to go from the Basic Color matrix to the Define Custom Colors button and press Enter.

How to change the skin of Eclipse using color theme?

Now that we have installed the color theme plugin, it is time to use this plugin and change the skin of Eclipse. Go to Menu->Windows->Preference: In the left sidebar, go to General->Appearance->Color Theme. When you select that, it will show you different available themes in the right pane. You can choose the one you like and press OK.


1 Answers

Well, your are right.. JavaDoc seems to be white! You can check just making a change to the "font color" from your own JavaDoc to test it out, like this:

/**
 * <font color="white">This is some text with some color!</font>
 * 
 */

But this does not answer your question, so maybe you could look into:

  • Window > Preferences > General > Appearance --> Try to change your Theme and see if it works for you.

    or

  • Window > Preferences > General > Appearance > Colors And Fonts > Java > Javadoc View Background

It's not exactly the answer but it's a good start! And maybe being able to change you JavaDoc Background you could read all javadocs and keep up with the good work! ;P

like image 124
Filipe Wolve Avatar answered Sep 24 '22 19:09

Filipe Wolve