Sublime Forum

ST3 Base16 Color Scheme "<" is almost invisible

#1

No matter which Base16 Color Scheme I use, whenever I start typing some HTML (this doesn’t seem to affect any other languages) the “<” will be barely visible (see image: dl.dropboxusercontent.com/u/452 … t-line.jpg)
This only happens when “highlight_line”: true. When set to false the colored background appears behind the “<” and I am able to see it.

0 Likes

#2

I fixed it :smile: The following is how I did it:

#1 - Install Package Resource Viewer Plugin: github.com/skuroda/PackageResourceViewer
Follow the instructions and unpack the Base16 Color Scheme Plugin.

#2 - Open the theme file that you are using. Find the section that looks like this (should be at the bottom of the file)

	<dict>
		<key>name</key>
		<string>Invalid</string>
		<key>scope</key>
		<string>invalid.illegal</string>
		<key>settings</key>
		<dict>
			<key>background</key>
			<string>#bf616a</string>
			<key>foreground</key>
			<string>#c0c5ce</string>
		</dict>
	</dict>

Change the foreground color to something that you are able to see :smile:

0 Likes