Python IDLE 顏色設定
2013/03/27
2
意見
Python IDLE 預設的顏色只有白底,修改顏色設定的方式如下:
1) 關閉目前正在執行中的 IDLE
2) 開啟 IDLE -> Options -> Configure IDLE
3) 在 Highlighting Tab 中,選[a Custom Theme], 下拉選項就會有幾個新的 Theme 可挑選
(也可以直接編輯 config-main.cfg 此檔案,貼入如下內容)
Steps:
Windows: cd c:\Users\auser\.idlerc\ 建立及編輯 config-highlight.cfg,貼入以下內容 Ubuntu: cd /home/auser/.idlerc/ vi config-highlight.cfg
config-main.cfg
[EditorWindow] font-size = 14 font = consolas width = 120 height = 30 encoding = utf-8 [Theme] name = Tango default = 0
config-highlight.cfg
[Tango] definition-foreground = #fce94f error-foreground = #fa8072 string-background = #2e3436 keyword-foreground = #8cc4ff normal-foreground = #ffffff comment-background = #2e3436 hit-foreground = #ffffff break-foreground = #000000 builtin-background = #2e3436 stdout-foreground = #eeeeec cursor-foreground = #fce94f hit-background = #2e3436 comment-foreground = #73d216 hilite-background = #edd400 definition-background = #2e3436 stderr-background = #2e3436 break-background = #2e3436 console-foreground = #87ceeb normal-background = #2e3436 builtin-foreground = #ad7fa8 stdout-background = #2e3436 console-background = #2e3436 stderr-foreground = #ff3e40 keyword-background = #2e3436 string-foreground = #e9b96e hilite-foreground = #2e3436 error-background = #2e3436 [Desert] definition-foreground = #98fb98 error-foreground = #ff0000 string-background = #333333 keyword-foreground = #cc6600 normal-foreground = #f0e68c comment-background = #333333 hit-foreground = #ffffff break-foreground = black builtin-background = #333333 stdout-foreground = #eeeeee cursor-foreground = #ffcc00 hit-background = #333333 comment-foreground = #87ceeb hilite-background = gray definition-background = #333333 stderr-background = #333333 break-background = #ffff55 console-foreground = #87ceeb normal-background = #333333 builtin-foreground = #519e51 stdout-background = #333333 console-background = #333333 stderr-foreground = #ff3e40 keyword-background = #333333 string-foreground = #ffa0a0 hilite-foreground = #000000 error-background = #000000 [Obsidian] definition-foreground = #678CB1 error-foreground = #FF0000 string-background = #293134 keyword-foreground = #93C763 normal-foreground = #E0E2E4 comment-background = #293134 hit-foreground = #E0E2E4 builtin-background = #293134 stdout-foreground = #678CB1 cursor-foreground = #E0E2E4 break-background = #293134 comment-foreground = #66747B hilite-background = #2F393C hilite-foreground = #E0E2E4 definition-background = #293134 stderr-background = #293134 hit-background = #000000 console-foreground = #E0E2E4 normal-background = #293134 builtin-foreground = #E0E2E4 stdout-background = #293134 console-background = #293134 stderr-foreground = #FB0000 keyword-background = #293134 string-foreground = #EC7600 break-foreground = #E0E2E4 error-background = #293134
Reference
標籤:
Python