Atom.
Originally converted from monokai which in turn came from the TextMate theme using the TextMate bundle converter.
I would also suggest editing your main stylesheet and adding the following CSS:
/* really nice smooth fonts */
body {
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
}
/* custom scrollbars */
.tree-view-resizer {
::-webkit-scrollbar {
width: 0.5em;
height: 0.5em;
}
::-webkit-scrollbar-track {
background-color: #303030;
}
::-webkit-scrollbar-thumb {
background-color: lighten(#303030, 15%);
}
}
/* fix website scroll styling flash */
.tree-view-scroller {
overflow: hidden;
&:hover {
overflow: auto;
}
}
This adds some nicer smoothing and also adds some custom scrollbars to both panes. This gets rid of the ugly strange white ones. I would also suggest checking out Source Code Pro for your font!
You can download the theme on Atom.
I'm a full-stack developer, co-organizer of PHP Vancouver meetup, and winner of a Canadian Developer 30 under 30 award. I'm a huge Open Source advocate and contributor to a lot of projects in my community. When I am not sitting at a computer, I'm trying to perfect some other skill.