Eclipse中設定變數顏色及背景顏色自定義設定
阿新 • • 發佈:2018-11-15
Eclipse中程式碼顏色的自定義設定:
對於長期從事程式設計的人員而言,Java的操作介面如果是預設的白色,容易讓人產生視覺疲勞,同時對視力會產生影響。所以設定一份科學的背景顏色顯得十分有必要。
設定背景顏色:
- Window—>Preference—>General—>Text Editors
在右邊框的下方有一個Appearance color options框,如下圖所示
- 點選Background color —>Color(註釋:如果勾選了System Default,取消勾選),單擊color後,—>Apply–>OK
本文推薦:色調:85 飽和度:123 亮度:205 - 單擊Current line highlight—>Color
本文推薦:白色
設定字型:
- Window—>Preferences—>General—>Appearance—>Colors and Fonts
在右邊框的上部分有Colors and Fonts,如下圖所示: - 單擊Java—>Java Editor Text Font(…)—>Edit…
選擇一款自己喜歡的字樣。—>Apply—>OK
本文推薦:Calibri 常規 五號
程式碼顏色設定:
- 實際原圖:
- 實現步驟:windows->Preferences->Java->Editor->Syntax Coloring
按照上圖的順序提示,然後根據下面的表,將對應的值修改即可,修改時只要修改紅,綠,藍的比值即可。
名稱 | 紅,綠,藍的值 | 顏色 |
---|---|---|
Annotations(註釋): | 107, 147, 186 | 淺藍色 |
Deprecated members(不建議使用的成員): | 0, 0, 0 | 黑色 |
Fields(欄位): | 128, 0, 128 | 紫色 |
KeyWord ‘return’(關鍵字’return’): | 255, 0, 0 | 紅色 |
Keyword excluding ‘return’(除了關鍵字以外的return): | 255, 128 ,0 | 橙色 |
Local variable declarations(區域性變數宣告): | 128, 128, 128 | 灰色 |
Method declarations(方法宣告): | 255, 128, 64 | 橙色 |
Method(方法): | 0, 48, 96 | 闇淺藍色 |
Operators and brackets(運算子與方括號): | 255, 128, 0 | 橙色 |
Others(其他): | 96 153, 0 | 深綠色 |
Static fields(靜態欄位): | 33, 0, 189 | 深藍色 |
Static Method invocations(靜態方法呼叫): | 77, 166 255 | 天藍色 |
Strings(字串): | 132, 26, 238 | 中天藍色 |
Type variables(型別變數): | 128, 0, 25 | 紅羅色 |