| 5 |
lars |
1 |
/*
|
|
|
2 |
|
|
|
3 |
Name: material
|
|
|
4 |
Author: Michael Kaminsky (http://github.com/mkaminsky11)
|
|
|
5 |
|
|
|
6 |
Original material color scheme by Mattia Astorino (https://github.com/equinusocio/material-theme)
|
|
|
7 |
|
|
|
8 |
*/
|
|
|
9 |
|
|
|
10 |
.cm-s-material {
|
|
|
11 |
background-color: #263238;
|
|
|
12 |
color: rgba(233, 237, 237, 1);
|
|
|
13 |
}
|
|
|
14 |
.cm-s-material .CodeMirror-gutters {
|
|
|
15 |
background: #263238;
|
|
|
16 |
color: rgb(83,127,126);
|
|
|
17 |
border: none;
|
|
|
18 |
}
|
|
|
19 |
.cm-s-material .CodeMirror-guttermarker, .cm-s-material .CodeMirror-guttermarker-subtle, .cm-s-material .CodeMirror-linenumber { color: rgb(83,127,126); }
|
|
|
20 |
.cm-s-material .CodeMirror-cursor { border-left: 1px solid #f8f8f0; }
|
|
|
21 |
.cm-s-material div.CodeMirror-selected { background: rgba(255, 255, 255, 0.15); }
|
|
|
22 |
.cm-s-material.CodeMirror-focused div.CodeMirror-selected { background: rgba(255, 255, 255, 0.10); }
|
|
|
23 |
.cm-s-material .CodeMirror-line::selection, .cm-s-material .CodeMirror-line > span::selection, .cm-s-material .CodeMirror-line > span > span::selection { background: rgba(255, 255, 255, 0.10); }
|
|
|
24 |
.cm-s-material .CodeMirror-line::-moz-selection, .cm-s-material .CodeMirror-line > span::-moz-selection, .cm-s-material .CodeMirror-line > span > span::-moz-selection { background: rgba(255, 255, 255, 0.10); }
|
|
|
25 |
|
|
|
26 |
.cm-s-material .CodeMirror-activeline-background { background: rgba(0, 0, 0, 0); }
|
|
|
27 |
.cm-s-material .cm-keyword { color: rgba(199, 146, 234, 1); }
|
|
|
28 |
.cm-s-material .cm-operator { color: rgba(233, 237, 237, 1); }
|
|
|
29 |
.cm-s-material .cm-variable-2 { color: #80CBC4; }
|
|
|
30 |
.cm-s-material .cm-variable-3 { color: #82B1FF; }
|
|
|
31 |
.cm-s-material .cm-builtin { color: #DECB6B; }
|
|
|
32 |
.cm-s-material .cm-atom { color: #F77669; }
|
|
|
33 |
.cm-s-material .cm-number { color: #F77669; }
|
|
|
34 |
.cm-s-material .cm-def { color: rgba(233, 237, 237, 1); }
|
|
|
35 |
.cm-s-material .cm-error {
|
|
|
36 |
color: rgba(255, 255, 255, 1.0);
|
|
|
37 |
background-color: #EC5F67;
|
|
|
38 |
}
|
|
|
39 |
.cm-s-material .cm-string { color: #C3E88D; }
|
|
|
40 |
.cm-s-material .cm-string-2 { color: #80CBC4; }
|
|
|
41 |
.cm-s-material .cm-comment { color: #546E7A; }
|
|
|
42 |
.cm-s-material .cm-variable { color: #82B1FF; }
|
|
|
43 |
.cm-s-material .cm-tag { color: #80CBC4; }
|
|
|
44 |
.cm-s-material .cm-meta { color: #80CBC4; }
|
|
|
45 |
.cm-s-material .cm-attribute { color: #FFCB6B; }
|
|
|
46 |
.cm-s-material .cm-property { color: #80CBAE; }
|
|
|
47 |
.cm-s-material .cm-qualifier { color: #DECB6B; }
|
|
|
48 |
.cm-s-material .cm-variable-3 { color: #DECB6B; }
|
|
|
49 |
.cm-s-material .cm-tag { color: rgba(255, 83, 112, 1); }
|
|
|
50 |
.cm-s-material .CodeMirror-matchingbracket {
|
|
|
51 |
text-decoration: underline;
|
|
|
52 |
color: white !important;
|
|
|
53 |
}
|