Sublime Forum

Color scheme question - line number color?

#1

I can’t find an xml key in any tmTheme file for the line number color. I’d like to change the default, can that be controlled in the tmTheme file?

0 Likes

#2

This is in monokai:

<key>lineHighlight</key> <string>#3E3D32</string>

0 Likes

#3

[quote=“iamntz”]This is in monokai:

<key>lineHighlight</key> <string>#3E3D32</string>[/quote]

Thanks, but that’s the color of the line highlight, the background color of current line where the cursor is

0 Likes

#4
<key>gutterForeground</key>
0 Likes

#5

[quote=“tgkeul”] <key>gutterForeground</key> [/quote]

Thank you, that’s it!

0 Likes

#6

NOT SOLVED

Sublime does not highlight active line number.
I am correcting this thread, because the forum is full of misleading flagged solutions that are technically wrong.

			<key>gutter</key> <!-- add key, gutter background -->
				<string>#1C1C1F</string>
			<key>gutterForeground</key> <!-- add key, all gutter numbers -->
				<string>#505024</string>
			<key>lineHighlight</key> <!-- Seth 383838, gutter background active line -->
				<string>#121314</string>
0 Likes