Bracket Highlighter - Changing its colors
https://github.com/facelessuser/BracketHighlighter (you can install it using the Package Manager)
One of the first packages I intstalled was this, I didnt like the default way of showing brackets and gave this a shot. It works extremley well (did more than I expected), but it took me a little bit to figure how I was meant to change the colors (the docs are a little vague for a noob) so I thought Id write this up.
Goto Prefrences / Package Settings / Bracket Highlighter / Settings--Default
Add....
Code:
"curly_scope" : "bracket.color",
"quote_scope" : "bracket.color",
"curly_scope" : "bracket.color",
"round_scope" : "bracket.color",
"square_scope": "bracket.color",
"angle_scope" : "bracket.color",
"tag_scope" : "bracket.color",
... to the file and save.
Now open the themes color file, for me using IDLE that was....
C:\Documents and Settings\Admin\Application Data\Sublime Text 2\Packages\Color Scheme - Default\IDLE.tmTheme
Add....
Code:
<dict>
<key>name</key>
<string>Bracket Color</string>
<key>scope</key>
<string>bracket.color</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#000000</string>
<key>background</key>
<string>#cceeEF</string>
</dict>
</dict>
...as the last entry of the settings array and save.
This is the block of code now where you can change its colors.
While youve got the themes colors settings loaded up you might want to go through it and look for other things to change. For instance, change tag names color to something other than the default makes them stand out more (html/xml)....
Code:
<dict>
<key>name</key>
<string>Tag name</string>
<key>scope</key>
<string>entity.name.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#21439C</string>
</dict>
</dict>