misterbear
misterbear

Reputation: 833

Sublime Text 3 Color Scheme for Tags

I been using Sublime Text 3 on Mac OSX since it has been released. Currently using Build 3059. But I have yet to figure out a way to change the Color Scheme for Tags.

Screenshot:

enter image description here

I know that I can change the "Color Scheme" to something else so that the colors are different, but can the "Color Scheme" be manually edited so that not everything is blue and green.

For Example: <td> would be brown while <tr> would be red.

Upvotes: 0

Views: 1003

Answers (1)

skuroda
skuroda

Reputation: 19744

The colors applied are based on scopes. Scopes are applied based on regular expressions in the tmLanguage files. To get coloring as fine grained as you want, you would need to edit the tmLanguage file to uniquely identify specific tags and the tmTheme file so the appropriate color is assigned to the new scopes you define in the tmLanguage file.

Upvotes: 1

Related Questions