Python背景色與語法高亮主題配置

2022-02-17 14:18:11 字數 3789 閱讀 8134

使用python idle的人恐怕都無法忍受預設的白色背景,及其語法高亮主題。

大家更傾向於使用黑色背景。

使用者目錄 的.idlerc 目錄:

下面的各個系統下對應的該檔案的位置:

在linux系列系統下路徑為(~表示使用者目錄):

~/.idlerc/在windows xp下路徑為:

c:/documents and settings/《使用者名稱》/.idlerc/在windows 7下路徑為:

c:/users/《使用者名稱》/.idlerc/

在window下,可以直接在執行框中輸入下面的路徑定位到位置:

%userprofile%/.idlerc/有時候會發現目錄中沒有config-highlight.cfg檔案,那麼自己就建立乙個:在linux下:

# for linuxvi ~/.idlerc/config-highlight.cfg

在window下:

notepad %userprofile%/.idlerc/config-highlight.cfg

下面介紹obsidian, desert, 和tango三種主題配置

在 使用者目錄 的.idlerc 目錄下新建名為 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

重啟idle,依次選 options -> configure idle -> highlighting 如下圖

有童鞋要問字型怎麼配置?這個容易,在highlighting選項卡旁邊有個fonts/tabs選項卡,可以用來配置字型和縮排寬度的:

Python 背景色與語法高亮主題配置

使用python idle的人恐怕都無法忍受預設的白色背景,及其語法高亮主題。大家更傾向於使用黑色背景。下面介紹obsidian,desert,和tango三種主題配置 在 使用者目錄 的.idlerc目錄下新建名為config highlight.cfg檔案,並加入如下內容 tango defin...

Python背景色與語法高亮主題配置

使用python idle的人恐怕都無法忍受預設的白色背景,及其語法高亮主題。大家更傾向於使用黑色背景。使用者目錄 的.idlerc 目錄 下面的各個系統下對應的該檔案的位置 在linux系列系統下路徑為 表示使用者目錄 idlerc 在windows xp下路徑為 c documents and ...

前景色與背景色

在 css 中可以為任何元素設定前景色 背景色,整個頁面帶給人的感覺與這兩個屬性息息相關。前景色是指元素顏色及其邊框顏色,通過 color 屬性或 border color 可以進行設定。在沒有單獨宣告的情況下元素顏色與邊框顏色一致。系統預設前景色一般為黑色。背景色指的是元素內容區及內邊距區域的顏色...