Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The correct location for these settings is in the packages folder for your installation (which can be opened using <code>Preferences -&gt; Browse Packages</code>) inside the <strong><code>Theme - Default</code></strong> directory, in a file named <code>Default.sublime-theme</code></p> <p>Somewhere around line 570, the tab labels are configured.</p> <p>They look a bit like this:</p> <pre><code>{ "class": "tab_label", "parents": [{"class": "tab_control", "attributes": ["file_light"]}], "attributes": ["dirty"], "settings": ["highlight_modified_tabs"], "fg": [125, 00, 125] }, </code></pre> <p>You want to configure the ones whose <code>settings</code> attribute is set to <code>["highlight_modified_tabs"]</code>. Change the <code>fg</code> property to the desired RGB value.</p> <p>There are four different sections to change, and they seem to correspond to the shade of the tab background. </p> <p>Note that it's not necessary to modify the default theme where it is. You can create a new file named <code>Default.sublime-theme</code> in the <code>User</code> packages directory, and store only <strong>your changes</strong> which will be applied after the main theme file. </p> <p>I copy and pasted the four <code>highlight_modified-tabs</code> sections and modified the two that I wanted.</p> <p><em><strong>[packages]</em>/User/Default.sublime-theme</strong>:</p> <pre><code>[ { "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] } ] </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload