Sublime Forum

[SOLVED] Change color of line number?

#1

Is there a color theme setting to change the line number foreground color? I only know of lineHighlight at the moment.

0 Likes

#2

You can use gutterForeground

0 Likes

#3

Perfect! Thanks bro.

0 Likes

#4

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