How can I change Eclipse theme?

前端 未结 6 1518
南旧
南旧 2020-12-04 05:56

I want to change Eclipse theme like this Eclipse Dark Theme:

\"eclipse

I try to do all ste

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-04 06:43

    Update December 2012 (19 months later):

    The blog post "Jin Mingjian: Eclipse Darker Theme" mentions this GitHub repo "eclipse themes - darker":

    enter image description here

    The big fun is that, the codes are minimized by using Eclipse4 platform technologies like dependency injection.
    It proves that again, the concise codes and advanced features could be achieved by contributing or extending with the external form (like library, framework).
    New language is not necessary just for this kind of purpose.


    Update July 2012 (14 months later):

    With the latest Eclipse4.2 (June 2012, "Juno") release, you can implement what I originally described below: a CSS-based fully dark theme for Eclipse.
    See the article by Lars Vogel in "Eclipse 4 is beautiful – Create your own Eclipse 4 theme":

    Eclipse fully dark theme

    If you want to play with it, you only need to write a plug-in, create a CSS file and use the org.eclipse.e4.ui.css.swt.theme extension point to point to your file.
    If you export your plug-in, place it in the “dropins” folder of your Eclipse installation and your styling is available.


    Original answer: August 2011

    With Eclipse 3.x, theme is only for the editors, as you can see in the site "Eclipse Color Themes".
    Anything around that is managed by windows system colors.
    That is what you need to change to have any influence on Eclipse global colors around editors.

    Eclipse 4 will provide much advance theme options: See "Eclipse 4.0 – So you can theme me Part 1" and "Eclipse 4.0 RCP: Dynamic CSS Theme Switching".

    dark theme

提交回复
热议问题