-
Notifications
You must be signed in to change notification settings - Fork 0
/
codemirror.css
91 lines (91 loc) · 1.59 KB
/
codemirror.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
div.CodeMirror-selected {
background: #374140;
}
.CodeMirror-line::selection,
.CodeMirror-line > span::selection,
.CodeMirror-line > span > span::selection {
background: #65737e;
}
.CodeMirror-line::-moz-selection,
.CodeMirror-line > span::-moz-selection,
.CodeMirror-line > span > span::-moz-selection {
background: #65737e;
}
.CodeMirror-gutters {
background: #1c2022;
border-right: 0px;
}
.CodeMirror-guttermarker {
color: #ac4142;
}
.CodeMirror-guttermarker-subtle {
color: #505050;
}
.CodeMirror-linenumber {
color: #505050;
}
.CodeMirror-cursor {
border-left: 1px solid #b0b0b0;
}
span.cm-comment {
color: #626466;
}
span.cm-atom {
color: #aa759f;
}
span.cm-number {
color: #aa759f;
}
span.cm-property,
span.cm-attribute {
color: #aa759f;
}
span.cm-keyword {
color: #6caedd;
}
span.cm-string {
color: #99c794;
}
span.cm-variable {
color: rgb(255, 193, 112);
}
span.cm-variable-2 {
color: #6caedd;
}
span.cm-def {
color: #fac863;
}
span.cm-bracket {
color: #e0e0e0;
}
span.cm-tag {
color: #ec5f67;
}
span.cm-link {
color: #aa759f;
}
span.cm-error {
background: #ac4142;
color: #b0b0b0;
}
.CodeMirror-activeline-background {
background: #374140;
}
.CodeMirror-matchingbracket {
text-decoration: underline;
color: white !important;
}
span.CodeMirror-matchingtag {
background-color: inherit;
}
span.cm-tag.CodeMirror-matchingtag {
text-decoration: underline;
}
span.cm-tag.cm-bracket.CodeMirror-matchingtag {
text-decoration: none;
}
.cm-line-error.CodeMirror-linebackground {
-webkit-animation: hDBQOW 0.3s;
animation: hDBQOW 0.3s;
background-color: #561011;
}