在python中的IDLE背景颜色

时间:2015-10-11 11:25:46

标签: python-idle python-3.5

有没有办法在Windows 10下更改python-3.5 IDLE的背景颜色? 我试过谷歌和阅读文档,但我找不到答案。我不确定它是否可能......

3 个答案:

答案 0 :(得分:3)

对于文本窗口背景,请转到选项=&gt; IDLE首选项=&gt;突出显示选项卡。将内置主题(两者都相同)保存为自定义主题,并使用新名称。将具有白色背景的每个元素的背景更改为所需的颜色。点击Apply或OK。或者,将以下内容复制到<HOMEDIR>/.idlerc/config-highlight.cfg(已经存在或可能不存在)并将#ffffff更改为您想要的颜色。

[Custom Light]
normal-foreground= #000000
normal-background= #ffffff
keyword-foreground= #ff7700
keyword-background= #ffffff
builtin-foreground= #900090
builtin-background= #ffffff
comment-foreground= #dd0000
comment-background= #ffffff
string-foreground= #00aa00
string-background= #ffffff
definition-foreground= #0000ff
definition-background= #ffffff
hilite-foreground= #000000
hilite-background= gray
break-foreground= black
break-background= #ffff55
hit-foreground= #ffffff
hit-background= #000000
error-foreground= #000000
error-background= #ff7777
#cursor (only foreground can be set, restart IDLE)
cursor-foreground= black
#shell window
stdout-foreground= blue
stdout-background= #ffffff
stderr-foreground= red
stderr-background= #ffffff
console-foreground= #770000
console-background= #ffffff

我们刚刚添加了一个深蓝色钴蓝背景的IDLE Dark主题。为此,请保持原样#002240或更改为另一种深色。

[Custom Dark]
comment-foreground = #dd0000
console-foreground = #ff4d4d
error-foreground = #FFFFFF
hilite-background = #7e7e7e
string-foreground = #02ff02
stderr-background = #002240
stderr-foreground = #ffb3b3
console-background = #002240
hit-background = #fbfbfb
string-background = #002240
normal-background = #002240
hilite-foreground = #FFFFFF
keyword-foreground = #ff8000
error-background = #c86464
keyword-background = #002240
builtin-background = #002240
break-background = #808000
builtin-foreground = #ff00ff
definition-foreground = #5e5eff
stdout-foreground = #c2d1fa
definition-background = #002240
normal-foreground = #FFFFFF
cursor-foreground = #ffffff
stdout-background = #002240
hit-foreground = #002240
comment-background = #002240
break-foreground = #FFFFFF

我们计划添加一种方法来同时更改所有正常背景。能够影响对话将是一个后来的项目。

答案 1 :(得分:1)

以下是步骤:

  1. 打开IDLE
  2. 转到顶部标签中的“选项”
  3. 选择“配置IDLE”
  4. 从顶部水平标签
  5. 中选择“突出显示”
  6. 选择左侧IDLE图像正上方的“背景”单选按钮
  7. 在“突出主题”下的右侧,根据您的喜好点击“IDLE Classic / IDLE Dark / IDLE New”
  8. 单击“应用”,然后单击“确定”

    完成!

答案 2 :(得分:1)

请按照以下步骤操作并保护您的眼睛。

  1. 从安装Python期间选择的路径打开Python文件夹。在这种情况下,它是(C:\ Python27)

  2. 在Python27文件夹中,搜索Lib并双击它。

  3. 在Lib文件夹中,搜索idlelib文件夹,然后双击它。

  4. 在idlelib文件夹中,搜索CONFIG-HIGHLIGHT.DEF文件,然后使用任何文本编辑器工具(如记事本)将其打开。

  5. 在CONFIG-HIGHLIGHT.DEF文件中,粘贴下面给出的Monokai代码。保存并关闭文件。

    [monokai]
    
    normal-foreground= #F8F8F2
    normal-background= #272822
    keyword-foreground= #F92672
    keyword-background= #272822
    builtin-foreground= #66D9EF
    builtin-background= #272822
    comment-foreground= #75715E
    comment-background= #272822
    string-foreground= #E6DB74
    string-background= #272822
    definition-foreground= #A6E22E
    definition-background= #272822
    hilite-foreground= #F8F8F2
    hilite-background= gray
    break-foreground= black
    break-background= #ffff55
    hit-foreground= #F8F8F2
    hit-background= #171812
    error-foreground= #ff3338
    error-background= #272822
    cursor-foreground= #F8F8F2
    stdout-foreground= #DDDDDD
    stdout-background= #272822
    stderr-foreground= #ff3338
    stderr-background= #272822
    console-foreground= #75715E
    console-background= #272822       
    

来源:CodeHexz

幸福的通宵​​达旦:)