Created
November 26, 2019 01:22
-
-
Save andrei-coelho/56d1d92d5020cb258e5089df7d4431b5 to your computer and use it in GitHub Desktop.
My styles Atom
This file contains 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
@darker-green: #172326; | |
@fucker-green: #2B3940; | |
@mother-green: #212C32; | |
.title-bar { | |
padding: 15px; | |
letter-spacing: 0.08em; | |
font-size: 1.1em; | |
} | |
.tree-view { | |
background-color: @mother-green; | |
} | |
atom-text-editor { | |
color: white; | |
background-color:@mother-green; | |
} | |
.atom-pane.active { | |
border-bottom: 1px solid @fucker-green; | |
} | |
.tab-bar { | |
background-color: @darker-green; | |
} | |
.tab-bar .tab-active { | |
min-width: 320px; | |
} | |
atom-text-editor .cursor { | |
border-color: yellow; | |
} | |
atom-text-editor .line.cursor-line { | |
background-color: @darker-green; | |
} | |
.atom-text-editor::shadow .vertical-scrollbar { | |
cursor: pointer; | |
} | |
.status-bar { | |
color: white; | |
background-color: @darker-green; | |
} | |
wrap-guide { | |
color: blue; | |
} | |
.tab-bar .tab.active[data-type$="Editor"] { | |
background-color: @fucker-green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment