css - Customize Sublime Text 3 bracket highlighter colors -


i'm using brackethighlighter plugin st3 , looking setting controls outline colors used when matches found. white bit , distracts me when can't read wrapped lines well. it's worse when wrap closer or tags long (very common in angular).

for example:

enter image description here

not bad here, question is, possible change white outline either darker non-black background color? or, @ least, change white more subdued hue?

was able figure out user space preference updates , overrides:

https://gist.github.com/notbrain/058b263f145a1a0216c5

add new user bh_core.sublime-settings:

{    "bracket_styles": {      "default": {         "icon": "dot",         // bh1's original default color reference         // "color": "entity.name.class",         "color": "brackethighlighter.default",         "style": "highlight"     }    }  } 

and add whatever theme you're using (or modify see fit). overrides default, can override individual styles.

<!--appended default work bh_core.sublime-settings brackethighlighter.default style--> <dict>   <key>name</key>   <string>bracket tag</string>   <key>scope</key>   <string>brackethighlighter.default</string>   <key>settings</key>   <dict>     <key>background</key>     <string>#351501</string>     <key>foreground</key>     <string>#d4f20d</string>   </dict> </dict> 


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -