-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhighlight.css
More file actions
40 lines (40 loc) · 764 Bytes
/
highlight.css
File metadata and controls
40 lines (40 loc) · 764 Bytes
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
.CodeMirror {
font-family: "Liberation Mono", monospace;
font-size: 14px;
line-height: 1.5;
}
.cm-s-ipython span {
font-weight: normal !important;
font-style: normal !important;
}
.cm-s-ipython span.cm-keyword {
color: #d73a49;
}
.cm-s-ipython span.cm-comment {
color: #6a737d;
}
.cm-s-ipython span.cm-string {
color: #032f62;
}
.cm-s-ipython span.cm-operator {
color: #d73a49;
}
.cm-s-ipython span.cm-variable {
color: #24292e;
}
.cm-s-ipython span.cm-variable-2 {
color: #005cc5;
}
.cm-s-ipython span.cm-builtin {
color: #005cc5;
/*color: #e36209;*/
}
.cm-s-ipython span.cm-number {
color: #005cc5;
}
.cm-s-ipython span.cm-property {
color: #005cc5;
}
.cm-s-ipython span.cm-def {
color: #6f42c1;
}