Skip to content

Instantly share code, notes, and snippets.

@pixmin
Last active March 14, 2019 15:23
Show Gist options
  • Save pixmin/ce4fc35cc93702fd2ac2da4c800c7166 to your computer and use it in GitHub Desktop.
Save pixmin/ce4fc35cc93702fd2ac2da4c800c7166 to your computer and use it in GitHub Desktop.
Sublime 3200 Git gutter integration colors

Sublime 3200 integrates Git in the gutter, but in a way that ia a little too visible in my taste.

https://www.sublimetext.com/docs/3/color_schemes.html#global_settings-gutter

To make it less visible I modified the different .tmTheme files I use and added:

	<key>line_diff_width</key>
	<string>1</string>
	<key>line_diff_added</key>
	<string>rgba(118, 255, 118, 0.5)</string>
	<key>line_diff_modified</key>
	<string>rgba(255, 195, 128, 0.5)</string>
	<key>line_diff_deleted</key>
	<string>rgba(255, 118, 118, 0.5)</string>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment