Eclipse是否具有主题性?我想为它安装一个深色的配色方案,因为我更喜欢黑色背景上的白色文本,而不是相反。


当前回答

如果你使用Aptana,那么你可以下载一个深色主题!我最近一直在找,找到了Aptana。我想其他人可能会感兴趣!

查看:http://www.nightlion.net/themes/2009/aptana-dark-color-theme/

其他回答

为了回应这个评论,我为Compiz的Color filter插件做了一个过滤器。

以下是我得到的答案:

Howto:

进入/usr/share/ compz /filters/ 创建新文件“负-低对比度”(如 根) 插入所附代码。 去 系统- >首选项- > CompizConfig ... 输入颜色滤镜插件 启用 并将新创建的过滤器添加到 名单Profeet!!

过滤器代码:

!!ARBfp1.0
TEMP temp, neg;

# Dunno what's this... but every other filter starts with this :) ;
TEX temp, fragment.texcoord[0], texture[0], RECT;

# Applying negative filter ;
RCP neg.a, temp.a;
MAD temp.rgb, -neg.a, temp, 1.0;
MUL temp.rgb, temp.a, temp;
MUL temp, fragment.color, temp;

# Lowering contrast and shifting brightness ;
MUL temp.rgb, temp, 0.8;
ADD temp.rgb, temp, 0.25;

MOV result.color, temp;
END

你也可以使用滤镜。也许你会得到一些更有趣的东西:)欢迎分享!

正如已经发布的一些相关问题,我正在开发一个插件,用于简单的跨编辑器颜色主题管理:

http://marketplace.eclipse.org/content/eclipse-color-theme

它仍在开发中,但已经支持许多编辑器和一些深色主题。

这里有一个人发布了他的Eclipse首选项,可以像主题一样改变颜色:

http://blog.codefront.net/2006/09/28/vibrant-ink-textmate-theme-for-eclipse/

下面是关于如何在Ganymede Eclipse版本(v. 3.4, 2008年年中)中设置颜色的更多信息:

http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.platform.doc.user/concepts/accessibility/fontsandcolors.htm

正如我对“是否有一种简单、一致的方法来更改Eclipse编辑器的配色方案?”:

我也一直在找这个 经过一番调查,我发现 可行的解决方案。这是基于 Eclipse的FDT编辑器,但我 当然你也可以用同样的逻辑 其他编辑器。 我的博客文章:如何创建一个 FDT的配色方案 希望这能有所帮助!

对于Linux用户,假设您运行一个合成窗口管理器(Compiz),您可以将窗口变为负值。我一直这样使用Eclipse,正常的(白色的)外观让我眼花缭乱。