forked from primocms/primo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodemirror.css
100 lines (97 loc) · 1.99 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
92
93
94
95
96
97
98
99
100
.cm-s-vscode-dark span.cm-meta {
color: #569cd6;
}
.cm-s-vscode-dark span.cm-number {
color: #b5cea8;
}
.cm-s-vscode-dark span.cm-keyword {
line-height: 1em;
font-weight: bold;
color: #569cd6;
}
.cm-s-vscode-dark span.cm-def {
color: #9cdcfe;
}
.cm-s-vscode-dark span.cm-variable {
color: #ddd6a3;
}
.cm-s-vscode-dark span.cm-variable-2 {
color: #9cdcfe;
}
.cm-s-vscode-dark span.cm-variable-3,
.cm-s-vscode-dark span.cm-type {
color: #a9b7c6;
}
.cm-s-vscode-dark span.cm-property {
color: #9cdcfe;
}
.cm-s-vscode-dark span.cm-operator {
color: #d4d4d4;
}
.cm-s-vscode-dark span.cm-string {
color: #ce9178;
}
.cm-s-vscode-dark span.cm-string-2 {
color: #6a8759;
}
.cm-s-vscode-dark span.cm-comment {
color: #6a9955;
}
.cm-s-vscode-dark span.cm-link {
color: #287bde;
}
.cm-s-vscode-dark span.cm-atom {
color: #569cd6;
}
.cm-s-vscode-dark span.cm-error {
color: #bc3f3c;
}
.cm-s-vscode-dark span.cm-tag {
color: #569cd6;
}
.cm-s-vscode-dark span.cm-attribute {
color: #9cdcfe;
}
.cm-s-vscode-dark span.cm-qualifier {
color: #d7ba7d;
}
.cm-s-vscode-dark span.cm-bracket {
color: #808080;
}
.cm-s-vscode-dark.CodeMirror {
background: #1e1e1e;
color: #e9e9e9;
}
.cm-s-vscode-dark .CodeMirror-cursor {
border-left: 1px solid #bebebe;
}
.CodeMirror-activeline-background {
background: #3a3a3a;
}
.cm-s-vscode-dark div.CodeMirror-selected {
background: #1e496c;
}
.cm-s-vscode-dark .CodeMirror-gutters {
background: #252526;
border-right: 1px solid grey;
color: #606366;
}
.cm-s-vscode-dark span.cm-builtin {
color: #a9b7c6;
}
.cm-s-vscode-dark {
font-family: Consolas, 'Courier New', monospace, serif;
}
.cm-s-vscode-dark .CodeMirror-matchingbracket {
background-color: #3b514d;
color: yellow !important;
}
.CodeMirror-hints.vscode-dark {
font-family: Consolas, 'Courier New', monospace;
color: #9c9e9e;
background-color: #3b3e3f !important;
}
.CodeMirror-hints.vscode-dark .CodeMirror-hint-active {
background-color: #494d4e !important;
color: #9c9e9e !important;
}