Last active
October 13, 2015 08:02
-
-
Save ibanez270dx/a3947b033bbfbe9dc34a to your computer and use it in GitHub Desktop.
My styles.less configuration (for Atom). Adds contrast between the editor and everything else when using "one-dark-ui" UI theme and "afterglow-like" syntax theme.
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
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed and saved. | |
* | |
* Add your own CSS or Less to fully customize Atom. | |
* If you are unfamiliar with Less, you can read more about it here: | |
* http://lesscss.org | |
*/ | |
@dark-grey: #1b1b1b; | |
.tree-view, | |
.tab-bar, | |
.tab-bar .tab .title, | |
.status-bar, | |
atom-panel.top, | |
atom-panel.bottom, | |
atom-panel.left, | |
atom-panel.right { | |
background: @dark-grey; | |
} | |
.tab-bar { | |
box-shadow: inset 0 -1px 0 @dark-grey; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment