Last active
March 21, 2017 23:51
-
-
Save jgermade/ae813d68018b1b54cab1798887af6ca5 to your computer and use it in GitHub Desktop.
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
.tree-view { | |
font-family: 'Souce Sans Pro', 'Ubuntu Mono', Monaco, monospace; | |
font-size: 17px !important; | |
.list-tree .entry { | |
line-height: 1.5; | |
.name { | |
color: #aaa; | |
} | |
&.selected > .name, | |
&.directory > .list-item > .name { | |
color: white; | |
} | |
&.status-ignored > .name, | |
&.status-ignored > .list-item > .name { | |
color: #666; | |
} | |
&.directory > .list-item > .icon:before { | |
color: goldenrod; | |
} | |
&.status-modified > .name, | |
&.status-modified > .list-item > .name { | |
color: gold; | |
} | |
&.status-added > .name, | |
&.status-added > .list-item > .name { | |
color: lightgreen; | |
} | |
} | |
} | |
atom-text-editor { | |
font-family: 'Souce Sans Pro', 'Ubuntu Mono', Monaco, monospace; | |
background: #020202; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment