I finally found a way to customize the given Themes.
Go to C:\Program Files\Sublime Text 3\Packages
and copy + rename Color Scheme - Default.sublime-package
to Color Scheme - Default.zip
. Afterwards unzip it and copy the Theme, you want to change to %APPDATA%\Sublime Text 3\Packages\User
. (In my case, All Hallow's Eve.tmTheme
).
Then you can open it with any Text Editor and change / add something, for example for changing this
in JavaScript:
<dict>
<key>name</key>
<string>Lang Variable</string>
<key>scope</key>
<string>variable.language</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FF0000</string>
</dict>
</dict>
This will mark this
in JavaScript Files red. You can select your Theme under Preferences -> Color Scheme -> User -> <Your Name>
.