Last active
March 30, 2016 02:53
-
-
Save opattison/76113e2ed1289700f5d2ec864038e5c3 to your computer and use it in GitHub Desktop.
Custom git override styles for Atom tree view and tabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Custom git override styles for Atom tree view | |
| // include in user `styles.less` “your stylesheet” | |
| .tree-view { | |
| .status-modified, | |
| .list-tree li.list-nested-item.status-modified > .list-item { | |
| color: hsl(22, 50%, 44%)!important; | |
| } | |
| .status-added, | |
| .list-tree li.list-nested-item.status-added > .list-item { | |
| color: hsl(144, 50%, 35%)!important; | |
| } | |
| .status-ignored, | |
| .list-tree li.list-nested-item.status-ignored > .list-item { | |
| color: hsl(200, 3%, 55%)!important; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment