The color of the bracket and other visibility parameters can be changed without using a plug-in. The following is a method for making such changes initially.
Note: I recently wrote this @SublimeText Forum answer. There is a similar (unacceptable) answer here, but I included some non-related details and a visual link.
Example
This is my personal configuration:


OPTIONS
Below are all of my visibility related options.
As you can see in the examples: brackets parameters determine the color of pairs of brackets if the carriage is placed in a bracket, while the settings for bracketContents determine the color of pairs of brackets if the carriage is placed in a set of brackets.
My bracketContentsOptions set to underline , but you can change it to foreground if you want it to be highlighted in both cases.
@ Settings .sublime-settings
"always_show_minimap_viewport" : true, "caret_extra_bottom" : 3, "caret_extra_top" : 3, "caret_extra_width" : 1, "caret_style" : "phase", "draw_minimap_border" : true, "fade_fold_buttons" : false, "fold_buttons" : true, "highlight_line" : true, "highlight_modified_tabs" : true, "line_numbers" : true, "match_brackets" : true, "match_brackets_angle" : true, "match_brackets_braces" : true, "match_brackets_content" : true, "match_brackets_square" : true, "match_selection" : true, "match_tags" : true, "overlay_scroll_bars" : "enabled",
@ YourColorScheme.tmTheme
<key>guide</key> <string>#14191F</string> <key>stackGuide</key> <string>#14191F</string> <key>activeGuide</key> <string>#2E4589</string> <key>bracketsForeground</key> <string>#D80E64</string> <key>bracketsOptions</key> <string>foreground</string> <key>bracketContentsForeground</key> <string>#D80E64</string> <key>bracketContentsOptions</key> <string>underline</string> <key>caret</key> <string>#D80E64</string> <key>lineHighlight</key> <string>#121522</string> <key>selection</key> <string>#1D416B</string> <key>selectionForeground</key> <string>#bbccff</string> <key>selectionBorder</key> <string>#4D71FF</string> <key>inactiveSelection</key> <string>#1D416B</string> <key>inactiveSelectionForeground</key> <string>#bbccff</string> <key>findHighlight</key> <string>#0BD0AC</string> <key>findHighlightForeground</key> <string>#000000</string>
Enteleform Mar 25 '16 at 1:01 2016-03-25 01:01
source share