Sublime Forum

Change the color of the horizontal tab line?

#1

Does anyone know how to change the color of the horizontal line for tabs? I would like to change the horizontal solid line to something like red, if possible.

-------[horizontal tab indicator line]-------TEXT-------[horizontal tab indicator line]-------TEXT

0 Likes

#2

I believe it’s the same as your color scheme’s comments color, so I think if you changed it to red your comments would change as well.

0 Likes

#3

I just tried changing the color in this section within my active theme (Monokai.tmTheme), but the horizontal line tab colors didn’t seem to be affected:

	<dict>
		<key>name</key>
		<string>Comment</string>
		<key>scope</key>
		<string>comment</string>
		<key>settings</key>
		<dict>
			<key>foreground</key>
			<string>#75715E</string>
		</dict>
0 Likes

#4

Whoops, I guess you have to change “foreground”: Scheme colours for line numbers and tab characters?

0 Likes

#5

.tmTheme

[code]

scope
lawlist.tab
settings

foreground
#FF0000
background




scope
lawlist.space
settings

foreground
#000000
background


[/code]

.tmLanguage

[code]

match
\t+
name
lawlist.tab

match + name lawlist.space [/code] [code][/code]
0 Likes