Sublime Text 2
エディターでは、「変更/編集されたタブ」の「テキストの色」をこのように変更できます"highlight_modified_tabs": true
。できます。
鮮やかな赤ですが、どうすれば変更できtext color
ますか?
Sublime Text 2
エディターでは、「変更/編集されたタブ」の「テキストの色」をこのように変更できます"highlight_modified_tabs": true
。できます。
鮮やかな赤ですが、どうすれば変更できtext color
ますか?
これらの設定の正しい場所は、ディレクトリ内のインストール用のパッケージ フォルダー (を使用して開くことができますPreferences -> Browse Packages
) 内の、次Theme - Default
の名前のファイルにあります。Default.sublime-theme
570 行目あたりで、タブ ラベルが設定されます。
それらは次のように見えます。
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_light"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [125, 00, 125]
},
settings
属性が に設定されているものを構成します["highlight_modified_tabs"]
。fg
プロパティを目的の RGB 値に変更します。
変更する 4 つの異なるセクションがあり、それらはタブの背景の色合いに対応しているようです。
デフォルトのテーマを変更する必要はないことに注意してください。packages ディレクトリに名前Default.sublime-theme
を付けた新しいファイルを作成し、メイン テーマ ファイルの後に適用される変更のみを保存できます。User
4 つのセクションをコピーして貼り付け、highlight_modified-tabs
必要な 2 つを変更しました。
[パッケージ] /User/Default.sublime-theme :
[
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_light"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [125, 00, 125]
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_medium"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [125, 00, 125]
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_medium_dark"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [255, 161, 52]
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["file_dark"]}],
"attributes": ["dirty"],
"settings": ["highlight_modified_tabs"],
"fg": [255, 161, 52]
}
]
から回答をもらいましたTrevor Senior
The color schemes in sublime text are located in your sublime packages. In the menu navigate to Preferences -> Browse Packages... and they will all be listed in the Color Scheme - Default