diff options
Diffstat (limited to 'imports/codemirror/theme/monokai.css')
-rwxr-xr-x | imports/codemirror/theme/monokai.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/imports/codemirror/theme/monokai.css b/imports/codemirror/theme/monokai.css new file mode 100755 index 00000000..470d4c5c --- /dev/null +++ b/imports/codemirror/theme/monokai.css | |||
@@ -0,0 +1,28 @@ | |||
1 | /* Based on Sublime Text's Monokai theme */ | ||
2 | |||
3 | .cm-s-monokai {background: #272822; color: #f8f8f2;} | ||
4 | .cm-s-monokai span.CodeMirror-selected {background: #ffe792 !important;} | ||
5 | .cm-s-monokai .CodeMirror-gutter {background: #272822; border-right: 0px;} | ||
6 | .cm-s-monokai .CodeMirror-gutter-text {color: #d0d0d0;} | ||
7 | .cm-s-monokai .CodeMirror-cursor {border-left: 1px solid #f8f8f0 !important;} | ||
8 | |||
9 | .cm-s-monokai span.cm-comment {color: #75715e;} | ||
10 | .cm-s-monokai span.cm-atom {color: #ae81ff;} | ||
11 | .cm-s-monokai span.cm-number {color: #ae81ff;} | ||
12 | |||
13 | .cm-s-monokai span.cm-property, .cm-s-monokai span.cm-attribute {color: #a6e22e;} | ||
14 | .cm-s-monokai span.cm-keyword {color: #f92672;} | ||
15 | .cm-s-monokai span.cm-string {color: #e6db74;} | ||
16 | |||
17 | .cm-s-monokai span.cm-variable {color: #a6e22e;} | ||
18 | .cm-s-monokai span.cm-variable-2 {color: #9effff;} | ||
19 | .cm-s-monokai span.cm-def {color: #fd971f;} | ||
20 | .cm-s-monokai span.cm-error {background: #f92672; color: #f8f8f0;} | ||
21 | .cm-s-monokai span.cm-bracket {color: #f8f8f2;} | ||
22 | .cm-s-monokai span.cm-tag {color: #f92672;} | ||
23 | .cm-s-monokai span.cm-link {color: #ae81ff;} | ||
24 | |||
25 | .cm-s-monokai .CodeMirror-matchingbracket { | ||
26 | text-decoration: underline; | ||
27 | color: white !important; | ||
28 | } | ||