Skip to content

Instantly share code, notes, and snippets.

@frank184
Last active June 9, 2017 11:44
Show Gist options
  • Save frank184/0e0cd4b2d239da1d4bbc954f5628d902 to your computer and use it in GitHub Desktop.
Save frank184/0e0cd4b2d239da1d4bbc954f5628d902 to your computer and use it in GitHub Desktop.
Atom Git-Diff styles for github-atom-light-syntax package
.editor .gutter .line-number {
&[class*="git"] {
padding-left: 0 !important;
border-left: none !important;
color: #ffffff;
opacity: 1;
width: 40px;
}
&.git-line-added {
background-color: rgba(168, 255, 96, 0.6);
}
&.git-line-modified {
background-color: rgba(233, 192, 98, 0.6);
}
&.git-line-removed {
background-color: rgba(204, 102, 102, 0.6);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment