Last active
August 29, 2015 14:01
-
-
Save lordfriend/858e369f8e9f7cd9861c to your computer and use it in GitHub Desktop.
monokai-webstorm color scheme for Brackets.io
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
.cm-s-monokai-webstorm.CodeMirror { | |
background-color: #272822; | |
color: #F8F8F2; | |
-webkit-font-smoothing: subpixel-antialiased; | |
} | |
.cm-s-monokai-webstorm.CodeMirror div.CodeMirror-cursor { | |
border-left: 1px solid #f8f8f0; | |
z-index: 3; | |
} | |
.cm-s-monokai-webstorm .CodeMirror-lines { | |
pointer-events: all; | |
} | |
.cm-s-monokai-webstorm .CodeMirror-selected { | |
color: #FFFFFF; | |
background: #49483E; | |
} | |
.cm-s-monokai-webstorm.CodeMirror .CodeMirror-matchingbracket { | |
background-color: #3A6DA0; | |
} | |
.cm-s-monokai-webstorm.CodeMirror .CodeMirror-nonmatchingbracket { | |
background-color: #583535; | |
} | |
.cm-s-monokai-webstorm.CodeMirror .CodeMirror-gutters { | |
background-color: #272822; | |
border-right: 1px dotted rgba(229, 229, 229, 0.54); | |
} | |
.cm-s-monokai-webstorm.CodeMirror .CodeMirror-searching { | |
color: #F8F8F2; | |
background-color: rgb(79,79,130) !important; | |
} | |
.cm-s-monokai-webstorm .cm-keyword {color: rgb(249, 38, 114);} | |
.cm-s-monokai-webstorm .cm-atom {color: #c48cff;} | |
.cm-s-monokai-webstorm .cm-number {color: rgb(147, 129, 255);} | |
.cm-s-monokai-webstorm .cm-def {color: rgb(253, 151, 31);} | |
.cm-s-monokai-webstorm .cm-variable { | |
color: #F8F8F2; | |
font-style: italic; | |
} | |
.cm-s-monokai-webstorm .cm-variable-2 {color: rgb(100, 162, 162);} | |
.cm-s-monokai-webstorm .cm-property {color: rgb(151, 151, 72);} | |
.cm-s-monokai-webstorm .cm-operator {color: rgb(249, 38, 114);} | |
.cm-s-monokai-webstorm .cm-comment {color: rgb(117, 113, 94);} | |
.cm-s-monokai-webstorm .cm-string {color: rgb(230, 239, 116);} | |
.cm-s-monokai-webstorm .cm-string-2 {color: rgb(230, 239, 116);} | |
.cm-s-monokai-webstorm .cm-meta {color: rgb(166, 226, 46);} | |
.cm-s-monokai-webstorm .cm-qualifier {color: rgb(166, 226, 46);} | |
.cm-s-monokai-webstorm .cm-bracket {color: #F8F8F2;} | |
.cm-s-monokai-webstorm .cm-tag {color: rgb(227, 227, 255);} | |
.cm-s-monokai-webstorm .cm-attribute {color: rgb(166, 226, 46);} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment