Skip to content

Instantly share code, notes, and snippets.

@knxroot
Forked from buhrmi/gist:1344659
Created July 28, 2016 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knxroot/faa0e3b2d763feee1348af45ab2473ad to your computer and use it in GitHub Desktop.
Save knxroot/faa0e3b2d763feee1348af45ab2473ad to your computer and use it in GitHub Desktop.
Sublime Text 2 Git Annotation Colors - fix background for foreground
<!-- ====================================
Colors for git annotation
====================================== -->
<dict>
<key>name</key>
<string>Git Modified Line</string>
<key>scope</key>
<string>git.changes.x</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#3C3EFF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Git Added Line</string>
<key>scope</key>
<string>git.changes.+</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#50AA2E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Git Remove Line</string>
<key>scope</key>
<string>git.changes.-</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#A32A1D</string>
</dict>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment