Last active
August 29, 2015 14:12
-
-
Save tjhorner/69f8b102b78483a4c82d to your computer and use it in GitHub Desktop.
My Atom styles
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
// My Atom <http://atom.io> stylesheet. | |
// Go ahead, copy this. All I ask in return is | |
// to see what yours looks like afterwards! | |
@dark-orange: #FF982D; | |
@dark-red: #FF1A00; | |
@light-blue: #A1C7F2; | |
@dark-blue: #323299; | |
@navy-blue: #000080; | |
@charcoal-black: #141517; | |
@hacker-green: rgb(0, 255, 0); | |
@translucent-white: rgba(255, 255, 255, .3); | |
@translucent-green: rgba(0, 255, 0, .3); | |
@translucent-black: rgba(0, 0, 0, .3); | |
.tab-bar{ | |
box-shadow: none; | |
.tab{ | |
&.modified{ | |
.title{ | |
color: @dark-orange; | |
} | |
} | |
.title{ | |
color: @light-blue; | |
} | |
} | |
} | |
atom-text-editor .cursor { | |
background: @translucent-green; | |
border: 1px solid @hacker-green !important; | |
} | |
atom-text-editor .scroll-view{ | |
padding-left: 5px; | |
} | |
atom-text-editor{ | |
background: @charcoal-black !important; | |
} | |
.editor .line-number{ | |
&.cursor-line{ | |
color: @hacker-green; | |
} | |
background-color: @translucent-black; | |
} | |
atom-text-editor .text{ | |
&.plain{ | |
color: @hacker-green; | |
} | |
} | |
.highlight.selection .region{ | |
background: @translucent-green; | |
} | |
.editor-contents, .line-numbers{ | |
background: @charcoal-black !important; | |
} | |
// TODO add dank memes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment