13

Regarding Stack Overflow question How can I change font size in Eclipse for Java text editors?:

This question asks how to change the font size in an editor window. But is there a way to change all the font sizes for the entire Eclipse GUI?

Community
  • 1
  • 1
Yao Liu
  • 151
  • 1
  • 1
  • 5
  • Why? ... However I don't thinks so. But eclipse is open source so you could rebuild it with your font... If you really need it – Ahmad Aug 26 '12 at 00:02
  • I got a monitor for my macbook, so I want the fonts to look bigger on the monitor. – Yao Liu Aug 26 '12 at 00:16
  • The eclipse UI is so terrible/ancient. The fact that questions like this have to be asked in the first place are a clear indicator this IDE could use some upgrades. – Alexander Mar 21 '15 at 23:27

4 Answers4

11

Go to Window->Preferences, General->Appearance->Colors and Fonts

Go to basic. Look for text font and text editor.

Joachim
  • 3,210
  • 4
  • 28
  • 43
Tomer Mor
  • 7,998
  • 5
  • 29
  • 43
  • 6
    That is not working. Eclipse has some stupid way of UI configuration, and the answer is, that without rebuild from sources there is no nice way of change fonts in all eclipse views. – Krystian May 19 '16 at 07:58
1

To change fonts in the Eclipse workspace with Linux, Ubuntu 10.04 (Lucid Lynx), I modified system fonts desktop → SystemPreferencesAppearanceFonts.

I also modified Eclipse v3.7 (Indigo) → menu WindowsPreferencesGeneralAppearancesColors and Fonts. It reflected in Eclipse.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Mallik
  • 19
  • 1
1

To change eclipse package explorer font size on windows 7

Open below file location where your eclipse exe file is present

eclipse\plugins\org.eclipse.ui.themes_1.0.1.v20141126-1957\css/e4_default_win7.css

add

 .MPart Tree{  
  font-size: 12;  
 }  

Restart the eclipse for the changes to reflect

user70944
  • 11
  • 2
0

Add to Eclipse\plugins\org.eclipse.ui.themes_<version>\css\dark\e4-dark_globalstyle.css:

 * {
    font-size: 13;
}

Depending on the Eclipse version and theme (I'm using dark theme!) you are using, you might need to add this to another css file, e.g. e4_basestyle.css.

Mihail Kostira
  • 510
  • 7
  • 10